Client Report - [Insert Project Title]

Course DS 250

Author

[STUDENT NAME]

Elevator pitch

paste your elevator pitch here

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")

Highlight the grand questions

GRAND QUESTION 1

COPY PASTE GRAND QUESTION 1 FROM THE PROJECT HERE

type your results and analysis here

Read and format data
# Include and execute your code here

include figures in chunks and discuss your findings in the figure.

plot example
# 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

table example
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])

display(mydat)
Not much of a table
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

GRAND QUESTION 2

COPY PASTE GRAND QUESTION FROM THE PROJECT HERE

type your results and analysis here

Read and format data
# Include and execute your code here

include figures in chunks and discuss your findings in the figure.

plot example
# Include and execute your code here
alt.Chart(dat.head(200))\
    .encode(x = "name", y = "AK")\
    .mark_bar()

My useless chart

table example
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])

display(mydat)
Not much of a table
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

GRAND QUESTION 3

COPY PASTE GRAND QUESTION FROM THE PROJECT HERE

type your results and analysis here

Read and format data
# Include and execute your code here

include figures in chunks and discuss your findings in the figure.

plot example
# Include and execute your code here
alt.Chart(dat.head(200))\
    .encode(x = "name", y = "AK")\
    .mark_bar()

My useless chart

table example
# Include and execute your code here
mydat = dat.head(1000)\
    .groupby('year')\
    .sum()\
    .reset_index()\
    .tail(10)\
    .filter(["year", "AK","AR"])

display(mydat)
Not much of a table
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

APPENDIX A (Additional Python Code)

#paste other your code from your python file (.py) here