R

R

[R] VennDiagrm, 벤다이어그램 그리기

1. packages 2. tutorial code 1. packages - VennDiagram: https://rdrr.io/cran/VennDiagram/man/ install.packages("VennDiagram") library(VennDiagram) 2. tutorial code - 3 factors VennDiagram # working directory getwd() # seed 설정 set.seed(0) # 3 factor # 예시 데이터 생성 set1

R

[R] 부분 문자열 추출하기

R에서 문자열 추출 1. substring 2. 예제 3. 그 박의 문자열 조작 substr, str_sub 4. stringr cheat sheet 1. substring() substr(text, start, stop) substring(text, first, last = 1000000L) 2. 예제 extracting substring("HumptyDumpty sat on a wall",5,9) replacing mystring

R

[R] Chi-Square Test in R, and easy TIP

#0. sample data #1. chi square test #2. chi square calculator, very very easy #0. sample data data

R

[R] unpaired two-samples t-test in r

#0. sample data #1. t.test #0. sample data boxplot(sample_a, sample_b) #1. t.test t.test(sample_a, sample_b) ref : http://www.sthda.com/english/wiki/unpaired-two-samples-t-test-in-r Unpaired Two-Samples T-test in R - Easy Guides - Wiki - STHDA Statistical tools for data analysis and visualization www.sthda.com

R

[R] one hot encoding in r

One-hot encoding in r # 0. sample data # 1. mltools, data.table # 2. reshape2 # 0. sample data set.seed(42) data

R

[R] 두 집단 통계표 코드 한 줄로 끝내기

두 집단 기본 통계량을 코드 한 줄로 끝내는 방법 Package : arsenal #1. source data glimpse(df_summary) #2. arsenal로 통계표 구하기 library(arsenal) stat_tbl

R

[R] function 사용하여 반복작업 쉽게 하기

반복작업할때 function 기능 사용하면 코드를 간결화 할 수 있음. 기본 function(x, y) { any_command(x, y) } select_col 기능을 생성 select(), mutate(), filter() 세가지 명령을 한번에 함. #10 -5th.1 col2 = c("id","psu","kstrata","wt_itvex","age","sex", "he_crea", "he_uph", "he_unitr", "he_usg", "he_upro", "he_uglu", "he_uket", "he_ubil", "he_ubld", "he_uro") select_col % select(col2) %>% mutate(wt=wt_itvex*1/9.5) %>% select(-wt_itvex) %>% f..

R

[R] RStudio Cheatsheets

R 특정 function이 생각안날떄 유용한 cheat sheets ref; rstudio.com/resources/cheatsheets/4 RStudio Cheatsheets Open source and enterprise-ready professional software for data science rstudio.com

Chandler.j
'R' 카테고리의 글 목록 (2 Page)