Publications by Destinee Redfearn

CS583_DR_Classwork2-27

28.02.2024

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...

638 sym R (36560 sym/39 pcs) 4 img

CS583_DestineeRedfearn_Project1

27.02.2024

#6.2 Load Data From CSV File # define the filename filename <- "C:/Users/dnred/Downloads/Iris.csv" # load the CSV file from the local directory dataset <- read.csv(filename, header=FALSE) # preview the first 5 rows head(dataset) ## V1 V2 V3 V4 V5 V6 ## 1 Id SepalLengthCm SepalWidthCm Petal...

94 sym R (22838 sym/83 pcs) 9 img

Seeds Dataset

27.02.2024

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...

620 sym R (82846 sym/22 pcs) 3 img

Graphics by Destinee Redfearn 2/13

14.02.2024

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...

700 sym R (9958 sym/76 pcs) 29 img

Graphics by Destinee Redfearn

07.02.2024

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...

632 sym R (5452 sym/25 pcs) 12 img

Data Frames by Destinee Redfearn

07.02.2024

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...

650 sym R (4962 sym/54 pcs) 1 img

How to use Rmarkdown

31.01.2024

# quick summary and plot library(ggplot2) summary(cars) ## speed dist ## Min. : 4.0 Min. : 2.00 ## 1st Qu.:12.0 1st Qu.: 26.00 ## Median :15.0 Median : 36.00 ## Mean :15.4 Mean : 42.98 ## 3rd Qu.:19.0 3rd Qu.: 56.00 ## Max. :25.0 Max. :120.00 qplot(speed, dist, data=cars) + geom...

603 sym R (822 sym/6 pcs) 2 img