Tutorial : 3 - Visualize data using Matplotlib and Seaborn library.
- Due Jan 7, 2024 by 11:59pm
- Points 10
- Submitting a file upload
- File Types doc, pdf, and ipynb
- Available Dec 27, 2022 at 12pm - Mar 31, 2024 at 11:59pm over 1 year
Tutorial : 3 - Visualize data using Matplotlib and Seaborn library.
- Import numpy, pandas, seaborn and matplotlib library.
- Download data set from kaggle : Flight Price Prediction (kaggle.com)
- Read dataset.
- Findout columns.
- Rename columns Unnamed: 0' to 'id'.
- Is there any null values in dataset?
- Find categories of ‘source_city’. (categorial data)
- Find categories of ‘class’. (categorial data)
- Draw Count plot for ‘source_city’.
- Draw Count plot for ‘class’.
- Draw pie plot for ‘source_city’.
- Draw Donut plot for ‘source_city’.
- Draw Histogram plot for ‘price’.
- Draw Distplot for ‘price’**************************************************