Only one: The first course objective in the syllabus: Have students engage in the data/science research pipeline in as faithful a manner as possible while maintaining a level suitable for novices:
In the spirit of reproducible research, here is a link to all source code/data for these projects.
Group Members | Title |
---|---|
Sophia Konanc and Maddie Maloney | Where Should MiddKids Ski This J-Term? |
Luisangel Osorio and Wengel Kifle | Drug Use Within Age Groups |
Sarah Koenigsberg, Caroline Cating, and Rebecca Conover | Quantifying Middlebury’s Collective Consciousness |
Zach Levitt, David Valentin, and Joe Moscatelli | Who Sits at the Top of NESCAC Stack? (interactive; takes 30s to load) |
Sierra Moen, Tina Chen, and Jared Whitman | Sexism on the Silver Screen: Exploring Film’s Gender Divide |
Sam O’Keefe and Ian Strohbehn | Marijuana Retail and Production Dispersal in Colorado |
Teddy Henderson and Will Perry | Unemployment and Migration in the United States |
Stefan Asamoah and Steven Lillis | Will Your Major Field Change Your Prospects for Employment? |
Jack Kagan and Joccelyn Alvarado | Looking for Mental Health Care? West is Best |
Annie Glassie and Julia Keith | The Systematic Gender Gap in STEM Fields: Why Should We Care? |
In the spirit of reproducible research, here is a link to all source code/data for these projects.
Group Members | Title |
---|---|
Ry Storey-Fisher, Elana Feldman, and Lisa Schroer | An Analysis of Crime in Chicago |
Kelsie Hoppes and Parker Peltzer | Watch Out: Patterns in Drunk Driving Fatalities |
Joe O’Brien, Conor Himstead, Rebecca Lightman | Foodborne Illness Trends in America: To Fear or not to Fear? |
Maya Gomez, Caroline Colan, & Julian Joseph | Testing GREEN: Comparing the Enviromental Impact of New York City and Vermont |
Jacob Volz, Zeb Millslagle | Factors of Success at the Olympic Games |
Claire White-Dzuro, Clare Robinson, and Dylan Mortimer | Where Should MiddKidds Live After Graduation? |
Thea Bean, Griffin Hall, & Jay Silverstein | What makes an art museum? |
Daniel Turpin and Naing Thant Phyo | Opioid Use in the US |
.R
script that loads the data so you can View()
them.go/ryan/
data.world
is a new repository of data from various disciplines.fivethirtyeight
R package. See data set list. Not all data sets in this package are allowable, so be sure to consult with me as soon as you can.Your group proposal (to be submitted in print and electronically on Slack) should contain the following:
All done!
Electronic-Only Final Project Submission:
albert.ys.kim@gmail.com
. You can share this with me before the project is due.Final_Project.Rmd
file that completely reproduces your analysis i.e. I should have to press Knit only once to recreate the entire HTML page.Hint: The kable()
function from the knitr
package is useful for outputting tables in a clean format. For example:
library(knitr)
example <- data_frame(
x = c("A", "B", "C"),
y = c(1, 2, 3),
z = c(2, 3, 4)
)
example %>%
kable(digits=3)
x | y | z |
---|---|---|
A | 1 | 2 |
B | 2 | 3 |
C | 3 | 4 |
instead of raw code output
example
## # A tibble: 3 × 3
## x y z
## <chr> <dbl> <dbl>
## 1 A 1 2
## 2 B 2 3
## 3 C 3 4