4

私はいくつかの屋内と屋外の活動のかなり手の込んだプロットに取り組んでいます、そして私はちょっと立ち往生しています。Xminプロットのステップで、屋内/屋外で費やした分を( 、、、YminおよびZmin)で色付けしたいとgeom_segment思います(以下を参照)。現在はのみで Zmin色付けされています(連続変数を使用していますが、少しずれています)。

他の人がこのようなものを作成したい場合に備えて、すべてのコードを貼り付けました。最初はこのブログ投稿に触発されました。

助けていただければ幸いです、ありがとう!

df <- data.frame(
  date = seq(Sys.Date(), len= 156, by="4 day")[sample(156, 26)],
  action = paste('Then', LETTERS[1:13], 'happed, which was not related to', LETTERS[14:26]),
  IndoorOutdoor = rep(c(-1,1), 13),
  Xmin = sample(90, 26, replace = T),
  Ymin = sample(90, 26, replace = T),
  Zmin = sample(90, 26, replace = T)
)

df$XYZmin <- rowSums(df[,c("Xmin", "Ymin", "Zmin")])*df$IndoorOutdoor

# install.packages("ggplot2", dependencies = TRUE)
require(ggplot2)

# step 1 
plot <- ggplot(df,aes(x=date,y=0))

# step 2, this is where I want to add 'more' color 
plot <- plot + geom_segment(aes(y=0,yend=XYZmin,xend=date, colour= Zmin))

# The text is added as follows
plot <- plot + geom_text(aes(y=XYZmin,label=paste(action, '\n this happed on ', date)),size=2.5,hjust=-.01, vjust=-.01, angle = 35)

# points at the end of the line segments
plot <- plot + geom_point(aes(y=XYZmin))

# #raw a vertical line
plot <- plot + geom_hline(y=0,size=1,color='purple')

#drawing the actual arrow
# plot <- plot + geom_segment(x=2011.4,xend=2012.2,y=.2,yend=0,color='purple',size=1) + geom_segment(x=2011.4,xend=2012.2,y=-.2,yend=0,color='purple',size=1)

plot <- plot + theme(axis.text.y = element_blank()) + ylab('') + xlab('')
plot + labs(title = "Timeline for when what happened")

ここに画像の説明を入力してください

4

1 に答える 1

9

ここに2つのアプローチがあります。1つは異なるsから各行を構築しgeom_segmentます(これはあなたがやっていたことに近いと思いますか?)もう1つは単にを使用しますgeom_bar。これは私の好みです(はるかにスケーラブルです)。ビルド時にエラーが発生したと思いますdata.frame。作成時に56行を作成するためIndoorOutdoor、後で問題が発生します。以下で変更しました。

set.seed(1234)
df <- data.frame(
  date = seq(Sys.Date(), len= 156, by="4 day")[sample(156, 26)],
  action = paste('Then', LETTERS[1:13], 'happed, which was not related to', LETTERS[14:26]),
  IndoorOutdoor = rep(c(-1,1), 13), #Change so there are only 26 rows
  Xmin = sample(90, 26, replace = T),
  Ymin = sample(90, 26, replace = T),
  Zmin = sample(90, 26, replace = T)
)

df$XYZmin <- rowSums(df[,c("Xmin", "Ymin", "Zmin")])*df$IndoorOutdoor
df[,8:10] <- df[,4:6]*df[,3] #Adding the sign to each X/Y/Z
names(df)[8:10] <- paste0(names(df)[4:6],"p") #to differentiate from your X/Y/Z
require(ggplot2)

次に、geom_barソリューションの場合df、単一の値をプロットfillしてvarialbe(Xminなど)にマッピングできるように溶かします。

df.m <- melt(df[,c(1:3,7:10)], measure.vars=c("Xminp", "Yminp", "Zminp"))
plot.alt <- ggplot(df.m, aes(date, value, fill=variable)) + 
  geom_bar(position="stack", stat="identity", width=0.5) + #width is just to make it look like yours
#All of this is from your original plot
  geom_text(aes(y=XYZmin,label=paste(action, '\n this happed on ', date)),size=2.5,hjust=-.01, vjust=-.01, angle = 35) + 

  geom_point(aes(y=XYZmin), show_guide=FALSE) +
  geom_hline(y=0,size=1,color='purple') +
  theme(axis.text.y = element_blank()) + ylab('') + xlab('') +
  labs(title = "Timeline for when what happened")
plot.alt

ここに画像の説明を入力してください

または、次の方法を使用して構築する方法もありますgeom_segment

plot <- ggplot(df,aes(x=date)) +
#Three geom_segments 
  geom_segment(aes(y=0,yend=Xminp,xend=date), colour= "blue") +
  geom_segment(aes(y=Xminp,yend=Xminp + Yminp,xend=date), colour= "red") +
  geom_segment(aes(y=Xminp + Yminp,yend=Xminp + Yminp + Zminp,xend=date), colour= "green") +
#This is all from your plot
  geom_text(aes(y=XYZmin,label=paste(action, '\n this happed on ', date)),size=2.5,hjust=-.01, vjust=-.01, angle = 35) +
  geom_point(aes(y=XYZmin)) +
  geom_hline(y=0,size=1,color='purple') +
  theme(axis.text.y = element_blank()) + ylab('') + xlab('') +
  labs(title = "Timeline for when what happened")
plot

それが理にかなっていることを願っています...それがあなたが求めていたものではないかどうか私に知らせてください。 ここに画像の説明を入力してください

于 2013-03-12T01:21:47.027 に答える