knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)
## -- Attaching packages -------------------------------------------------------------------------------- tidyverse 1.2.1 --
## v ggplot2 2.2.1 v purrr 0.2.4
## v tibble 1.4.1 v dplyr 0.7.4
## v tidyr 0.7.2 v stringr 1.2.0
## v readr 1.1.1 v forcats 0.2.0
## -- Conflicts ----------------------------------------------------------------------------------- tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
library(dplyr)
Fac_Writing <- read.csv("C:/LocalFiles/Documents/Freshman TSU/STAT-220/HW 2/FacWriting.csv")
write.csv(Fac_Writing, file="FacWriting")
FacWriting <- Fac_Writing
View(Fac_Writing)
The following link explains section numbering:
https://rmarkdown.rstudio.com/html_document_format.html#section_numbering
This command adds section numbering to headers.
TTFac <- Fac_Writing
View(TTFac)
TTFac <- Fac_Writing
TTFac <- filter(Fac_Writing, Title == "TT")
TTFac2 <- select(TTFac, c(19,20,21,22,32,33,34,35,37,38,39,40,41))
View(TTFac2)
ggplot(data = TTFac2) +
geom_jitter(mapping = aes(x = WACTimprove, y = JINSImprove, color=School))
TTFac2 <- mutate(TTFac, WACTtoJINS=as.numeric(WACTimprove)/as.numeric(JINSImprove))
View(TTFac2)
ggplot(data = TTFac2) +
geom_boxplot(mapping = aes(x=School, y=WACTtoJINS))