Search code examples
rggvis

ggvis is not rendering anything in the viewer pane in RStudio


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! enter image description here


Solution

  • 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.