Read and format project data
# Include and execute your code here
dat = pd.read_csv("https://github.com/byuidatascience/data4names/raw/master/data-raw/names_year/names_year.csv")paste your elevator pitch here
# Include and execute your code here
dat = pd.read_csv("https://github.com/byuidatascience/data4names/raw/master/data-raw/names_year/names_year.csv")Highlight the grand questions
COPY PASTE GRAND QUESTION 1 FROM THE PROJECT HERE
type your results and analysis here
# Include and execute your code hereinclude figures in chunks and discuss your findings in the figure.
# Include and execute your code here
alt.Chart(dat.head(200))\
    .encode(x="name", y="AK")\
    .mark_bar()\
    .properties(
        width=800,
        height=300
    )My useless chart
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])
display(mydat)| year | AK | AR | |
|---|---|---|---|
| 96 | 2006 | 21.0 | 183.0 | 
| 97 | 2007 | 28.0 | 153.0 | 
| 98 | 2008 | 36.0 | 212.0 | 
| 99 | 2009 | 34.0 | 179.0 | 
| 100 | 2010 | 22.0 | 196.0 | 
| 101 | 2011 | 41.0 | 148.0 | 
| 102 | 2012 | 28.0 | 140.0 | 
| 103 | 2013 | 26.0 | 134.0 | 
| 104 | 2014 | 20.0 | 114.0 | 
| 105 | 2015 | 28.0 | 121.0 | 
COPY PASTE GRAND QUESTION FROM THE PROJECT HERE
type your results and analysis here
# Include and execute your code hereinclude figures in chunks and discuss your findings in the figure.
# Include and execute your code here
alt.Chart(dat.head(200))\
    .encode(x = "name", y = "AK")\
    .mark_bar()My useless chart
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])
display(mydat)| year | AK | AR | |
|---|---|---|---|
| 96 | 2006 | 21.0 | 183.0 | 
| 97 | 2007 | 28.0 | 153.0 | 
| 98 | 2008 | 36.0 | 212.0 | 
| 99 | 2009 | 34.0 | 179.0 | 
| 100 | 2010 | 22.0 | 196.0 | 
| 101 | 2011 | 41.0 | 148.0 | 
| 102 | 2012 | 28.0 | 140.0 | 
| 103 | 2013 | 26.0 | 134.0 | 
| 104 | 2014 | 20.0 | 114.0 | 
| 105 | 2015 | 28.0 | 121.0 | 
COPY PASTE GRAND QUESTION FROM THE PROJECT HERE
type your results and analysis here
# Include and execute your code hereinclude figures in chunks and discuss your findings in the figure.
# Include and execute your code here
alt.Chart(dat.head(200))\
    .encode(x = "name", y = "AK")\
    .mark_bar()My useless chart
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])
display(mydat)| year | AK | AR | |
|---|---|---|---|
| 96 | 2006 | 21.0 | 183.0 | 
| 97 | 2007 | 28.0 | 153.0 | 
| 98 | 2008 | 36.0 | 212.0 | 
| 99 | 2009 | 34.0 | 179.0 | 
| 100 | 2010 | 22.0 | 196.0 | 
| 101 | 2011 | 41.0 | 148.0 | 
| 102 | 2012 | 28.0 | 140.0 | 
| 103 | 2013 | 26.0 | 134.0 | 
| 104 | 2014 | 20.0 | 114.0 | 
| 105 | 2015 | 28.0 | 121.0 | 
#paste other your code from your python file (.py) here