0

在下面的代码中,我尝试将散点的颜色更改为蓝色,并使用xlim=c(0,1)& 将“x”条目的数量限制为 1color='blue'

这是代码:

xx = c('test1' , 'test2' , 'test3') 
yy = c(6 , 7 , 8) 
df <- data.frame(xx , yy)
ggplot(df, xlim=c(0,1) , aes(x=xx, y=yy , color='blue')) + geom_point(alpha = 1) + theme_bw()

这没有发生:

在此处输入图像描述

如何限制图形的“x”长度并将散点的颜色更新为蓝色?

4

1 回答 1

1

如果您需要为所有点设置颜色,请放置在color="blue"外部。要将 x 轴仅限制为值,您可以为此值使用并设置或子集原始数据框。aes()geom_point()test1scale_x_discrtete()limits=

ggplot(df, aes(x=xx, y=yy)) +
  geom_point(alpha = 1,color='blue') + theme_bw()+
  scale_x_discrete(limits=c("test1"))
于 2013-05-24T15:45:08.513 回答