Consider this shiny app:
library(shiny)
library(ggplot2)
ui <- fluidPage(
radioButtons("type", "Type of plot", choices = c("density", "boxplot")),
plotOutput("plot")
)
server <- function(input, output){
output[["plot"]] <- renderPlot({
if(input$type == "density"){
ggplot(iris, aes(Sepal.Length)) + geom_density()
}else{
ggplot(iris, aes(x = "", y = Sepal.Length)) + geom_boxplot()
}
})
}
shinyApp(ui, server)
When I select the radio button "boxplot", this message from the jsonlite
package appears in the R console:
Input to asJSON(keep_vec_names=TRUE) is a named vector. In a future version of jsonlite, this option will not be supported, and named vectors will be translated into arrays instead of objects. If you want JSON object output, please use a named list instead. See ?toJSON.
I would like to understand what's going on. What should I do to not get this message ? I fear that my app will be broken with a future version of jsonlite
.
x = ""
, try to delete the argument and the message doesn't appear (or usex = 0
instead). – Longingscale_x_continuous(breaks = NULL)
. But this warning didn't occur with the previous version of shiny. I will report. – Philippic