To start please visit: https://github.com/BEES-Tidy-Tuesdays/home
You will find a link to this collaborative document called "Week 1 notes".
This is a collaborative markdown document: feel free to add, change, and improve it. We will upload the final document to github after this Tidy Tuesday session and use parts of it as a template for future sessions.
If something is unclear or doesn't make sense, fix it, or make a comment.
Please access the data here. Download and extract to a specified folder. We encourage you to start working by creating a new Rproject, and use best practices for file management.
To clone the data set from github using git in RStudio:
N.B. You need git installed on your computer, you can download it here:
The data is broken down into a few files:
File | Description |
---|---|
all-measles-rates.csv | Data for each individual school |
state-overview.csv | More generalized data by state counties or state school districts |
individual-states/[STATE].csv | Same data as all-measles-rates, but seperated by state |
Attribute | Description | Optional? |
---|---|---|
index | ||
state | School's state | |
county | School's county | y |
district | School's district | y |
name | School name | |
type | Whether a school is public, private, charter | y |
enroll | Enrollment* | y |
mmr | School's Measles, Mumps, and Rubella (MMR) vaccination rate | y |
overall | School's overall vaccination rate | y |
xmed | Percentage of students exempted from vaccination for medical reasons | y |
xper | Percentage of students exempted from vaccination for personal reasons | y |
xrel | Percentage of students exempted from vaccination for religious reasons | y |
lat | School latitude | (only in individual state files) |
lng | School longitude | (only in individual state files) |
state-overviews.csv
, and the all-measles-rate.csv
don't have the geographical location information.Talk to the people nearest you and brainstorm some questions we can ask with this dataset. What could this data tell us? What are some interesting questions we could ask? How do you plan to visualise it?
library(tidyverse)
ind_stats <-
list.files(path = "individual-states/", # locate the folder
pattern = "*.csv", # identify the type of files we want to read
full.names = T) %>% # tell R to give us the whole directory
map_df(~read_csv(., col_types = cols(.default = "c")))
View(ind_stats)
ind_stats %>%
sample_frac(0.2) %>% # random sample just 20% of the data
naniar::vis_miss() # map the missing data
ggplot(data_rates, aes(year, mmr))+
geom_point()
Hmm, doesn't seem to show much. Only 3 time points.
ggplot(state_overviews, aes(fct_reorder(state, mmr), mmr)) +
geom_boxplot() +
theme_bw() +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) # rotate x axis label
library(ggbeeswarm)
ind_stats %>%
drop_na(type,mmr) %>%
mutate(mmr = as.numeric(mmr)) %>%
ggplot(., aes(x = fct_reorder(type, (100-mmr)), y = (100-mmr))) +
geom_quasirandom() +
theme_bw() +
scale_y_log10()+
xlab("School Type")+
ylab("Vaccination Rate")
ind_stats <-
list.files(path = "individual-states/",
pattern = "*.csv", full.names = T) %>%
map_df(~read_csv(., col_types = cols(.default = "c"))) %>%
mutate(mmr=as.integer(mmr))
A. Use theme() https://ggplot2.tidyverse.org/reference/theme.html
(N.B. this document is public, so don't include sensitive or private information)
Example columns I have: Species, Current.Temp, Future.Temp, Current.Rain, Future.Rain, Current.Risk, Future.Risk
Want something like:
ggplot(data, (x = Current.Temp, y = Current.Temp, colour = Current.Risk)) +
geom_point()
transitioning to:
ggplot(data, (x = Future.Temp, y = Future.Temp, colour = Future.Risk)) +
geom_point()
A.
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing