精通 R plot—第1部分:顏色,圖例和線

子華發表於2016-01-22

enter image description here

本篇文章是關於如何在R中使用plot函式來建立圖形系列文章的第一篇。當然,R中還有其他的包可以建立很酷的圖形(如ggplot2或lattice)。不過plot函式也可以滿足我們基本的繪圖要求。

在這篇文章,我們可以學習到如何在散點圖中新增資訊,如何新增圖例,最後在圖中新增回歸線。

模擬資料 enter image description here 新增顏色

首先,plot函式可以用不同的方式來新增顏色。一種方式是給plot的col引數傳遞一個顏色向量。 enter image description here enter image description here 更改圖形符號

建立圖形符號向量,用來標記兩種不同的Site。如下所示: enter image description here enter image description here 新增圖例

現在給圖形新增圖例: enter image description here enter image description here legend函式的第一個引數指定圖例顯示在圖形中的位置,接著是圖例的文字。其它可引數包括指定圖例的顏色,圖形符號等。更多詳情可通過?legend檢視。

通過設定xpd=TRUE可以在圖形外增加圖例。並指定x,y座標軸。 enter image description here enter image description here 新增回歸線 enter image description here enter image description here 還可以在繪圖區域新增許多圖形元素,例如:points,lines,rect,text。

後面的文章會繼續介紹如何控制軸標籤和刻度線。

本文由雪晴資料網負責翻譯整理,原文請參考Mastering R Plot – Part 1: colors, legends and lines作者Lione Hertzog。轉載本譯文請註明連結http://www.xueqing.cc/cms/article/117

相關文章