월요일 type check and type casting type check and type casting real <- 3.5 as.integer(real) intg <- 3 is.integer(intg) test <- c(TRUE,FALSE,TRUE) is.logical(test) as.num...
R Programming 1주차
월요일 R 기본 문법 R 기본 문법 install.packages("caTools") library(caTools) search() install.packages("dplyr") library(dplyr) 기본적으로 R에서 패키지를 설치하고 라이브러리로 해당 패키지의 함수를 불러오는 코드를 배웠다. ...