R言語プログラミング ジオ研

問題文
ふりがな非表示
ふりがな表示
(kekka <- 542 + 744)
kekka <- 542 + 744
(vec <- c(1,2,3,4,5,6,7,8,9))
vec <- c(1,2,3,4,5,6,7,8,9)
(if(check_value == 10))
if(check_value == 10)
(loop_count <- loop_count + 1)
loop_count <- loop_count + 1
(student <- students[i,])
student <- students[i,]
(hist(vec))
hist(vec)
(files <- list.files(path = ”/”))
files <- list.files(path = "/")
(library(skimr))
library(skimr)
(titanic <- read.csv(”titanic.csv”))
titanic <- read.csv("titanic.csv")
(titanic <- titanic %>% mutate())
titanic <- titanic %>% mutate()
((x - min(x, na.rm = true)))
(x - min(x, na.rm = TRUE))
(testing <- titanic[-trainindex, ])
testing <- titanic[-trainIndex, ]