-
Notifications
You must be signed in to change notification settings - Fork 50
add what about dash section #41
New issue
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
Conversation
what-about-dash.md
Outdated
|
||
### What About Dash? | ||
|
||
DashR is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library. Everywhere in this page that you see fig, you can display the same figure in a Dash application by passing it to the figure argument of the Graph component from the built-in dashCoreComponents package like this: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you'll want some links and backticks etc in this paragraph too :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also "Dash for R" rather than DashR
what-about-dash.md
Outdated
library(dashHtmlComponents) | ||
|
||
app <- Dash$new() | ||
app$layout ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing <-
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if not, we should remove the space before the (
@nicolaskruchten This is ready for review. |
what-about-dash.md
Outdated
|
||
### What About Dash? | ||
|
||
[Dash for R](https://dash.plot.ly/) is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library. Everywhere in this page that you see `fig`, you can display the same figure in a Dash for R application by passing it to the `figure` argument of the [`Graph` component](https://dash.plot.ly/dash-core-components/graph) from the built-in `dashCoreComponents` package like this: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Dash for R](https://dash.plot.ly/) is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library. Everywhere in this page that you see `fig`, you can display the same figure in a Dash for R application by passing it to the `figure` argument of the [`Graph` component](https://dash.plot.ly/dash-core-components/graph) from the built-in `dashCoreComponents` package like this: | |
[Dash for R](https://dashr.plot.ly/) is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library. Everywhere in this page that you see `fig`, you can display the same figure in a Dash for R application by passing it to the `figure` argument of the [`Graph` component](https://dashr.plot.ly/dash-core-components/graph) from the built-in `dashCoreComponents` package like this: |
As we discovered, we need a link to the installation guide first otherwise people will not know how to install dash :) |
what-about-dash.md
Outdated
dccGraph(figure=fig) | ||
) | ||
|
||
app$run_server() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app$run_server() | |
app$run_server(debug=TRUE, dev_tools_hot_reload=FALSE) |
Just added the R version of Chris' comments from plotly/documentation#1654 |
Co-Authored-By: Nicolas Kruchten <[email protected]>
I have updated the PR with the latest suggestions. |
💃 ! |
Relates to plotly/documentation#1654