Skip to content

Commit 2cee5d4

Browse files
committed
Even more URL redirects
1 parent e5a56fd commit 2cee5d4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

NEWS.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ This is minor patch release with a few minor bug fixes and updates test expectat
8484

8585
## NEW FEATURES & IMPROVEMENTS
8686

87-
* Several new features and improvements related to accessing plotly.js events in shiny (learn more about them in this RStudio [webinar](https://resources.rstudio.com/webinars/accessing-and-responding-to-plotly-events-in-shiny-carson-sievert)):
87+
* Several new features and improvements related to accessing plotly.js events in shiny (learn more about them in this RStudio [webinar](https://rstudio.com/resources/webinars/accessing-and-responding-to-plotly-events-in-shiny/)):
8888
* The `event` argument of the `event_data()` function now supports the following events: `plotly_selecting`, `plotly_brushed`, `plotly_brushing`, `plotly_restyle`, `plotly_legendclick`, `plotly_legenddoubleclick`, `plotly_clickannotation`, `plotly_afterplot`, `plotly_doubleclick`, `plotly_deselect`, `plotly_unhover`. For examples, see `plotly_example("shiny", "event_data")`, `plotly_example("shiny", "event_data_legends")`, and `plotly_example("shiny", "event_data_annotation")`,
8989
* New `event_register()` and `event_unregister()` functions for declaring which events to transmit over the wire (i.e., from the browser to the shiny server). Events that are likely to have large overhead are not registered by default, so you'll need to register these: `plotly_selecting`, `plotly_unhover`, `plotly_restyle`, `plotly_legendclick`, and `plotly_legenddoubleclick`.
9090
* A new `priority` argument. By setting `priority='event'`, the `event` is treated like a true event: any reactive expression using the `event` becomes invalidated (regardless of whether the input values has changed). For an example, see `plotly_example("shiny", "event_priority")`.
@@ -247,9 +247,9 @@ This is minor patch release with a few minor bug fixes and updates test expectat
247247

248248
## NEW FEATURES & IMPROVEMENTS
249249

250-
* Added a significant amount of support for "multiple linked views". For some relatively basic examples, see the demos (the ones prefixed with "highlight" are most relevant) -- `demo(package = "plotly")`. For a more comprehensive overview, see <https://cpsievert.github.io/plotly_book/linking-views-without-shiny.html>. For some more complex examples, see <https://cpsievert.github.io/pedestrians/>
250+
* Added a significant amount of support for "multiple linked views". For some relatively basic examples, see the demos (the ones prefixed with "highlight" are most relevant) -- `demo(package = "plotly")`. For a more comprehensive overview, see <https://plotly-r.com/client-side-linking.html>. For some more complex examples, see <https://pedestrians.cpsievert.me/>
251251
* Added the `highlight()` function for configuring selection modes/sequences/options.
252-
* Added support for animation. For some relatively basic examples, see the examples section of `help(animation)`. For a more thorough overview, see <https://cpsievert.github.io/plotly_book/key-frame-animations.html>
252+
* Added support for animation. For some relatively basic examples, see the examples section of `help(animation)`. For a more thorough overview, see <https://plotly-r.com/animating-views.html>
253253
* Added a `frame` argument to `plot_ly()` for creating animations. Also added the `animation_opts()`, `animation_slider()`, and `animation_button()` functions for configuring animation defaults.
254254
* Added a new interface to [v2 of the REST API](https://api.plot.ly/v2). This new interface makes the `plotly_POST()` and `get_figure()` functions obsolete (use `api_create()` and `api_download_plot()` instead), and thus, are now deprecated, but remain around for backwards-compatibility. For more details, see `help(api)`.
255255
* Added support for conversion of more **ggplot2** geoms via `ggplotly()`: `GeomCol`, `GeomRug`, `GeomCrossbar`, `GeomQuantile`, `GeomSpoke`, `GeomDotplot`, `GeomRasterAnn` (i.e., `annotation_raster()`), and `GeomAnnotationMap` (i.e., `annotation_map()`).
@@ -352,7 +352,7 @@ limits.
352352

353353
## NEW FEATURES
354354

355-
* Added the `plot_mapbox()` and `plot_geo()` functions, which make it easier to work with the "scattermapbox", "scattergeo", and "choropleth" trace types. See the maps chapter of the plotly book for some examples -- <https://cpsievert.github.io/plotly_book/maps.html>
355+
* Added the `plot_mapbox()` and `plot_geo()` functions, which make it easier to work with the "scattermapbox", "scattergeo", and "choropleth" trace types. See the maps chapter of the plotly book for some examples -- <https://plotly-r.com/maps.html>
356356
* `subplot()` now accepts, and correctly scales mapbox objects.
357357
* Added the `add_mesh3d()` and `add_pie()` functions as wrappers around the "mesh3d", and "pie" trace types.
358358

@@ -442,7 +442,7 @@ limits.
442442

443443
## CHANGES
444444

445-
* vignettes were removed and that documentation will now be hosted at <https://cpsievert.github.io/plotly_book/>
445+
* vignettes were removed and that documentation will now be hosted at <https://plotly.com/r/>
446446

447447
## BUG FIXES
448448

R/animate.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#' }
5858
#'
5959
#'
60-
#' #' # for more, see https://cpsievert.github.io/plotly_book/key-frame-animations.html
60+
#' #' # for more, see https://plotly.com/r/animating-views.html
6161
#'
6262
animation_opts <- function(p, frame = 500, transition = frame, easing = "linear",
6363
redraw = TRUE, mode = "immediate") {

R/subplots.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#' do(p = plot_ly(., x = ~date, y = ~value)) %>%
5858
#' subplot(nrows = NROW(.), shareX = TRUE)
5959
#'
60-
#' # learn more at https://cpsievert.github.io/plotly_book/subplot.html
60+
#' # learn more at https://plotly.com/r/subplot.html
6161
#'
6262

6363
subplot <- function(..., nrows = 1, widths = NULL, heights = NULL, margin = 0.02,

man/animation.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/subplot.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)