| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 88aff36 commit ba96ad9
5 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | Package: plotly | |
| 2 | 2 | Title: Create Interactive Web Graphics via 'plotly.js' | |
| 3 | - Version: 4.11.0 | ||
| 3 | + Version: 4.12.0 | ||
| 4 | 4 | Authors@R: c(person("Carson", "Sievert", role = c("aut", "cre"), | |
| 5 | 5 | email = "cpsievert1@gmail.com", comment = c(ORCID = "0000-0002-4958-2844")), | |
| 6 | 6 | person("Chris", "Parmer", role = "aut", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - # plotly (development version) | ||
| 1 | + # plotly 4.12.0 | ||
| 2 | 2 | ||
| 3 | 3 | ## Changes to plotly.js | |
| 4 | 4 | ||
@@ -405,7 +405,7 @@ This is minor patch release with a few minor bug fixes and updates test expectat | |||
| 405 | 405 | * Added the `highlight()` function for configuring selection modes/sequences/options. | |
| 406 | 406 | * 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> | |
| 407 | 407 | * 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. | |
| 408 | - * 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)`. | ||
| 408 | + * Added a new interface to v2 of the REST API. 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)`. | ||
| 409 | 409 | * 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()`). | |
| 410 | 410 | * Added a new function `raster2uri()` which makes it easier to embed raster objects as [images](https://plotly.com/r/reference/#layout-images) via data URIs. For examples, see `help(raster2uri)`. | |
| 411 | 411 | * `ggplotly()` gains a new argument, `dynamicTicks`, which allows axis ticks to update upon zoom/pan interactions (fixes #485). | |
@@ -1182,7 +1182,7 @@ Fixed filename, fileopt arguments in plot_ly. Specifying the same filename will | |||
| 1182 | 1182 | ||
| 1183 | 1183 | 1.0.8 -- 14 Sep 2015 | |
| 1184 | 1184 | ||
| 1185 | - Added the plotly_IMAGES() function which interfaces to the images endpoint https://api.plot.ly/v2/#images | ||
| 1185 | + Added the plotly_IMAGES() function which interfaces to the images endpoint. | ||
| 1186 | 1186 | ||
| 1187 | 1187 | Details -> https://github.com/ropensci/plotly/pull/279 | |
| 1188 | 1188 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -44,7 +44,6 @@ | |||
| 44 | 44 | #' @export | |
| 45 | 45 | #' @rdname api | |
| 46 | 46 | #' @author Carson Sievert | |
| 47 | - #' @references \url{https://api.plot.ly/v2} | ||
| 48 | 47 | #' @seealso [signup()] | |
| 49 | 48 | #' @examplesIf interactive() || !identical(.Platform$OS.type, "windows") | |
| 50 | 49 | #' | |
@@ -80,30 +79,29 @@ | |||
| 80 | 79 | #' api() | |
| 81 | 80 | #' | |
| 82 | 81 | #' # search the entire platform! | |
| 83 | - #' # see https://api.plot.ly/v2/search | ||
| 84 | 82 | #' api("search?q=overdose") | |
| 85 | 83 | #' api("search?q=plottype:pie trump fake") | |
| 86 | 84 | #' | |
| 87 | 85 | #' # these examples will require a user account | |
| 88 | 86 | #' usr <- Sys.getenv("plotly_username", NA) | |
| 89 | 87 | #' if (!is.na(usr)) { | |
| 90 | - #' # your account info https://api.plot.ly/v2/#users | ||
| 88 | + #' # your account info | ||
| 91 | 89 | #' api(sprintf("users/%s", usr)) | |
| 92 | - #' # your folders/files https://api.plot.ly/v2/folders#user | ||
| 90 | + #' # your folders/files | ||
| 93 | 91 | #' api(sprintf("folders/home?user=%s", usr)) | |
| 94 | 92 | #' } | |
| 95 | 93 | #' | |
| 96 | - #' # Retrieve a specific file https://api.plot.ly/v2/files#retrieve | ||
| 94 | + #' # Retrieve a specific file | ||
| 97 | 95 | #' api("files/cpsievert:14681") | |
| 98 | - #' | ||
| 99 | - #' # change the filename https://api.plot.ly/v2/files#update | ||
| 96 | + #' | ||
| 97 | + #' # change the filename | ||
| 100 | 98 | #' # (note: this won't work unless you have proper credentials to the relevant account) | |
| 101 | - #' api("files/cpsievert:14681", "PATCH", list(filename = "toy file")) | ||
| 102 | - #' | ||
| 103 | - #' # Copy a file https://api.plot.ly/v2/files#lookup | ||
| 99 | + #' api("files/cpsievert:14681", "PATCH", list(filename = "toy file")) | ||
| 100 | + #' | ||
| 101 | + #' # Copy a file | ||
| 104 | 102 | #' api("files/cpsievert:14681/copy", "POST") | |
| 105 | - #' | ||
| 106 | - #' # Create a folder https://api.plot.ly/v2/folders#create | ||
| 103 | + #' | ||
| 104 | + #' # Create a folder | ||
| 107 | 105 | #' api("folders", "POST", list(path = "/starts/at/root/and/ends/here")) | |
| 108 | 106 | #' | |
| 109 | 107 | #' } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments