-
Notifications
You must be signed in to change notification settings - Fork 0
/
TidyTuesdayNotebook.Rmd
34 lines (25 loc) · 1.28 KB
/
TidyTuesdayNotebook.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: "Tidy Tuesday Noebook"
output:
html_document:
df_print: paged
---
https://github.com/rfordatascience/tidytuesday/blob/master/README.md
# September 22, 2020
# September 15, 2020
## Government spending on kids
This dataset provides a comprehensive accounting of public spending on children from 1997 through 2016. It draws on the US Census Bureau’s Annual Survey of State and Local Government Finances, as well as several federal and other noncensus sources, to capture state-by-state spending on education, income security, health, and other areas.
Information on each of the variables here: https://jrosen48.github.io/tidykids/articles/tidykids-codebook.html
## New to-me things I tried
* viridis color package, found here: https://cran.r-project.org/web/packages/viridis/vignettes/intro-to-viridis.html
* making a hex map of the US, with great tutorial here: https://www.r-graph-gallery.com/328-hexbin-map-of-the-usa.html
* doing an animation with gganimate with help from here: https://gganimate.com/articles/gganimate.html
```{r, message = FALSE, warning= FALSE}
source("20200914_EducationCosts/20200914_GovSpendingOnKids.R")
p
```
# Septembver 8, 2020
Looked at the data from the TV show Friends
```{r, message = FALSE, warning= FALSE}
source("200908_Friends/200908_Friends.R")
```