Assignment: Evaluating Data from a FormΒΆ
A client has been testing a small form to gather some basic data about their client-base. They have brought their findings to you to validate the data they have gathered. You can open the index.html page in a browser to take a look at the form.
You have been provided a dataset of csv records that contain entries from the form as well as some basic visualizations.The client pointed out that some of the visualizations look incorrect but theyβre unsure about how to resolve them. You can explore it in the assignment notebook.
InstructionsΒΆ
Use the techniques in this lesson to make recommendations about the form so it captures accurate and consistent information.
!pip install pandas
!pip install matplotlib
import pandas as pd
import matplotlib.pyplot as plt
#Loading the dataset
path = '../../data/form.csv'
form_df = pd.read_csv(path)
print(form_df)
form_df['state'].value_counts().plot(kind='bar');
plt.show()
form_df['birth_month'].value_counts().plot(kind='bar');
plt.show()