2013年5月25日 星期六

R的圖形輸出

感謝 R user- James 提供此問題:

Problem:
R的圖形輸出其畫質會變得不是很清晰等問題.

Analysis:
R中可以採用多種不同輸出格式, 其中以 pdf 格式較佳, 如果 tiff , eps 有做參數調整, 應該也是不錯的選擇, 詳細設定參考 ?tiff , ?pdf 指令。在 RStudio 軟體中亦可直接選取 Export \ Save Plot as Image ... 輸出圖檔, 參考以下 R codes.

graphics-export.R


pdf原圖

pdf 放大200%

使用wubi軟體安裝 Ubuntu

# 本篇文章說明在Windows 環境中利用wubi免費軟體安裝 Ubuntu.


# step 1 下載 wubi


連結wubi 首頁, http://wubi-installer.org/

選取 [Get the installer]

選取 [Not now, take me to the download]

按 [儲存]

# step 2 安裝32位元 Ububtu

因執行環境為 Windows 7 - 64位元, 因此預設安裝64位元Ubuntu, 如果希望安裝 32位元Ubuntu, 則須執行此步驟, 否則直接採用step 3.

選取 wubi.exe, 按 右鍵 \ 建立捷徑

按 右鍵 \ 內容 \ 目標中最後輸入 「--32bit」, 按 確定.

雙按此捷徑即可安裝 32位元 Ubuntu.

# step 3 安裝64位元 Ububtu

選取 wubi.exe

Ubuntu安裝程式畫面中輸入 使用者名稱, 密碼.

安裝畫面.


安裝完成後選取 控制台 \ 程式和功能 會包括 Ubuntu 的程式, 如果將來不再使用, 按 [解除安裝變更] 即可移除 Ubuntu.

# step 4 使用 Ububtu

重新開機會有二個選項 Windows 7 與 Ubuntu, 選取第2個 Ubuntu 即可使用 Ubuntu.

2013年5月5日 星期日

Ubuntu 安裝統計軟體 R


# 本篇文章說明 Ubuntu 環境中安裝統計軟體R,全部有7個步驟 (參考 pdf 下載)。

# 2023.6.23
# Ubuntu 22.04.2 LTS 安裝 R-4.3.0

步驟1. Set new Ubuntu repositories
sudo apt install -y --no-install-recommends software-properties-common dirmngr

步驟2. Add the keys
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc

步驟3. add the R repo from CRAN
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"

步驟4. Install R 4.3.0
sudo apt install -y r-base r-base-core r-recommended r-base-dev

# 參考以下 R 完成畫面.







# 2023.6.23
# Ubuntu 22.04.2 LTS 安裝 RStudio

# 步驟1. 安裝模組
sudo apt install libclang-dev libpq5

# 步驟2. 下載RStudio
cd Downloads
wget https://download1.rstudio.org/electron/jammy/amd64/rstudio-2023.06.0-421-amd64.deb

# 步驟3. 安裝RStudio
sudo dpkg -i rstudio-2023.06.0-421-amd64.deb

# 參考以下 RStudio 完成畫面.




# 2017.7.2 更新

# CentOS 7 安裝R:
sudo yum install epel-release
sudo yum install R

# CentOS 7 更新R:
sudo yum update R

# step 1 檢視 Ubuntu 版本

lsb_release –a

# step 2 備份sources.list

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

# step 3 編輯sources.list

sudo gedit /etc/apt/sources.list

# 在檔案最後新增一列與以下內容
deb http://cran.csie.ntu.edu.tw/bin/linux/ubuntu quantal/
注意:隨著版本不同,最後加上 quantal 可能修改成合適版本。

# 按 File->Save 儲存檔案

# step 4 更新套件

sudo apt-get update

# step 5 安裝R

sudo apt-get install r-base

或採用包括發展工具等套件指令(建議採用以下方法加上 r-base-dev)
sudo apt-get install r-base r-base-dev

# step 6 執行R

在終端機視窗中輸入 R 即可開啟R視窗

# step 7 新增至左側啟動器

選取 啟動器最上方 Ubuntu 按鈕,輸入 r,將R圖示拖拽至左側啟動器,下次直接按R圖示即可。
 # end #

下載 ubuntu_install_R.pdf