This project reads survey data from a CSV file and visualizes the most common programming languages used by respondents. The data processing is done using the Pandas library, and the Counter from the collections module is used to count the occurrences of each language. The results are visualized with a horizontal bar chart using Matplotlib.
Key Features:
- Uses Pandas for data manipulation and reading CSV files.
- Leverages Counter from the collections module to count programming language occurrences.
- Visualizes the top 10 most common programming languages in a clean Matplotlib bar chart.