R in action -- 第1章 R語言介紹數組
R:一個數據分析和圖形顯示的程序設計環境函數
R 環境工具
R 環境由一組數據操做,計算和圖形展現的工具構成。相對其餘同類軟件,它的 特點在於:spa
示例設計
1 help.start() # 打開幫助文檔 2 install.packages("vcd") # 安裝vcd包 3 help(package="vcd") # 載入vcd包 4 library(vcd) #列出vcd包中可用函數和數據集 5 help(Arthritis) # 顯示Arthritis內容 6 Arthritis #運行 7 example(Arthritis) # 顯示自帶示例 8 q()