真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

小編給大家分享一下如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

創(chuàng)新互聯(lián)建站基于分布式IDC數(shù)據(jù)中心構(gòu)建的平臺(tái)為眾多戶(hù)提供樂(lè)山服務(wù)器托管 四川大帶寬租用 成都機(jī)柜租用 成都服務(wù)器租用。

一 繪制基本的箱線(xiàn)圖

載入數(shù)據(jù)及函數(shù)包

library(ggplot2)library(RColorBrewer)

dose數(shù)值 變成因子變量

ToothGrowth$dose <- as.factor(ToothGrowth$dose) head(ToothGrowth) #查看數(shù)據(jù)集   len supp dose1  4.2   VC  0.52 11.5   VC  0.53  7.3   VC  0.54  5.8   VC  0.55  6.4   VC  0.56 10.0   VC  0.5

1)geom_boxplot繪制基本的箱線(xiàn)圖

使用ToothGrowth數(shù)據(jù)集,dose變量為分類(lèi)橫坐標(biāo),對(duì)len變量做箱線(xiàn)圖

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

旋轉(zhuǎn)箱線(xiàn)圖方向并設(shè)置notch

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot(notch=TRUE) + coord_flip()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

2)修改異常點(diǎn)的屬性

 設(shè)置outlier的 color, shape and size 

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot(outlier.colour="red", outlier.shape=18,outlier.size=4)

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

此外, outlier.fill:離群點(diǎn)的填充色;outlier.alpha:離群點(diǎn)的透明度

3)選擇變量,設(shè)定順序

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot() + stat_summary(fun.y=mean, geom="point", shape=23, size=4, col = "red") +  #添加均值scale_x_discrete(limits=c("2", "0.5")) #選擇變量,更改順序

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

4)添加最大值和最小值的兩條須線(xiàn)

ggplot(ToothGrowth, aes(x=dose, y=len)) + stat_boxplot(geom = "errorbar",width=0.15) + #添加虛線(xiàn)geom_boxplot()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

5)箱線(xiàn)圖添加點(diǎn)

geom_point函數(shù),向箱線(xiàn)圖中添加點(diǎn);

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot() + geom_dotplot(binaxis='y', stackdir='center', dotsize=1, binwidth = 1)

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

geom_jitter()函數(shù)是geom_point(position = "jitter")的包裝,binaxis="y"是指沿著y軸進(jìn)行分箱;

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot() + geom_jitter(shape=16, position=position_jitter(0.2))

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

二 顏色設(shè)置

aes(color=)函數(shù)為每個(gè)箱線(xiàn)圖設(shè)置一個(gè)顏色,劃分箱線(xiàn)圖之后,可以使用scale_color_*()函數(shù)自定義顏色。

1)分組更改箱線(xiàn)的顏色

p<-ggplot(ToothGrowth, aes(x=dose, y=len, color=dose)) + geom_boxplot()p

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

自定義顏色方案

# Use custom color palettesp+scale_color_manual(values=c("#999999", "#E69F00", "skyblue"))# Use brewer color palettesp+scale_color_brewer(palette="Set3")+ theme_classic()# Use grey scalep + scale_color_grey() + theme_classic()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

2)更改箱子填充顏色

fill 填充色 ; color 箱線(xiàn)的外框顏色

#單組 設(shè)置顏色

ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot(fill='#A4A4A4', color="black")+ theme_classic()

#分組 設(shè)置顏色 , 自定義顏色設(shè)置方案同上

ggplot(ToothGrowth, aes(x=dose, y=len, fill=dose)) + geom_boxplot() + scale_fill_brewer(palette="Dark2") + theme_classic()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

三 圖例,標(biāo)題設(shè)置

1)設(shè)置legeng

Legend是對(duì)箱線(xiàn)圖的解釋性描述,默認(rèn)的位置是在畫(huà)布的右側(cè)中間位置,可以通過(guò)theme()函數(shù)修改Legend的位置

p + theme(legend.position="top")p + theme(legend.position="bottom")p + theme(legend.position="none") # Remove legend

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

2)labs設(shè)置標(biāo)題及坐標(biāo)標(biāo)簽

p+theme(legend.position="bottom") + labs(title="Plot of length  per dose",x="Dose (mg)", y = "Length")

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

3)其他theme詳細(xì)設(shè)置可參考ggplot2-theme(主題)以及ggplot2-圖形微調(diào)(1)

四 箱線(xiàn)圖匯總展示

ggplot(ToothGrowth, aes(x=dose, y=len, fill=dose)) +   stat_boxplot(geom = "errorbar",width=0.15)+  geom_boxplot()+  geom_dotplot(binaxis='y', stackdir='center', dotsize=0.5, binwidth = 1)+  labs(title="Plot of length  per dose",x="Dose (mg)", y = "Length")+  scale_fill_manual(values=c("#999999", "#E69F00", "#56B4E9")) +   theme(legend.position="none")+  theme_minimal()

如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖

看完了這篇文章,相信你對(duì)“如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站標(biāo)題:如何利用R語(yǔ)言的ggplot2包繪制箱線(xiàn)圖
文章URL:http://weahome.cn/article/pcejoo.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部