Функция ggplotly на объекте ggplot2 аварийно завершает работу R & RStudio - PullRequest
0 голосов
/ 25 января 2019

Простой вызов ggplotly() для объекта ggplot2 приводит к сбою RStudio. Простой код запускается ниже.

library(plotly)
library(tidyverse)

iris.ggplot <- ggplot(data = iris,
                      aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
  geom_point()

print(iris.ggplot)

ggplotly(iris.ggplot)

Screen Short of the Error message

...