We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
May ask what is the best way to pass two different sets of data to two different charts?
From all the examples I've encountered there's only one variable with name data. Is there a way how to influence/change the name?
data
When I try to pass two dataset to two different charts they should not be sharing it.
(I am aware of #55 but that solution didn't work for me)
The text was updated successfully, but these errors were encountered:
You can use two separate .js files, and send your two data frames to them. For example:
.js
output$plot1<- renderD3({ r2d3(df1(), "plot1.js") }) output$plot2<- renderD3({ r2d3(df2(), "plot2.js") })
Sorry, something went wrong.
No branches or pull requests
May ask what is the best way to pass two different sets of data to two different charts?
From all the examples I've encountered there's only one variable with name
data
. Is there a way how to influence/change the name?When I try to pass two dataset to two different charts they should not be sharing it.
(I am aware of #55 but that solution didn't work for me)
The text was updated successfully, but these errors were encountered: