https://github.com/js-konda/naturaldisasterseda
The project repository for the Exploratory Data analysis of natural disasters done as part of ECE143 course at UCSD
https://github.com/js-konda/naturaldisasterseda
data-science data-visualization pandas python visualization
Last synced: about 2 months ago
JSON representation
The project repository for the Exploratory Data analysis of natural disasters done as part of ECE143 course at UCSD
- Host: GitHub
- URL: https://github.com/js-konda/naturaldisasterseda
- Owner: js-konda
- Created: 2021-11-04T23:03:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-04T08:35:45.000Z (over 4 years ago)
- Last Synced: 2023-11-20T23:23:13.971Z (over 2 years ago)
- Topics: data-science, data-visualization, pandas, python, visualization
- Language: Jupyter Notebook
- Homepage:
- Size: 17.8 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Exploratory Analysis of Natural Disasters

Team Members
By Jaya Konda, Pujika Kumar, Gaopo Huang, Jiawei Zheng, Andy Liu
Problem
Can natural disasters increase public awareness of climate change?
Is there any trend in natural disaster incidents and casualties from natural disasters over the years?
How impactful is the media interest of climate change over the natural disaster incidents?
Motivation
Our primary motivation was to analyse the natural disasters to find if their occurrence or the deaths caused by them have stirred up any awareness about the climate change. Along the way, we have tried to draw important insights about the trends of natural disasters, and their impact on human lives.
Dataset
Natural Disaster incident over years ( https://www.kaggle.com/brsdincer/all-natural-disasters-19002021-eosdis). This dataset contains 2 csv files, with each containing 45 columns having information about year, disaster type, country, etc.
Media (specifically TV news) interest in climate change over years: (https://blog.gdeltproject.org/a-new-dataset-for-exploring-climate-change-narratives-on-television-news-2009-2020/). This data contains 418 csv files, with each containing information about TV news reported on these natural disasters.
Capital over gdp. This dataset contains columns and 19879 rows
(https://data.worldbank.org/indicator/NY.GDP.PCAP.PP.CD)
File Structure
.
├── Code # .py files that contains our code to generate the graph
│ ├──__init__.py
│ ├──bubble.py
│ ├──major_disaster_analysis.py
│ ├──natural_disaster_climate_news_analysis.py
│ ├──pies.py
│ ├──stacked_decadal.py
│ └──stacked_plots.py
├── dataset # all the datasets we used
│ ├── TelevisionNews
| | └──*.CSV
│ ├──1900-2021_DISASTERS.xlsx - emdat data.csv
│ ├──1970-2021_DISASTERS.xlsx - emdat data.csv
│ └──gdp_per_capita.csv
├── image # the graph we generated
│ └── bubble.png
│
├── Final presentation PPT.pdf # pdf file for our presentation
├── Final_project_code.ipynb # notebook to display all our visualizations
├── readme.md # readme file
└──.gitignore
Required Packages
* pandas
```
pip install pandas
```
* numpy
```
pip install numpy
```
* matplotlib
```
pip install matplotlib
```
* geopandas
```
pip install geopandas
```
* seaborn
```
pip install seaborn
```
Visualization
[Visualization Notebook](https://github.com/js-konda/ece-143/blob/main/Final_project_code.ipynb)