獲得幫助
你可以使用函式 help() 或 ? 訪問文件並在 R 中搜尋幫助。對於更一般的搜尋,你可以使用 help.search() 或 ??。
#For help on the help function of R
help()
#For help on the paste function
help(paste) #OR
help("paste") #OR
?paste #OR
?"paste"
有關其他資訊,請訪問 https://www.r-project.org/help.html