R 軟體的操作方式

統計軟體 R

簡介

安裝

操作方式

變數與運算

有序數列

向量

矩陣

多維陣列

複數

因子

串列

資料框

時間數列

流程控制

輸出入

呼叫

函數

2D 繪圖

3D 繪圖

互動介面

套件列表

其他語言呼叫

R 的應用

集合

邏輯推論

模糊邏輯

機率邏輯

檢定

搜尋

優化算法

線性代數

決策樹

人工智慧

分群分類

SVM 向量機

神經網路

遺傳演算法

資料採礦

訊號處理

影像處理

語音處理

自然語言

機器學習

機器人

生物統計

數位訊號處理

方程式求解

數值分析

微積分

微分方程

線性規劃

圖形理論

統計推論

字串處理

正規表示式

視窗程式

網頁程式

文件格式

貝氏網路

訊息

機率統計書

相關網站

參考文獻

最新修改

簡體版

English

R 軟體啟動後會顯示下列訊息:

R version 2.13.1 (2011-07-08)
Copyright (C) 2011 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: i386-pc-mingw32/i386 (32-bit)

R 是免費軟體,不提供任何擔保。
在某些條件下您可以將其自由散布。
用 'license()' 或 'licence()' 來獲得散布的詳細條件。

R 是個合作計劃,有許多人為之做出了貢獻。
用 'contributors()' 來看詳細的情況並且
用 'citation()' 會告訴您如何在出版品中正確地參照 R 或 R 套件。

用 'demo()' 來看一些示範程式,用 'help()' 來檢視線上輔助檔案,或
用 'help.start()' 透過 HTML 瀏覽器來看輔助檔案。
用 'q()' 離開 R。

此時即可開始進行指令操作,以下是一些常用的入門指令:

> dir()
 [1] "Default.rdp"         "desktop.ini"         "Downloads"          
 [4] "My Dropbox"          "My eBooks"           "My Music"           
 [7] "My Pictures"         "My Videos"           "Sony PMB"           
[10] "The KMPlayer"        "Untitled1Frm.cpp"    "Untitled1Frm.h"     
[13] "Untitled1Frm.wxform" "Visual Studio 2008"  "Visual Studio 2010" 

> ls()
character(0)

> ?mean
> help(mean)
> help.search("mean")
> 

Help files with alias or concept or title matching ‘mean’ using
regular expression matching:

base::colSums          Form Row and Column Sums and Means
base::Date             Date Class
base::DateTimeClasses
                       Date-Time Classes
base::difftime         Time Intervals
base::mean             Arithmetic Mean
boot::sunspot          Annual Mean Sunspot Numbers
cluster::meanabsdev    Internal cluster functions
lattice::tmd           Tukey Mean-Difference Plot
Matrix::Matrix-class   Virtual Class "Matrix" Class of Matrices
Matrix::colSums        Form Row and Column Sums and Means
Matrix::dgeMatrix-class
                       Class "dgeMatrix" of Dense Numeric (S4 Class)
                       Matrices
Matrix::sparseMatrix-class
                       Virtual Class "sparseMatrix" - Mother of
                       Sparse Matrices
Matrix::sparseVector-class
                       Sparse Vector Classes
rpart::meanvar         Mean-Variance Plot for an Rpart Object
stats::kmeans          K-Means Clustering
stats::oneway.test     Test for Equal Means in a One-Way Layout
stats::weighted.mean   Weighted Arithmetic Mean

Type '?PKG::FOO' to inspect entries 'PKG::FOO', or 'TYPE?PKG::FOO'
for entries like 'PKG::FOO-TYPE'.

Help for topic 'bs' is not in any loaded package but can be 
found in the following packages:

> apropos(help)
錯誤: is.character(what) is not TRUE
> apropos("help")
[1] "help"         "help.request" "help.search"  "help.start" 

> help("bs")
No documentation for 'bs' in specified packages and libraries:
you could try '??bs'
> help("bs", try.all.packages = TRUE)
starting httpd help server ... done
>

當我們輸入 help("bs", try.all.packages = TRUE) 指令成功後,會開啟瀏覽器,此時會出現一個網頁顯示下列資訊:

help.jpg

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License