Получить предупреждающее сообщение, используя rbokeh в R Notebook
Запуск Ubuntu 17.10 и запуск R Notebook на RStudio через Anaconda.
Когда я пытаюсь запустить простой пример с сайта rbokeh в R Notebook:
p <- figure() %>%
ly_points(Sepal.Length, Sepal.Width, data = iris,
color = Species, glyph = Species,
hover = list(Sepal.Length, Sepal.Width))
Я получаю следующее предупреждение:
In structure(x, class = unique(c("AsIs", oldClass(x)))) :
Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.
Consider 'structure(list(), *)' instead.
Кажется, что это предупреждение было задокументировано здесь, но я все еще получаю это предупреждение. У кого-нибудь есть рекомендации по поводу того, что делать?
1 ответ
Решение
https://github.com/bokeh/rbokeh/issues/216
Если вы перейдете по этой ссылке и используете "devtools" для установки из hafen/rbokeh, вы больше не получите предупреждающее сообщение.