R 5

[R Studio] R 기초 #4. Mac 파일 불러오기 / 결측치 처리(is.na, complete.cases, na.omit, na.rm) / 이상치 처리(boxplot, hist, IQR, lop1p)

R 프로그래밍 기초 #4. 1. 파일 불러오기 #1. 워킹디렉토리 설정 #파일명에 '한글'이나 '빈칸' 있으면 오류발생할 수 있음! getwd() setwd("/Users/sohyun/Desktop/R_project") getwd() #2. 파일 불러오기 #맥에서 파일 불러올 때, fileEncoding = "euc-kr" 필요) df csv파일 #read.table() -> 테이블 #install.packages("readxl") -> 엑셀파일 읽어와야하는 경우 설치 #library(readxl) #read_excel(), read_xls(), read_xlsx() -> 엑셀불러오는 함수 3가지 • 워킹디렉토리 설정 getwd() : 확인 setwd() : 설정 • 파일 불러오기 - csv: read...

R/Data Analysis 2023.06.21

[R Studio] R 기초 #3. 특수값(NA, NULL, Inf, NaN) / 데이터타입 변환 / 파이프연산자(%>%)를 통한 iris 데이터 정제

R 프로그래밍 기초 #3. 1. 특수값 (NA, NULL, Inf, NaN) #NA, NULL(결측값) a % select(Sepal.Length, Species) %>% arrange(Sepal.Length) iris2 % arrange(Sepal.Length) head(iris2, 20) #하위 20개 추출 tail(iris2, 10) #상위 10개 추출 #Species_n 변수를 기준으로 그룹화, 각 그룹별로 관측치 개수를 계산하여 요약한 결과 반환 iris %>% mutate(Species_n = factor(Species)) %>% group_by(Species_n) %>% summarise(n()) ??mutate #복제 mutate() : 기존 변수의 함수인 새 열 생성. 또한 이름이 기존 ..

R/Data Analysis 2023.06.16

[R Studio] R 기초 #1. 변수타입 확인∙변환 / 패키지 설치 / stringr / 벡터 / 논리형 / 비교 연산

R 프로그래밍 기초 #1 1. 변수 타입 확인 a >> TRUE 3. 연산 11%/%3 #몫 구하기 11%%3 #나머지 구하기 2**3 #제곱 # 주석달기 - # 뒤에 작성한 내용은 실행되지 않음 %/% 몫 구하기 ex) 11 %/% 3 ⇨ 11 ÷ 3의 몫 %% 나머지 구하기 ex) 11 %% 3 ⇨ 11 ÷ 3의 나머지 ** 제곱 ex) 2 ** 3 ⇨ 2의 3승 4. 패키지 설치 #패키지 (파이썬의 import) install.packages("stringr") library(stringr) help("stringr") ??stringr install.packages("패키지명") library(패키지명) - 패키지 설치 help("패키지∙함수명") - help에 usesful links 자동으로 ..

R/Data Analysis 2023.06.13

[R Studio] R/R Studio 설치(Mac OS), 기본 화면 구성, 명령 단축키/워킹디렉토리 지정

• R / R Studio 설치 R을 사용하기 위해서는 R과 R Studio 두가지 모두 설치해야 한다. 1. R 설치 사이트 https://www.r-project.org/ R: The R Project for Statistical Computing www.r-project.org 2. R Studio 설치 사이트 https://posit.co/download/rstudio-desktop/ Posit The best data science is open source. Posit is committed to creating incredible open-source tools for individuals, teams, and enterprises. posit.co 3. Mac OS 용 R, R Studio..

R/Data Analysis 2023.06.12
728x90
반응형