亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣使用R語言ggplot2畫柱形圖

發布時間:2021-11-22 15:07:59 來源:億速云 閱讀:436 作者:柒染 欄目:大數據

這期內容當中小編將會給大家帶來有關怎樣使用R語言ggplot2畫柱形圖,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

今天要模仿的圖片來自于論文 Core gut microbial communities are maintained by beneficial interactions and strain variability in fish。期刊是 Nature microbiology

怎樣使用R語言ggplot2畫柱形圖

今天重復的圖片是Figure3中的柱形圖怎樣使用R語言ggplot2畫柱形圖

 

首先是第一個小圖:柱形圖,誤差棒,顯著性P值

 第一步是模擬數據
怎樣使用R語言ggplot2畫柱形圖  
image.png

數據是三列:第一列用來做X,第二列做Y,第三列做誤差條

 讀入數據
df1<-read.csv("Figure3_d.csv",header=T)
   ggplot2基本的柱形圖,利用分組信息填充顏色
library(ggplot2)
ggplot(df1,aes(x=group,y=value))+
  geom_col(aes(fill=group),color="black")
 
怎樣使用R語言ggplot2畫柱形圖  
image.png
 接下來是簡單地美化,包括調整配色,擴大y軸范圍,去掉灰色背景,柱子貼底,去掉圖例,更改x和y軸的標題,添加總標題,添加輔助線,添加誤差線等等。

下面的代碼就不詳細介紹了,爭取錄制一期視頻來介紹

ggplot(df1,aes(x=group,y=value))+
  geom_hline(yintercept = 0.5,lty="dashed")+
  geom_hline(yintercept = 1,lty="dashed")+
  geom_col(aes(fill=group),color="black")+
  theme_bw()+
  theme(panel.background = element_blank(),
        panel.grid = element_blank(),
        plot.title = element_text(hjust=0.5),
        legend.position = "none")+
  scale_y_continuous(expand = c(0,0),
                     limits = c(0,1.5))+
  scale_x_discrete(labels=c("Positive\ninteractions","Negative\ninteractions"))+
  annotate("segment",x=1,y=0.8,xend=1,yend=1)+
  annotate("segment",x=2,y=0.4,xend=2,yend=0.5)+
  labs(x=NULL,
       y="Absolute fold change\nin growth from co-cultures\ncompared to monocultures",
       title = "Average growth fold change in\nco-cultures")+
  annotate("segment",x=1.1,y=1.2,xend=1.9,yend=1.2)+
  annotate("segment",x=1,y=1.15,xend=1.1,yend=1.2)+
  annotate("segment",x=1.9,y=1.2,xend=2,yend=1.15)+
  annotate("text",x=1.5,y=1.3,label="P=0.0006")+
  scale_fill_manual(values = c("#ff8080","#90bff9"))
 
怎樣使用R語言ggplot2畫柱形圖  
image.png
 

接下來是第二個小圖:有正值和負值的柱形圖

 第一步還是構造數據
x<-1:28
y<-sample(-100:150,28,replace = F)
df2<-data.frame(x,y)
df2$group<-ifelse(df2$y>0,"A","B")
   基本的柱形圖
df2$x<-factor(df2$x)
ggplot(df2,aes(x,y))+
  geom_col(aes(fill=group),color="black")
 
怎樣使用R語言ggplot2畫柱形圖  
image.png
 接下來是美化:包括去掉背景,更改配色,調整x軸標簽的角度等等
df2$group<-factor(df2$group,
                  labels = c("Synergistic interactions",
                             "Non-synergistic interactions"))
ggplot(df2,aes(x,y))+
  geom_hline(yintercept = -50,lty="dashed")+
  geom_hline(yintercept = 50,lty="dashed")+
  geom_hline(yintercept = 100,lty="dashed")+
  geom_col(aes(fill=group),color="black")+
  theme_bw()+
  theme(panel.background = element_blank(),
        panel.grid = element_blank(),
        axis.text.x = element_text(angle = 90,hjust=0.5,
                                   vjust = 0.5),
        plot.title = element_text(hjust = 0.5),
        legend.position = "bottom",
        legend.title = element_blank())+
  scale_y_continuous(expand=c(0,0),
                     limits=c(-100,150),
                     breaks = c(-100,-50,0,50,100,150))+
  labs(x="Pairwise interactions",
       y="Percentage change from\nmonoculture",
       title = "Synergistic versus non-synergistic\ninteractions")+
  scale_fill_manual(values = c("#ff8080","#90bff9"))
 
怎樣使用R語言ggplot2畫柱形圖  
image.png
 最后是拼圖
library(cowplot)
pdf("Rplot11.pdf",width = 8,,height = 4)
plot_grid(p1,p2,ncol = 2,nrow=1,labels = c("d","e"))
dev.off()
 
怎樣使用R語言ggplot2畫柱形圖  

上述就是小編為大家分享的怎樣使用R語言ggplot2畫柱形圖了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金堂县| 临沂市| 清水县| 陆河县| 安多县| 安吉县| 历史| 长汀县| 浪卡子县| 舒城县| 汕尾市| 岳池县| 图木舒克市| 余江县| 沙洋县| 类乌齐县| 怀远县| 陇川县| 鹿泉市| 龙游县| 公安县| 怀仁县| 贞丰县| 天等县| 渝中区| 清徐县| 石台县| 潞城市| 富源县| 修水县| 宜兰县| 华蓥市| 鄂伦春自治旗| 仙桃市| 黔南| 南昌市| 红原县| 墨脱县| 望都县| 宁波市| 广水市|