2014-02-19 76 views
9

我可以通過geom_ribbongeom_area獲得「已填充」geom_line。是否有與geom_step等價的東西,不需要與多邊形/條形圖或者創建實際的步驟點?下面是一些示例數據:生成填充geom_step

library(ggplot2) 
set.seed(1) 
df <- data.frame(
    x=rep(sort(sample(1:20, 5)), 3), 
    y=ave(runif(15), rep(1:3, each=5), FUN=cumsum), 
    grp=letters[rep(1:3, each=5)] 
) 
ggplot(df, aes(x=x, y=y, color=grp)) + geom_step(position="stack") 

主要生產:

enter image description here

基本上,我想同樣的事情,但與填充區域。我知道如何通過實際創建步驟所需的x/y值並使用geom_area來做到這一點,但我希望有一些更簡單的方法。

回答

6

這裏是我想的,參考答案,但我希望使用一些更簡單/內置如果可能的話:

df2 <- rbind(
    df, 
    transform(df[order(df$x),], 
    x=x - 1e-9, # required to avoid crazy steps 
    y=ave(y, grp, FUN=function(z) c(z[[1]], head(z, -1L))) 
)) 
ggplot(df2, aes(x=x, y=y, fill=grp)) + geom_area() 

enter image description here

1

我知道這個問題是幾歲,但我今天有同樣的問題。以供參考這裏是我的解決方案。它並不比原始答案更簡潔,但對某些人來說可能更容易理解。

library(ggplot2) 
library(dplyr) 

df <- data.frame(x = seq(10), y = sample(10)) 

df_areaStep <- bind_rows(old = df, 
         new = df %>% mutate(y = lag(y)), 
         .id = "source") %>% 
       arrange(x, source) 

ggplot(df, aes(x,y)) + 
    geom_ribbon(aes(x = x, ymin = 0, ymax = y), data = df_areaStep) 

See this gist for longer version with comments.