Publications by Molly ‘Fish’ Fischer
Multiple Regression HW
# 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
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
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
# 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
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
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
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
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