help.start()
help(functionname) 在網頁中顯示
?functionname 在控制台顯示
args(functionname) 快速獲取函式的引數
example(functionname) 檢視函式的例項
help.search("pattern")
??pattern
help(package="name")
有的軟體包會含vignette——一些附加的文件,例如簡介、教程或者開發文件等
vignette(package="packagename")
1 使用rsitesearch函式
rsitesearch("key phrase")
2 是google自定義搜尋的,用於檢索與r軟體有關的內容
3 是乙個針對程式設計有關的q&a**,例如資料結構、**以及圖表繪製等程式設計問題
4 可搜尋的q&a**,但更針對統計學的內容而非軟體程式設計的問題
1 訪問 **中的任務檢視。任務檢視是乙個能讓你知道從何處開始的好地方,你從中可以了解哪些軟體包可以應用。
2 訪問 通過關鍵字檢索合適的軟體包
附錄: r任務檢視
bayesian
bayesian inference 貝葉斯推理
chemphys
chemometrics and computational physics化學計量學和計算物理學
clinicaltrials
clinical trial design, monitoring, and analysis 臨床試驗設計、監控和分析
cluster
cluster analysis & finite mixture models 聚類分析和有限混合模型
differentialequations
differential equations 微分方程
distributions
probability distributions 概率分布
econometrics
econometrics 經濟學
environmetrics
analysis of ecological and environmental data
experimentaldesign
design of experiments (doe) & analysis of experimental data
finance
empirical finance 實證金融
genetics
statistical genetics 統計遺傳學
graphics
graphic displays & dynamic graphics & graphic devices & visualization 圖形視覺化
highperformancecomputing
high-performance and parallel computing with r 高效能計算和平行計算
machinelearning
machine learning & statistical learning 機器學習和統計學習
medicalimaging
medical image analysis 醫學影象分析
metaanalysis
meta-analysis meta 元分析
multivariate
multivariate statistics 多元統計
naturallanguageprocessing
natural language processing 自然語言處理
numericalmathematics
numerical mathematics 數值數學
officialstatistics
official statistics & survey methodology 官方統計和調查方法
optimization
optimization and mathematical programming 優化和數學規則
pharmacokinetics
analysis of pharmacokinetic data 藥物動力學資料分析
phylogenetics
phylogenetics, especially comparative methods 系統發育、進化和遺傳學分析
psychometrics
psychometric models and methods 心理測量模型和方法
reproducibleresearch
reproducible research 可重複性研究
robust
robust statistical methods 穩健統計方法
socialsciences
statistics for the social sciences 社會科學統計
spatial
analysis of spatial data 空間資料分析
spatiotemporal
handling and analyzing spatio-temporal data 時空資料處理和分析
survival
survival analysis 存活分析
timeseries
time series analysis 時間序列分析
webtechnologies
web technologies and services web技術和服務
grgraphical models in r 圖模型
我們可以通過安裝檢視的命令把所有同一應用範疇的包都安裝上。
為了自動安裝檢視,需要安裝ctv包。
install.packages("ctv")
library("ctv")
通過如下命令安裝或更新檢視:
install.views("econometrics")
update.views("machinelearning")
R語言獲取幫助
help.start 開啟幫助文件首頁 library ggplot2 若無此包需要安裝,install.package ggplot2 library vcd library help ggplot2 調出新視窗顯示包的資訊 help plot 檢視函式的幫助,也可以使用?help package...
R語言的各種報錯及其解決方法
人不能在同個地方栽兩次跟頭,那樣的生活效率太低。所以我一直以來都保持著隨手記錄的習慣。現在把近半個月來遇到的關於r語言的錯誤分享一下,希望能幫助到一些朋友,同時也希望各位朋友把遇到的已解決的 未解決的錯誤提出來一下,完善彼此的知識點,謝謝!可能原因 資料庫沒有連線上。可以用pl sql執行一下sql...
String中各種方法
1.該方法的作用是返回乙個字元陣列,該字元陣列中存放了當前字串中的所有字元 string s1 new string 我是中國人 char c s1.tochararray 2.由 基本資料型態轉換成 string string 類別中已經提供了將基本資料型態轉換成 string 的 static ...