简体   繁体   中英

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! 在此处输入图像描述

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM