Publications by Hannah Robinson
Day2Titanic.qmd
Day2TitanicDataset Background The sinking of the Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the widely considered “unsinkable” RMS Titanic sank after colliding with an iceberg. Unfortunately, there weren’t enough lifeboats for everyone onboard, resulting in the death of 1502 out of...
944 sym 1 img
Import Dataset
Import Nutrition Data Data downloaded from Kaggle. remove (list=ls()) ?read.csv # open the help file FOOD.DATA.GROUP1 <- read.csv("~/Desktop/FOOD-DATA-GROUP1.csv")# you need to identify the key argument in the command FOOD.DATA.GROUP1 <- read.csv(file = "~/Desktop/FOOD-DATA-GROUP1.csv") # better coding practice is to specify the key argument FO...
156 sym R (7252 sym/7 pcs)
First_RMarkdownBasics.Rmd
1 Set Up Installed R, then R studio. https://posit.co/download/rstudio-desktop/ Reading up on the help files from official R website. There are many other websites that may be easier to read. The help() function and ? help operator in R provide access to the documentation pages for R functions, data sets, and other objects, both for packages in t...
2096 sym 1 img
My first R markdown file
Arethmetic Operation ##Addition Operation 2 + 2 # addition ## [1] 4 Subtraction Operation 5 - 4 ## [1] 1 Multiplication Operation 2 * 3 ## [1] 6 Division Operation 8/3 ## [1] 2.666667...
127 sym