R
도움말
김건우_Jonathan
2022. 2. 8. 00:09
# 도움말
help.start()
Reference - Packages : 설치된 패키지들의 도움말
Reference - Search Engine & Keyword : 검색, 키워드
help(median)
?median
args(median)
example(median)
help.search("xyplot")
??xyplot
hero.vactor <- c("Superman", "Batman", "Spiderman")
apropos("vector") #vector가 포함되어 있는 변수명, 함수명 찾아준다.
#정규표현식으로 작성할 수 있다.
?regex #정규표현식
apropos("q$") #'q'로 끝나는 변수,함수
apropos("[7-9]")
apropos("xy+")
#https://search.r-project.org/
#https://rseek.org/
RSiteSearch("topicmodel")
install.packages("sos")
library(sos)
install.packages("brew")
findFn("social network analysis")