├── AccessStormEventData.mlx ├── CompareLocalWeather.mlx ├── CreateWebApplication.mlx ├── EventDamageCosts.mlapp ├── Helpers ├── GetStormEventData.mlx ├── PreprocessAllData.mlx ├── PreprocessByTime.mlx ├── PreprocessCategories.mlx ├── PreprocessStrings.mlx ├── ReferencingDataInMATLAB.mlx ├── SelectRearrangeData.mlx ├── StartupScript.m ├── bigFigure.mlx ├── importfile.m └── predictStormDamage.m ├── IntroToMATLAB.mlx ├── MLModel.mat ├── Main_WeatherEvents.mlx ├── PredictDamageCosts.mlx ├── PreprocessData.mlx ├── PreprocessedData ├── prepEvents.mat ├── preprocessedDataAll.mat └── rawData.mat ├── README.md ├── Tests_WeatherEvents.m ├── WeatherEvents.prj ├── resources └── project │ ├── Project.xml │ ├── ProjectData.type.Info.xml │ ├── Root.type.Categories │ ├── FileClassCategory.type.Category.xml │ └── FileClassCategory.type.Category │ │ ├── artifact.type.Label.xml │ │ ├── convenience.type.Label.xml │ │ ├── derived.type.Label.xml │ │ ├── design.type.Label.xml │ │ ├── none.type.Label.xml │ │ ├── other.type.Label.xml │ │ └── test.type.Label.xml │ ├── Root.type.EntryPoints │ ├── 3784c721-62f8-484e-898d-494e17861093.type.EntryPoint.xml │ ├── 432b711b-b49c-4d45-a523-39608beb0edf.type.EntryPoint.xml │ ├── 6232e082-9ce6-4f8e-8e62-9aa0c1673333.type.EntryPoint.xml │ └── 7e397c62-e26f-425f-9a36-02b518800454.type.EntryPoint.xml │ ├── Root.type.Files │ ├── AccessStormEventData.mlx.type.File.xml │ ├── CompareLocalWeather.mlx.type.File.xml │ ├── CreateWebApplication.mlx.type.File.xml │ ├── EventDamageCosts.mlapp.type.File.xml │ ├── Helpers.type.File.xml │ ├── Helpers.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── GetStormEventData.mlx.type.File.xml │ │ ├── PreprocessAllData.mlx.type.File.xml │ │ ├── PreprocessByTime.mlx.type.File.xml │ │ ├── PreprocessCategories.mlx.type.File.xml │ │ ├── PreprocessStrings.mlx.type.File.xml │ │ ├── ReferencingDataInMATLAB.mlx.type.File.xml │ │ ├── SelectRearrangeData.mlx.type.File.xml │ │ ├── StartupScript.m.type.File.xml │ │ ├── bigFigure.mlx.type.File.xml │ │ ├── importfile.m.type.File.xml │ │ └── predictStormDamage.m.type.File.xml │ ├── IntroToMATLAB.mlx.type.File.xml │ ├── MLModel.mat.type.File.xml │ ├── Main_WeatherEvents.mlx.type.File.xml │ ├── PredictDamageCosts.mlx.type.File.xml │ ├── PreprocessData.mlx.type.File.xml │ ├── PreprocessedData.type.File.xml │ ├── PreprocessedData.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── prepEvents.mat.type.File.xml │ │ ├── preprocessedDataAll.mat.type.File.xml │ │ └── rawData.mat.type.File.xml │ ├── README.md.type.File.xml │ ├── Tests_WeatherEvents.m.type.File.xml │ └── subset2020.csv.type.File.xml │ ├── Root.type.ProjectPath │ ├── b472826a-7535-4efa-a39d-c566c2428355.type.Reference.xml │ ├── f6dd99ee-98b3-48a6-96e6-0ed0f95401e5.type.Reference.xml │ └── fc5a8735-89a8-4a19-a7b9-19bc6f141ec5.type.Reference.xml │ └── uuid-0f0b8aba-3284-4fd6-ad00-335890161a8f.xml └── subset2020.csv /AccessStormEventData.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/AccessStormEventData.mlx -------------------------------------------------------------------------------- /CompareLocalWeather.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/CompareLocalWeather.mlx -------------------------------------------------------------------------------- /CreateWebApplication.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/CreateWebApplication.mlx -------------------------------------------------------------------------------- /EventDamageCosts.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/EventDamageCosts.mlapp -------------------------------------------------------------------------------- /Helpers/GetStormEventData.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/GetStormEventData.mlx -------------------------------------------------------------------------------- /Helpers/PreprocessAllData.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/PreprocessAllData.mlx -------------------------------------------------------------------------------- /Helpers/PreprocessByTime.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/PreprocessByTime.mlx -------------------------------------------------------------------------------- /Helpers/PreprocessCategories.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/PreprocessCategories.mlx -------------------------------------------------------------------------------- /Helpers/PreprocessStrings.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/PreprocessStrings.mlx -------------------------------------------------------------------------------- /Helpers/ReferencingDataInMATLAB.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/ReferencingDataInMATLAB.mlx -------------------------------------------------------------------------------- /Helpers/SelectRearrangeData.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/SelectRearrangeData.mlx -------------------------------------------------------------------------------- /Helpers/StartupScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/StartupScript.m -------------------------------------------------------------------------------- /Helpers/bigFigure.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/bigFigure.mlx -------------------------------------------------------------------------------- /Helpers/importfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/importfile.m -------------------------------------------------------------------------------- /Helpers/predictStormDamage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Helpers/predictStormDamage.m -------------------------------------------------------------------------------- /IntroToMATLAB.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/IntroToMATLAB.mlx -------------------------------------------------------------------------------- /MLModel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/MLModel.mat -------------------------------------------------------------------------------- /Main_WeatherEvents.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Main_WeatherEvents.mlx -------------------------------------------------------------------------------- /PredictDamageCosts.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/PredictDamageCosts.mlx -------------------------------------------------------------------------------- /PreprocessData.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/PreprocessData.mlx -------------------------------------------------------------------------------- /PreprocessedData/prepEvents.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/PreprocessedData/prepEvents.mat -------------------------------------------------------------------------------- /PreprocessedData/preprocessedDataAll.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/PreprocessedData/preprocessedDataAll.mat -------------------------------------------------------------------------------- /PreprocessedData/rawData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/PreprocessedData/rawData.mat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/README.md -------------------------------------------------------------------------------- /Tests_WeatherEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/Tests_WeatherEvents.m -------------------------------------------------------------------------------- /WeatherEvents.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/WeatherEvents.prj -------------------------------------------------------------------------------- /resources/project/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/ProjectData.type.Info.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Categories/FileClassCategory.type.Category.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/3784c721-62f8-484e-898d-494e17861093.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.EntryPoints/3784c721-62f8-484e-898d-494e17861093.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/432b711b-b49c-4d45-a523-39608beb0edf.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.EntryPoints/432b711b-b49c-4d45-a523-39608beb0edf.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/6232e082-9ce6-4f8e-8e62-9aa0c1673333.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.EntryPoints/6232e082-9ce6-4f8e-8e62-9aa0c1673333.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/7e397c62-e26f-425f-9a36-02b518800454.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.EntryPoints/7e397c62-e26f-425f-9a36-02b518800454.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/AccessStormEventData.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/AccessStormEventData.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/CompareLocalWeather.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/CompareLocalWeather.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/CreateWebApplication.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/CreateWebApplication.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/EventDamageCosts.mlapp.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/EventDamageCosts.mlapp.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/GetStormEventData.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/GetStormEventData.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/PreprocessAllData.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/PreprocessAllData.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/PreprocessByTime.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/PreprocessByTime.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/PreprocessCategories.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/PreprocessCategories.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/PreprocessStrings.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/PreprocessStrings.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/ReferencingDataInMATLAB.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/ReferencingDataInMATLAB.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/SelectRearrangeData.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/SelectRearrangeData.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/StartupScript.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/StartupScript.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/bigFigure.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/bigFigure.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/importfile.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/importfile.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Helpers.type.File/predictStormDamage.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Helpers.type.File/predictStormDamage.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IntroToMATLAB.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/IntroToMATLAB.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/MLModel.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/MLModel.mat.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Main_WeatherEvents.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Main_WeatherEvents.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PredictDamageCosts.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/PredictDamageCosts.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessData.mlx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/PreprocessData.mlx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessedData.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessedData.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessedData.type.File/prepEvents.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/PreprocessedData.type.File/prepEvents.mat.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessedData.type.File/preprocessedDataAll.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/PreprocessedData.type.File/preprocessedDataAll.mat.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/PreprocessedData.type.File/rawData.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/PreprocessedData.type.File/rawData.mat.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/README.md.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/Tests_WeatherEvents.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/resources/project/Root.type.Files/Tests_WeatherEvents.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/subset2020.csv.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.ProjectPath/b472826a-7535-4efa-a39d-c566c2428355.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.ProjectPath/f6dd99ee-98b3-48a6-96e6-0ed0f95401e5.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.ProjectPath/fc5a8735-89a8-4a19-a7b9-19bc6f141ec5.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/uuid-0f0b8aba-3284-4fd6-ad00-335890161a8f.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /subset2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/data-science-predict-weather-events/HEAD/subset2020.csv --------------------------------------------------------------------------------