編輯:我繪製了一個有15個不同類別(Q002_1 - Q002_15)的Likert標度來回答,請參見下面的圖表。 我現在想要的是將此圖(代碼如下)作爲二元變量與ggplot2一起繪製,有關詳細信息,請參閱this question。 我收到以下錯誤信息: Error: stat_bin requires the following missing aesthetics: x 我知道,我沒有看到明
我們可能想要爲某個ggplot()圖形定義一些全局aes(),但在某些圖層中排除它們。例如,假設以下示例: foo <- data.frame(x=runif(10),y=runif(10))
bar <- data.frame(x=c(0,1),ymin=c(-.1,.9),ymax=c(.1,1.1))
p <- ggplot(foo,aes(x=x,y=y))+geom_point()