Programming language/R(3)
-
R db 연동
# 정형 데이터(필드가 있다) 처리 : RDBMS와 연동 # RJDBC api를 사용 install.packages("rJava") install.packages("DBI") install.packages("RJDBC") # Sys.setenv(JAVA_HOME="c:/Program Files/Java/jdk-11.0.5") library(rJava) library(DBI) library(RJDBC) # 개인용 DB : Sqlite와 연동 install.packages("RSQLite") library(RSQLite) mtcars # 자동차 정보 dataset dim(mtcars) conn
2022.10.24 -
R 기본 문법
R의 데이터 타입 문자형 타입, character 숫자형 타입 , numeric(숫자), double(실수), integer(정수), complex(복소수) 논리형 타입, logical NaN, NA, NULL > class(inf) # 무한대 -inf 음의 무한대 [1] "numeric" > class(FALSE) [1] "logical" > sqrt(-3) [1] NaN # 결과와 경고 반환 > class(NA) # 결측값 [1] "logical" > class(NULL) # 존재하지 않는 값 [1] "NULL" 연산자 대입 : 산술 : +, -, /, %%, ^ or ** 관계 : ==, !=, >, >=,
2022.10.24 -
R 설치
https://www.rstudio.com/products/rstudio/download/ Download the RStudio IDE RStudio is a set of integrated tools designed to help you be more productive with R. It includes a console, syntax-highlighting editor that supports direct code execution, and a variety of robust tools for plotting, viewing history, debugging and managing www.rstudio.com 위 링크로 들어가서 R studio를 설치한다. * 단축키 ctrl enter = run ..
2022.10.20