使用 R 中的 2+ 个图例来 plotly/plot.ly [英] Using 2+ legends from R to plotly / plot.ly

查看:15
本文介绍了使用 R 中的 2+ 个图例来 plotly/plot.ly的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 R 的 ggplot 创建一个静态图并将其传递给 plot.ly 以创建一个交互式图.我的目标是将分类变量投影到颜色,将数值变量投影到大小.使用 R 的 [iris] 数据完美运行 - 就像这样:

I am using R's ggplot to create a static plot and pass that on to plot.ly to create an interactive plot. My aim to project a categorical variable to the color and a numeric variable to size. With R's [iris] data that works perfect - Like that:

testplot <- ggplot(iris, aes(Sepal.Length, Sepal.Width, color=Species, size=Petal.Length)) + geom_point()
py$ggplotly(testplot)

https://plot.ly/~SyTpp/11/sepalwidth-vs-sepallength/

现在,我有自己的数据集,a,...

Now, I have my own dataset, a, ...

> a
       Country OR_Edu OR_Illn total num
         Peru   1.75    1.67 25367  10
  Philippines   1.33    0.43 33543   1
       Rwanda   0.29    4.00  6443   2
      Senegal   5.00    1.60 32743   3
    Sri Lanka  12.00    6.33 21743   4
        Sudan  17.00    0.86 27227   5
     Tanzania   0.57    0.71 24312   6
       Uganda  13.00    0.60 35466   7
      Vietnam   1.62    1.50 34639   8
      Zambia   0.86    1.00 16735   9
    Zimbabwe   1.25    1.00 33349  10
> summary(a)
        Country      OR_Edu          OR_Illn          total            num        
 Peru       :1   Min.   : 0.290   Min.   :0.430   Min.   : 6443   Min.   : 1.000  
 Philippines:1   1st Qu.: 1.055   1st Qu.:0.785   1st Qu.:23028   1st Qu.: 3.500  
 Rwanda     :1   Median : 1.620   Median :1.000   Median :27227   Median : 6.000  
 Senegal    :1   Mean   : 4.970   Mean   :1.791   Mean   :26506   Mean   : 5.909  
 Sri Lanka  :1   3rd Qu.: 8.500   3rd Qu.:1.635   3rd Qu.:33446   3rd Qu.: 8.500  
 Sudan      :1   Max.   :17.000   Max.   :6.330   Max.   :35466   Max.   :10.000  
 (Other)    :5                                                                                

当我只使用国家作为分类变量时,它也可以工作......

When I use only the country as categorical variable, it works, too...

testplot <- ggplot(a, aes(OR_Edu, OR_Illn, color=Country)) + geom_point()
py$ggplotly(testplot)

但是当我尝试将总计"映射到标记的大小时

but when I try to map 'total' to the size of the marker

testplot <- ggplot(a, aes(OR_Edu, OR_Illn, color=Country, size=total)) + geom_point()
py$ggplotly(testplot)

我收到此错误,尽管总计"显然是一个数值.

I get this error, despite 'total' obviously being a numeric value.

L$marker$size * marker.size.mult 中的错误:二元运算符的非数字参数

Error in L$marker$size * marker.size.mult : non-numeric argument to binary operator

有什么问题?有什么想法吗?

What is the problem? Any ideas?

还有一件事(也许我需要在一个单独的问题中问这个问题):如何自定义悬停时出现的小弹出框?

And onther thing (maybe I need to ask that in a separate question): How can I customise the little pop-up box that appears on hover?

非常感谢!

推荐答案

您遇到了一个错误,我们现在修复了它.

You ran into a bug, which we now fixed it.

请重新安装并重新加载plotly"包,重新实例化您的 py 对象,它现在应该可以工作了:https://plot.ly/~marianne2/38/or-illn-vs-or-edu/

Please reinstall and reload the "plotly" package, re-instantiate your py object and it should work now: https://plot.ly/~marianne2/38/or-illn-vs-or-edu/

这篇关于使用 R 中的 2+ 个图例来 plotly/plot.ly的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆