Making a count plot with a DataFrame
In this exercise, we'll look at the responses to a survey sent out to young people. Our primary question here is: how many young people surveyed report being scared of spiders? Survey participants were asked to agree or disagree with the statement "I am afraid of spiders". Responses vary from 1 to 5, where 1 is "Strongly disagree" and 5 is "Strongly agree".
To get you started, the filepath to the csv file with the survey data has been assigned to the variable csv_filepath.
Note that because csv_filepath is a Python variable, you will not need to put quotation marks around it when you read the csv.
Questo esercizio fa parte del corso
Introduction to Data Visualization with Seaborn
Istruzioni dell'esercizio
- Import Matplotlib, pandas, and Seaborn using the standard names.
- Create a DataFrame named
dffrom the csv file located atcsv_filepath. - Use the
countplot()function with thex=anddata=arguments to create a count plot with the"Spiders"column values on the x-axis. - Display the plot.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Import Matplotlib, pandas, and Seaborn
# Create a DataFrame from csv file
# Create a count plot with "Spiders" on the x-axis
# Display the plot