Beta
Table of Contents
The outline of your notebook will show up here. You can include headings in any text cell by starting a line with #
, ##
, ###
, etc., depending on the desired title hierarchy.
#Data Validation
##Describe the validation tasks you completed and what you found. Have you made any changes to the data to enable further analysis?
#The dataset orginally contained 200 rows and 9 columns. There were 2 rows which contained blanks under the review column, therefore were removed in order to be kept in accordance with the given criteria. This dropped the total rows to 198. I filled all blanks within the "Dine in option" and "Takeout option" with "FALSE". All other data was with accordance with the given criteria.
# - There were
Hidden output
import pandas as pd
from matplotlib import pyplot as plt
df = pd.read_csv('coffee.csv')