Visualizing Chipotle's Data¶
This time we are going to pull data directly from the internet. Special thanks to: https://github.com/justmarkham for sharing the dataset and materials.
Step 1. Import the necessary libraries¶
In [1]:
import pandas as pd
import matplotlib.pyplot as plt
from collections import Counter
# set this so the graphs open internally
%matplotlib inline
Step 3. Assign it to a variable called chipo.¶
In [ ]:
Step 4. See the first 10 entries¶
In [ ]:
Step 5. Create a histogram of the top 5 items bought¶
In [ ]:
In [ ]:
Step 7. BONUS: Create a question and a graph to answer your own question.¶
In [ ]: