Skip to content

Latest commit

Β 

History

History
61 lines (49 loc) Β· 1.62 KB

File metadata and controls

61 lines (49 loc) Β· 1.62 KB

Prodigy InfoTech – Data Science Internship

Task 1: Population Data Visualization

πŸ“Œ Objective

The objective of this task is to visualize the distribution of a categorical or continuous variable using a bar chart or histogram.
In this task, a bar chart is used to visualize the population distribution across the top 10 most populous countries in 2022.


πŸ“Š Dataset

  • Source: World Bank Population Data
  • File: API_SP.POP.TOTL_DS2_en_csv_v2_38144.csv
  • The dataset contains population data for countries across multiple years.
  • Aggregated regions and income groups were removed to ensure that only real country-level data was used.

πŸ› οΈ Tools & Technologies Used

  • Python
  • Pandas
  • Matplotlib
  • Google Colab
  • GitHub

πŸ“ˆ Visualization

  • Type: Bar Chart
  • Categorical Variable: Country
  • Continuous Variable: Population
  • Year Analyzed: 2022
  • The bar chart clearly compares the population sizes of the top 10 most populous countries.

πŸ“‚ Project Structure

PRODIGY_DS_01/ β”‚ β”œβ”€β”€ data/ β”‚ └── API_SP.POP.TOTL_DS2_en_csv_v2_38144.csv β”‚ β”œβ”€β”€ notebook/ β”‚ └── task1_visualization.ipynb β”‚ β”œβ”€β”€ output/ β”‚ └── population_distribution_top10_2022.png β”‚ β”œβ”€β”€ README.md └── requirements.txt

βœ… Conclusion

This task successfully demonstrates the use of data visualization techniques to analyze population distribution. The bar chart provides clear insights into how population is distributed among the most populous countries, fulfilling the requirements of Task 1 of the Data Science Internship.