为什么情节不能识别调色板?

时间:2017-01-12 21:03:38

标签: r colors plotly

我有一个非常简单的图表,我想使用库的颜色调色板(RColorBrewer)。

使用示例代码时:

plot_ly(iris, x = ~Petal.Length, y = ~Petal.Width,  type="scatter", mode = "markers",color = ~Species , 
    marker=list( size=20 , opacity=0.5)  )
一切正常。但是,在使用我的数据时:

plot_ly(data, x = ~z, y = ~pagerank_persistence,  type="scatter", mode = "markers",color = ~Species,marker=list( size=20 , opacity=0.5)  )

R只是说:eval中的错误(expr,envir,enclos):Objekt'Species'nicht gefunden(翻译:对象“物种”未找到。

数据如下所示,其中z是日期代码。

head(data)
  z degree_in_persistence pagerank_persistence tradeprofit_persistence pfprofit_persistence
2 15371                   0.8                 0.70                    0.00                          0.05
3 15400                   0.8                 0.80                    0.15                 0.05
4 15431                   0.8                 0.85                    0.30                 0.00
5 15461                   0.7                 0.70                    0.30                 0.00
6 15492                   0.8                 0.80                    0.00                 0.00
7 15522                   0.8                 0.90                    0.00                 0.00
  

非常感谢帮助!

0 个答案:

没有答案