gpt4 book ai didi

r - ggplot 分面 - 删除空的 x 轴标签

转载 作者:行者123 更新时间:2023-12-05 08:54:57 26 4
gpt4 key购买 nike

<分区>

我在这个 article 之后使用分面除了使用数据的特定子集删除一些行。

# create a dataset
specie=c(rep("sorgho" , 3) , rep("poacee" , 3) , rep("banana" , 3) , rep("triticum" , 3) )
condition=rep(c("normal" , "stress" , "Nitrogen") , 4)
value=abs(rnorm(12 , 0 , 15))
data=data.frame(specie,condition,value)

# remove some rows
data=data[c(1:2,5:6,7,9,11:12),]

# Grouped
ggplot(data, aes(fill=condition, y=value, x=specie)) +
geom_bar(position="dodge", stat="identity")

# Faceting
ggplot(data, aes(y=value, x=specie, color=specie, fill=specie)) +
geom_bar( stat="identity") +
facet_wrap(~condition)

这给出了预期的以下情节。我需要从下面的每个图中删除空标签 - 例如,第一个图中的 sorgho,第二个图中的 poaceetriticum 等等.

enter image description here

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com