Publications by Molly ‘Fish’ Fischer

Multiple Regression HW

08.03.2023

# Load packages. library(moderndive) library(Stat2Data) library(plotly) ## Loading required package: ggplot2 ## ## Attaching package: 'plotly' ## The following object is masked from 'package:ggplot2': ## ## last_plot ## The following object is masked from 'package:stats': ## ## filter ## The following object is masked from 'package:gra...

2794 sym R (4546 sym/27 pcs) 4 img

Classwork_Data_Wrangling

07.10.2021

General Coding Keyboard Shortcut Tips Run code in RStudio: command + enter Jump between apps: command + tab Selecting more than one file: click first file, hold shift, click last file Delete a file: command + delete for ggplot2, %>% for dplyr # load packages library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked fr...

914 sym R (7142 sym/25 pcs)

Trend Lines

04.10.2021

library(ggplot2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(gapminder) # 1. Recreate plot from PS02 but with no color: gapminder_2007 <- gapminder %>...

22 sym R (1784 sym/13 pcs) 4 img

Mini pROJECT 1

29.09.2021

# Load all packages here library(ggplot2) library(dplyr) library(lubridate) library(ical) Setup Administrative info: Section number: 2 Group number: 16 My name: Molly Fischer My academic email: mafischer@smith.edu My partner’s name: Betty Pu My partner’s academic email: bpu@smith.edu My partner’s question about how they use their time: ...

654 sym R (678 sym/6 pcs)

Color Theory

24.09.2021

library(ggplot2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(nycflights13) library(gapminder) # 1. Recreate plot from PS02, but change default "color"...

18 sym R (1468 sym/9 pcs) 4 img

Classwork

17.09.2021

library(nycflights13) library(ggplot2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union Scatterplot alaska_flights <- flights %>% filter(carrier == "AS") ggplo...

1043 sym R (2914 sym/34 pcs) 13 img

My First R Markdown File

13.09.2021

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within t...

593 sym R (262 sym/2 pcs) 1 img

Classwork

24.09.2021

library(nycflights13) library(ggplot2) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union Scatterplot alaska_flights <- flights %>% filter(carrier == "AS") ggplo...

1591 sym R (4256 sym/35 pcs) 16 img