有线穿过的子图

时间:2018-11-11 06:29:28

标签: r r-plotly

我需要通过一堆小提琴情节。所以我想出了这段代码。

cd = data.frame(id = 1:100, norm = rnorm(100), poi = rpois(100, 1), exp 
= rexp(100,1))
cd = melt(cd, id= "id")
p1 = plot_ly(cd, x=~variable, y=~value, type = 'violin', box = 
list(visible =T), meanline = list(visible = T))%>%
layout(annotations = list(text = sprintf("Seeds=10, Coupons=5", 1:10), 
font = list(size=16), xanchor = "center", xref = "paper", yref = 
"paper", yanchor = "top", showarrow = F, y =1, x=0.5))

ad = data.frame(id = 1:100, norm = rnorm(100), poi = rpois(100, 1), exp 
= rexp(100,1))
ad = melt(ad, id= "id")
p2 = plot_ly(ad, x=~variable, y=~value, type = 'violin', box = 
list(visible =T), meanline = list(visible = T))%>%
layout(annotations = list(text = sprintf("Seeds=20, Coupons=5", 1:10), 
font = list(size=16), xanchor = "center", xref = "paper", yref = 
"paper", yanchor = "top", showarrow = F, y =1, x=0.5))
subplot(p1,p2, shareY = T)

它给了我这个情节 enter image description here

但是我很想看到的是一条穿过1.8的普通线,剪裁了所有地块 enter image description here

还将'trace 0'替换为'cd',将'trace 1'替换为'ad' 谢谢

1 个答案:

答案 0 :(得分:1)

您可以在每个图中使用add_lines添加一条水平线,并通过设置name ='cd'或'ad'来标记图例:

library(reshape2)
library(dplyr)
library(plotly)
cd = data.frame(id = 1:100, norm = rnorm(100), poi = rpois(100, 1), exp = rexp(100,1))
cd = melt(cd, id= "id")
p1 = plot_ly(cd, x=~variable, y=~value, type = 'violin',name = 'cd', box = 
list(visible =T), meanline = list(visible = T))%>% add_lines(x = ~variable, y =
rep(1.8,length(cd$id)),showlegend=FALSE)%>%
layout(annotations = list(text = sprintf("Seeds=10, Coupons=5", 1:10), 
font = list(size=16), xanchor = "center", xref = "paper", yref = 
"paper", yanchor = "top", showarrow = F, y =1, x=0.5))

ad = data.frame(id = 1:100, norm = rnorm(100), poi = rpois(100, 1), exp = 
rexp(100,1))
ad = melt(ad, id= "id")
p2 = plot_ly(ad, x=~variable, y=~value, type = 'violin',name = 'ad',box =
list(visible =T), meanline = list(visible = T))%>% add_lines(x = ~variable, y =
rep(1.8,length(ad$id)),showlegend=FALSE)%>%
layout(annotations = list(text = sprintf("Seeds=20, Coupons=5", 1:10), 
font = list(size=16), xanchor = "center", xref = "paper", yref = 
"paper", yanchor = "top", showarrow = F, y =1, x=0.5))

vline <- function(x = 0, color = "red") {
list(
type = "line", 
y0 = 0, 
y1 = 1, 
yref = "paper",
x0 = x, 
x1 = x, 
line = list(color = color)
  )
}

subplot(p1,p2, shareY = T)