ggplot2

时间:2016-02-12 18:02:00

标签: r ggplot2 plotly

我在情节上遇到了一些麻烦。下面引用的是关于形状和图例以及刻面的问题。当我将这个ggplot传递给plot_ly()时,传说会变得混乱。例如它说:

````
1.raw
1.raw
1.raw
1.raw
2.raw
2.raw
2.raw
2.raw
2.raw
1.mean
1.mean
1.mean
1.mean
1.mean
1.mean
2.mean
2.mean
2.mean
2.mean
2.mean

````

Mapping shape number to legend

我只是想让图中的传奇看起来像ggplot中的传奇,除了附加的痕迹交互奖励。

为了方便起见,这里是代码:

FinalPlot = ggplot(data=SOData,aes(x=Conc,y=value,color=variable))+
  geom_point(size =2, aes(shape='raw'))+
  stat_summary(aes(group=variable,shape='mean'),fun.y=mean,geom='point',size=4)+
  scale_shape_manual('Legend',values =c(mean = 9, raw = 16))+
  facet_wrap(~Compound)+
  ylab('Current (pA)')+
  xlab('Concentration (µM)')+
  theme(text= element_text(size=14,face='bold'))+
  theme(strip.text.x = element_text(size = 16,face = 'bold'))

plot_ly(FinalPlot)

数据可以在上面的链接中找到。

谢谢!

0 个答案:

没有答案