We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The core issue behind tidyverse/dplyr#5760 (example below) is that group_by.plotly() doesn't retain crosstalk set information
library(plotly) library(crosstalk) shared_data <- mtcars %>% SharedData$new() p <- shared_data %>% plot_ly(x = ~mpg, y = ~hp) %>% group_by(am) %>% add_markers() bscols(list( filter_slider(id = "mpg", label = "Miles per Gallon", sharedData = shared_data, column = "mpg"), filter_checkbox(id = "am", label = "Automatic / Manual", sharedData = shared_data, group = ~am)), p)
The text was updated successfully, but these errors were encountered:
757a329
No branches or pull requests
The core issue behind tidyverse/dplyr#5760 (example below) is that group_by.plotly() doesn't retain crosstalk set information
The text was updated successfully, but these errors were encountered: