Получить предупреждающее сообщение с помощью 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.

Похоже, что это предупреждающее сообщение было задокументировано здесь, но я все еще получаю это предупреждение. Есть ли у кого-нибудь рекомендации, что делать?


person drizzle123    schedule 05.12.2017    source источник


Ответы (1)


https://github.com/bokeh/rbokeh/issues/216

Если вы перейдете по этой ссылке и используете «devtools» для установки из hafen/rbokeh, вы больше не будете получать предупреждающее сообщение.

person drizzle123    schedule 05.12.2017
comment
вы имеете в виду devtools::install_github(hafen/rbokeh) - person tallharish; 03.08.2019