2017-03-29 159 views
2

錯誤?可能相關to this..scale_y_discrete忽略中斷/標籤

dat = data.frame(x = 1:4, y = ordered(c(4,'>5',1,1), levels = c(1:5, '>5')), grp = 1) 

ggplot(dat, aes(x, y, group=grp)) + geom_step() + 
    scale_y_discrete(breaks = levels(dat$y), labels = levels(dat$y)) 

enter image description here

+0

'是否下降= FALSE'在'scale_y_discrete'你想要什麼?如果沒有,你需要澄清你想要輸出的樣子。 – Miff

回答

4
ggplot(dat, aes(x, y, group=grp)) + geom_step() + 
    scale_y_discrete(breaks = levels(dat$y), labels = levels(dat$y), drop = FALSE) 

resulting plot

+0

啊,謝謝羅蘭。如果這是在'scale_y_discrete'文檔中會有幫助。 – geotheory

+0

請參閱橢圓的文檔。 – Roland

+1

這不是假設對ggplot有相當深入的瞭解嗎? – geotheory