ggvis is not rendering anything in the viewer pane in RStudio

耗尽温柔 提交于 2021-02-17 05:22:10

问题


I am not able to get any points when I plot my ggvis. Please see my code below:

#install.packages("ggvis", dependencies = T)
#install.packages("shiny", dependencies = T)
#install.packages("htmltools", dependencies = T)
#install.packages("tidyverse", dependencies = T)

library(htmltools)
library(shiny)
library(tidyverse)
library(ggvis)

mtcars %>% ggvis(~wt, ~mpg) %>% layer_points()

#then i get the blank image like below:

I am on Windows 10, Rstudio is all up-to-date. I would greatly appreciate your help!


回答1:


https://github.com/rstudio/ggvis/issues/483

A GitHub issue was opened,please consider leaving your issues in that issue board. I believe r studio team is also aware of this issue.



来源:https://stackoverflow.com/questions/62461058/ggvis-is-not-rendering-anything-in-the-viewer-pane-in-rstudio

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!