R 끄적끄적
-
R관련 사이트 정리R 끄적끄적/R 사이트정리 2020. 4. 7. 09:25
http://dygraphs.com/ http://dygraphs.com/ Features Handles huge data sets: dygraphs plots millions of points without getting bogged down. Interactive out of the box: zoom, pan and mouseover are on by default. Strong support for error bars / confidence intervals. Highly customizable: using options dygraphs.com http://plotly.com/ Modern Analytic Apps for the Enterprise - Plotly Using Dash, data sc..
-
Text mining 에 필요한 함수 정리R 끄적끄적/R 함수 Dictionary 2020. 4. 3. 10:19
* ctrl + f 로 찾아서 보면 편합니다. [base]grep() : 패턴대로 골라주는 함수 ex)grep("[a-z]", letters) [base]gsub() : 패턴대로 치환해주는 함수 ex)gsub("(\\w)(\\w*)", "\\U\\1\\L\\2", txt, perl=TRUE) [stringr]str_replace() : 패턴대로 한번 치환해주는 함수 [stringr]str_replace_all() : 패턴대로 단어를 치환해주는 함수 ex) str_replace_all(txt, "\\W"," ") [KoNLP]extractNoun() : 명사추출해서 리스트형식으로 반환 [base]class() : 속성을 확인 [base]dim() : 차원을 확인 [utils]View() : 미리보기 [ba..
-
R 라이브러리 DictionaryR 끄적끄적/R 라이브러리 Dictionary 2020. 4. 2. 17:35
종류 설치방법 간단한 설명 base 노란색은 기본 패키지 R의 기본 패키지 datasets R의 데이터셋 패키지 graphics R의 그래픽 패키지 gfid Grid 그레픽 패키지 methods 형식적인 매소드들과 클래스들 stats R의 통계 패키지 utils 초록색은 추천패키지 R의 유틸 패키지 MASS install.packages("MASS") Venables와 Ripley's MASS를 위한 데이터셋과 함수를 지원하는 패키지 foreign install.packages("foreign") 저장되있는 데이터를 읽는 패키지 lattice install.packages("lattice") Trellis 그래픽 패키지 devtools install.packages("devtools") git hub에 ..