You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: R/dash.R
+2-2
Original file line number
Diff line number
Diff line change
@@ -780,7 +780,7 @@ Dash <- R6::R6Class(
780
780
#'
781
781
#' For detailed examples of how to use pattern-matching callbacks, see the
782
782
#' entry for \link{selectors} or visit our interactive online
783
-
#' documentation at \url{https://dashr.plotly.com}.
783
+
#' documentation at \url{https://dash.plotly.com/r/}.
784
784
#'
785
785
#' The `output` argument defines which layout component property should
786
786
#' receive the results (via the [output] object). The events that
@@ -1149,7 +1149,7 @@ Dash <- R6::R6Class(
1149
1149
#' @param block Logical. Start the server while blocking console input? Default is `TRUE`.
1150
1150
#' @param showcase Logical. Load the Dash application into the default web browser when server starts? Default is `FALSE`.
1151
1151
#' @param use_viewer Logical. Load the Dash application into RStudio's viewer pane? Requires that `host` is either `127.0.0.1` or `localhost`, and that Dash application is started within RStudio; if `use_viewer = TRUE` and these conditions are not satisfied, the user is warned and the app opens in the default browser instead. Default is `FALSE`.
1152
-
#' @param debug Logical. Enable/disable all the Dash developer tools (and the within-browser user interface for the callback graph visualizer and stack traces) unless overridden by the arguments or environment variables. Default is `FALSE` when called via `run_server`. For more information, please visit \url{https://dashr.plotly.com/devtools}. Environment variable: `DASH_DEBUG`.
1152
+
#' @param debug Logical. Enable/disable all the Dash developer tools (and the within-browser user interface for the callback graph visualizer and stack traces) unless overridden by the arguments or environment variables. Default is `FALSE` when called via `run_server`. For more information, please visit \url{https://dash.plotly.com/r/devtools}. Environment variable: `DASH_DEBUG`.
1153
1153
#' @param dev_tools_ui Logical. Show Dash's developer tools UI? Default is `TRUE` if `debug == TRUE`, `FALSE` otherwise. Environment variable: `DASH_UI`.
1154
1154
#' @param dev_tools_hot_reload Logical. Activate hot reloading when app, assets, and component files change? Default is `TRUE` if `debug == TRUE`, `FALSE` otherwise. Requires that the Dash application is loaded using `source()`, so that `srcref` attributes are available for executed code. Environment variable: `DASH_HOT_RELOAD`.
1155
1155
#' @param dev_tools_hot_reload_interval Numeric. Interval in seconds for the client to request the reload hash. Default is `3`. Environment variable: `DASH_HOT_RELOAD_INTERVAL`.
> 🛑 Make sure you're on at least version `3.0.2` of R. You can see what version of R you have by entering `version` in the R CLI. [CRAN](https://cran.r-project.org/bin/) is the easiest place to download the latest R version.
18
18
@@ -42,9 +42,9 @@ That's it!
42
42
43
43
## Getting Started
44
44
45
-
<https://dashr.plotly.com/getting-started>
45
+
<https://dash.plotly.com/r/layout>
46
46
47
-
The R package **dash** makes it easy to create reactive web applications powered by R. It provides an [R6](https://cran.r-project.org/web/packages/R6/index.html) class, named `Dash`, which may be initialized via the `new()` method.
47
+
The R package **dash** makes it easy to create reactive web applications powered by R. It provides an [R6](https://CRAN.R-project.org/package=R6) class, named `Dash`, which may be initialized via the `new()` method.
48
48
49
49
```r
50
50
library(dash)
@@ -55,96 +55,67 @@ app <- Dash$new()
55
55
Similar to [Dash for Python](https://github.com/plotly/dash) and [Dash for Julia](https://github.com/plotly/Dash.jl), every Dash for R application needs a layout (i.e., user interface) and a collection of callback functions which define the updating logic to perform when input value(s) change. Take, for instance, this basic example of formatting a string:
Copy file name to clipboardexpand all lines: man/dash-package.Rd
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,12 @@ Dash apps are rendered in the web browser. You can deploy your apps to servers a
15
15
16
16
There is a lot behind the framework. To learn more about how it is built and what motivated Dash, watch our talk from \href{https://youtu.be/5BAthiN0htc}{Plotcon} or read our \href{https://medium.com/@plotlygraphs/introducing-dash-5ecf7191b503}{announcement letter}.
17
17
18
-
Dash is an open source package, released under the permissive MIT license. Plotly develops Dash and offers a \href{https://plotly.com/dash/pricing/}{platform for easily deploying Dash apps in an enterprise environment}. If you'reinterested, \href{https://plotly.typeform.com/to/rkO85m?_ga=2.223907347.9240264.1560484539-2037997284.1554944507}{pleasegetintouch}.
18
+
Dash is an open source package, released under the permissive MIT license. Plotly develops Dash and offers a \href{https://plotly.com/dash/}{platform for easily deploying Dash apps in an enterprise environment}. If you'reinterested, \href{https://plotly.com/get-pricing/}{pleasegetintouch}.
0 commit comments