R中的打印框图与绘图

时间:2016-09-15 14:33:45

标签: r boxplot plotly

我正在使用plotly创建绘图,我正在尝试使用以下数据创建一个箱形图

data = data.frame(conn_1000 = c(970.09, 384, 1495), conn_2000 = c(970.09, 384, 1495), conn_4000 = c(1042.72, 685, 1495), conn_6000 = c(1012.92, 68, 1482))

plot_ly(y = data, type = "box")

结果我得到一个空的情节。你知道哪里出错了吗?

1 个答案:

答案 0 :(得分:3)

您可以尝试melt您的数据并添加groupy

因为你需要长格式的数据,但现在你已经有了广泛的

plotly::plot_ly( data=reshape2::melt(data), type = "box",group = variable,y=value)

enter image description here