-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Short:
Rstudio crashes when I start a shinyApp that has a renderPlot()
+ plotOutput
in it.
Running it in Chrome the console gives me: Uncaught TypeError: Cannot read property 'readyState' of null
(shiny.min.js:3)
Example:
I open RStudio and create a new app:
RStudio -> File -> New File ->Shiny Web App
which gives me the standard "Old Faithful Geyser Data" app.
If I comment out plotOutput("distPlot")
and run the app everything is fine.
However, if i run the app including plotOutput("distPlot")
, I get:
R Session aborted - R encountered a fatal error,...
Technical details.
I am using RStudio 1.0.1.4.3 and shiny 1.0.3.
I removed and reinstalled RStudio as well as shiny.
(It happened when I ran an app from a SO question i wanted to answer, so it might have been that
i installed some packages prior to that, if that could possibly have any impact)