Closed CarlosGDCJ closed 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
@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: 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: Change the x ticks so everything doesn't get clumped up together.
Tips:
sns.set()
myanmar_data = data[data["country"] == "Myanmar"]
Okay very much noted I will look into it again
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 calledopen_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:
The visualization notebook you create should be placed in the folder
src/weather/visualizations
.