dreamRs / esquisse

RStudio add-in to make plots interactively with ggplot2
https://dreamrs.github.io/esquisse
Other
1.76k stars 227 forks source link

The same warning should not appear constantly after closing it #228

Closed daattali closed 7 months ago

daattali commented 1 year ago

Using this as an example:

library(shiny)

ui <- fluidPage(
  esquisse::esquisse_ui("test")
)

server <- function(input, output, session) {
  esquisse::esquisse_server("test", data_rv = reactiveValues(data = iris, name = "iris"))
}

shinyApp(ui, server)

Place "Sepal.Width" in X and "Species" in size. You'll get a warning:

image

That's great. It's a useful advise, but I may choose to ignore it. After dismissing the warning, absolutely any further changes I make will keep triggering it every time.

pvictor commented 7 months ago

See https://github.com/dreamRs/esquisse/issues/240