OmdenaAI / myanmar-weather-forecasting

This project utilizes machine learning to predict extreme weather events and analyze traffic congestion in Southeast Asia. The repository includes data analysis, model training, and visualization scripts to forecast weather conditions for the next 30 days and enhance transportation efficiency.
GNU General Public License v3.0
11 stars 1 forks source link

Do EDA on open-meteo's weather data #1 #30

Closed CarlosGDCJ closed 1 year ago

CarlosGDCJ commented 1 year ago

Try to get a better sense of the data by creating a notebook with visualizations. Open-meteo data is located in the folder data/weather in a file called open_meteo.csv. It contains historical weather data since 2010 from 10 cities all around Myanmar.

You can check the meaning of all variables in the picture below: image

The visualization notebook you create should be placed in the folder src/weather/visualizations.

FayElhassan commented 1 year ago

Here what I was able to do so far please let me know if this is enough or needs something more https://colab.research.google.com/drive/1MvmgtHBHKQwjArFtGKjoXa64eVmbrny-?usp=sharing

CarlosGDCJ commented 1 year ago

@FayElhassan You came up with some nice visualizations, but you didn't write the key insights you gained from the graphs you created. I liked that you put titles and labeled the axis in your plots with relevant names and the unit of measure; but the goal of EDA is to discover characteristics of the data that could be helpful in solving the problem. Writing your findings is extremely important.

Some plots are confusing(I don't know what you're trying to do with them). For example, this one: image This plot clearly has a problem: The same color is attributed to multiple stuff and the legend is so big it goes off-screen.

You had other formatting problems like this plot: image Change the x ticks so everything doesn't get clumped up together.

Tips:

FayElhassan commented 1 year ago

Okay very much noted I will look into it again