Skip to content

Commit b479538

Browse files
Merge pull request #45 from plotly/change-ly-to-com
change tld to .com from .ly
2 parents 8ff4491 + 512f448 commit b479538

File tree

84 files changed

+154
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+154
-154
lines changed

ggplot2/2015-08-10-getting-started.Rmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ output:
1212
---
1313
# Plotly for R
1414

15-
Plotly is an R package for creating interactive web-based graphs via [plotly](https://plot.ly/)'s JavaScript graphing library, `plotly.js`.
15+
Plotly is an R package for creating interactive web-based graphs via [plotly](https://plotly.com/)'s JavaScript graphing library, `plotly.js`.
1616

1717
The [plotly R package](https://github.com/ropensci/plotly) serializes ggplot2 figures into Plotly's <a target="_blank" href="http://plot.ly/r/reference/">universal graph JSON</a>. `plotly::ggplotly` will crawl the ggplot2 figure, extract and translate all of the attributes of the ggplot2 figure into JSON (the colors, the axes, the chart type, etc), and draw the graph with plotly.js.
1818

@@ -140,7 +140,7 @@ fig <- plotly_build(fig)
140140
str(fig)
141141
```
142142

143-
This declarative description of the graph is very human readable. Every attribute of the chart, the colors, the data, the text, is described in a key-value pair in this object. [View all of the possible graph attributes.](https://plot.ly/r/reference)
143+
This declarative description of the graph is very human readable. Every attribute of the chart, the colors, the data, the text, is described in a key-value pair in this object. [View all of the possible graph attributes.](https://plotly.com/r/reference)
144144

145145
Attributes of plotly figures are grouped into two categories: `data` and `layout`. `data` describes attributes that pertain to the plot's series, or "traces". These properties include things like the `x` and `y` data, the `color` and `name` of the trace, which axis the trace is bound to. `data` is an unnamed list.
146146

@@ -189,7 +189,7 @@ str(fig$x$layout$plot_bgcolor) # the background color of the plot is "rgb(229,22
189189
str(fig$x$layout$legend)
190190
```
191191

192-
Each of these properties was extracted and translated from the original ggplot2 figure. [View all of the possible attributes](https://plot.ly/r/reference).
192+
Each of these properties was extracted and translated from the original ggplot2 figure. [View all of the possible attributes](https://plotly.com/r/reference).
193193

194194
You can edit or add these attributes and then send the figure to Plotly. Let's add custom hover text (`text`), change the legend names (`name`) add a title (`layout$title`)
195195

@@ -217,7 +217,7 @@ fig
217217

218218
#### Resources
219219

220-
- [ggplot2 examples](https://plot.ly/ggplot2)
221-
- [Plotly's native R DSL](https://plot.ly/r)
222-
- [Plotly's declarative graph description reference](https://plot.ly/r/reference)
220+
- [ggplot2 examples](https://plotly.com/ggplot2)
221+
- [Plotly's native R DSL](https://plotly.com/r)
222+
- [Plotly's declarative graph description reference](https://plotly.com/r/reference)
223223
- [`plotly` R package on GitHub](https://github.com/ropensci/plotly)

ggplot2/2017-04-21-geom_quantile.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ Reference: [ggplot2 docs](http://ggplot2.tidyverse.org/reference/geom_quantile.h
8181

8282
### Reference
8383

84-
See [https://plot.ly/r/reference](https://plot.ly/r/reference) for more information and options!
84+
See [https://plotly.com/r/reference](https://plotly.com/r/reference) for more information and options!

ggplot2/2017-04-21-geom_rug.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ Reference: [ggplot2 docs](http://ggplot2.tidyverse.org/reference/geom_rug.html#e
4444

4545
### Reference
4646

47-
See [https://plot.ly/r/reference](https://plot.ly/r/reference) for more information and options!
47+
See [https://plotly.com/r/reference](https://plotly.com/r/reference) for more information and options!

ggplot2/2017-04-21-geom_spoke.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Reference: [ggplot2 docs](http://ggplot2.tidyverse.org/reference/geom_spoke.html
3737

3838
### Reference
3939

40-
See [https://plot.ly/r/reference](https://plot.ly/r/reference) for more information and options!
40+
See [https://plotly.com/r/reference](https://plotly.com/r/reference) for more information and options!

ggplot2/2018-06-22-geom_sf.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ fig
4242

4343
### Using Native Plotly
4444

45-
Alternatively, you can use [`plot_ly`, `plot_geo`, or `plot_mapbox`](https://plot.ly/r/maps-sf/).
45+
Alternatively, you can use [`plot_ly`, `plot_geo`, or `plot_mapbox`](https://plotly.com/r/maps-sf/).
4646

4747
### Reference
4848

49-
See [https://plot.ly/r/reference/](https://plot.ly/r/reference/) for more information and chart attribute options! If you would like to read more on visualizing geo-spatial data with sf and ggplotly click [here](https://blog.cpsievert.me/2018/01/30/learning-improving-ggplotly-geom-sf/).
49+
See [https://plotly.com/r/reference/](https://plotly.com/r/reference/) for more information and chart attribute options! If you would like to read more on visualizing geo-spatial data with sf and ggplotly click [here](https://blog.cpsievert.me/2018/01/30/learning-improving-ggplotly-geom-sf/).

ggplot2/2019-07-30-geom_hex.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ output:
1717
knitr::opts_chunk$set(message = FALSE, warning=FALSE)
1818
```
1919
### Basic 2d Heatmap
20-
See also [geom_bin2d](https://plot.ly/ggplot2/geom_bin2d/) for a similar geom with rectangular bins. Note: facetting is supported in geom\_bin2d but not geom\_hex.
20+
See also [geom_bin2d](https://plotly.com/ggplot2/geom_bin2d/) for a similar geom with rectangular bins. Note: facetting is supported in geom\_bin2d but not geom\_hex.
2121

2222
Source: [Department of Canadian Heritage](https://open.canada.ca/data/en/dataset/a0bff264-1c80-41ee-aef9-e7da347c5158)
2323

r/2015-07-30-2D-Histogram.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ knitr::opts_chunk$set(message = FALSE, warning=FALSE)
1818
```
1919
#### Basic 2D Histogram
2020

21-
2D histograms require `x`/`y`, but in contrast to heatmaps, `z` is optional. If `z` is not provided, binning occurs in the browser (see [here](https://plot.ly/r/reference/#histogram2d-histnorm) for a list of binning options).
21+
2D histograms require `x`/`y`, but in contrast to heatmaps, `z` is optional. If `z` is not provided, binning occurs in the browser (see [here](https://plotly.com/r/reference/#histogram2d-histnorm) for a list of binning options).
2222

2323
```{r}
2424
# install.packages('mvtnorm')
@@ -36,7 +36,7 @@ fig2
3636
```
3737

3838
#### Colorscale
39-
If `z` is not provided, the only way to control coloring is through the [colorscale attribute](https://plot.ly/r/reference/#histogram2d-colorscale)
39+
If `z` is not provided, the only way to control coloring is through the [colorscale attribute](https://plotly.com/r/reference/#histogram2d-colorscale)
4040

4141
```{r}
4242
fig <- fig %>% add_histogram2d(colorscale = "Blues")

r/2015-07-30-3d-line-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ fig
120120

121121
#Reference
122122

123-
See [https://plot.ly/r/reference/#scatter3d](https://plot.ly/r/reference/#scatter3d) for more information and chart attribute options!
123+
See [https://plotly.com/r/reference/#scatter3d](https://plotly.com/r/reference/#scatter3d) for more information and chart attribute options!

r/2015-07-30-3d-scatter-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ fig
100100

101101
#Reference
102102

103-
See [https://plot.ly/r/reference/#scatter3d](https://plot.ly/r/reference/#scatter3d) for more information and chart attribute options!
103+
See [https://plotly.com/r/reference/#scatter3d](https://plotly.com/r/reference/#scatter3d) for more information and chart attribute options!

r/2015-07-30-3d-surface-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fig
6363
```
6464

6565
#### Configure Surface Contour Levels
66-
This example shows how to slice the surface graph on the desired position for each of x, y and z axis. [contours.x.start](https://plot.ly/r/reference/#surface-contours-x-start) sets the starting contour level value, `end` sets the end of it, and `size` sets the step between each contour level.
66+
This example shows how to slice the surface graph on the desired position for each of x, y and z axis. [contours.x.start](https://plotly.com/r/reference/#surface-contours-x-start) sets the starting contour level value, `end` sets the end of it, and `size` sets the step between each contour level.
6767

6868
```{r}
6969

r/2015-07-30-bar-charts.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ fig
338338

339339
### Horizontal Bar Chart
340340

341-
See examples of horizontal bar charts [here](https://plot.ly/r/horizontal-bar-charts/).
341+
See examples of horizontal bar charts [here](https://plotly.com/r/horizontal-bar-charts/).
342342

343343
#Reference
344344

345-
See [https://plot.ly/r/reference/#bar](https://plot.ly/r/reference/#bar) for more information and chart attribute options!
345+
See [https://plotly.com/r/reference/#bar](https://plotly.com/r/reference/#bar) for more information and chart attribute options!
346346

r/2015-07-30-box-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ fig
101101

102102
### Reference
103103

104-
See [https://plot.ly/r/reference/#box](https://plot.ly/r/reference/#box) for more information and chart attribute options!
104+
See [https://plotly.com/r/reference/#box](https://plotly.com/r/reference/#box) for more information and chart attribute options!

r/2015-07-30-bubble-charts.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ fig
136136
To scale the bubble size, use the attribute sizeref. We recommend using the following formula to calculate a sizeref value:<br><br>
137137
sizeref = 2. * max(array of size values) / (desired maximum marker size ** 2)
138138
<br><br>
139-
Note that setting sizeref to a value greater than 1 decreases the rendered marker sizes, while setting sizeref to less than 1 increases the rendered marker sizes. See [https://plot.ly/python/reference/#scatter-marker-sizeref](https://plot.ly/python/reference/#scatter-marker-sizeref) for more information.
139+
Note that setting sizeref to a value greater than 1 decreases the rendered marker sizes, while setting sizeref to less than 1 increases the rendered marker sizes. See [https://plotly.com/python/reference/#scatter-marker-sizeref](https://plotly.com/python/reference/#scatter-marker-sizeref) for more information.
140140
<br><br>
141-
Additionally, we recommend setting the sizemode attribute: [https://plot.ly/python/reference/#scatter-marker-sizemode](https://plot.ly/python/reference/#scatter-marker-sizemode) to area.
141+
Additionally, we recommend setting the sizemode attribute: [https://plotly.com/python/reference/#scatter-marker-sizemode](https://plotly.com/python/reference/#scatter-marker-sizemode) to area.
142142

143143

144144
```{r}
@@ -256,4 +256,4 @@ fig
256256

257257
#Reference
258258

259-
See [https://plot.ly/r/reference/#scatter](https://plot.ly/r/reference/#scatter) for more information and chart attribute options!
259+
See [https://plotly.com/r/reference/#scatter](https://plotly.com/r/reference/#scatter) for more information and chart attribute options!

r/2015-07-30-contour-plots.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ fig
192192

193193
### Contour Colorscales
194194

195-
See [here](https://plot.ly/r/colorscales/) for more examples concerning colorscales!
195+
See [here](https://plotly.com/r/colorscales/) for more examples concerning colorscales!
196196

197197
### Reference
198198

199-
See [https://plot.ly/r/reference/#contour](https://plot.ly/r/reference/#contour) for more information and chart attribute options!
199+
See [https://plotly.com/r/reference/#contour](https://plotly.com/r/reference/#contour) for more information and chart attribute options!

r/2015-07-30-dumbbell-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ fig
3838

3939
#Reference
4040

41-
See [https://plot.ly/r/reference/#scatter](https://plot.ly/r/reference/#scatter) for more information and chart attribute options!
41+
See [https://plotly.com/r/reference/#scatter](https://plotly.com/r/reference/#scatter) for more information and chart attribute options!

r/2015-07-30-filled-area-plots.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ knitr::opts_chunk$set(message = FALSE, warning=FALSE)
1818
### Basic Filled Area Plot
1919

2020
To make an area plot with interior filling set `fill` to `"tozeroy"` in the call for the second trace.
21-
For more informations and options about the `fill` option checkout [https://plot.ly/r/reference/#scatter-fill](https://plot.ly/r/reference/#scatter-fill)
21+
For more informations and options about the `fill` option checkout [https://plotly.com/r/reference/#scatter-fill](https://plotly.com/r/reference/#scatter-fill)
2222

2323
```{r}
2424
library(plotly)
@@ -152,7 +152,7 @@ fig
152152
### Interior Filling for Area Chart
153153

154154
To make an area plot with interior filling set `fill` to `"tonexty"` in the call for the second trace.
155-
For more informations and options about the `fill` option checkout [https://plot.ly/r/reference/#scatter-fill](https://plot.ly/r/reference/#scatter-fill)
155+
For more informations and options about the `fill` option checkout [https://plotly.com/r/reference/#scatter-fill](https://plotly.com/r/reference/#scatter-fill)
156156

157157
```{r}
158158
library(plotly)
@@ -242,4 +242,4 @@ fig
242242

243243
#Reference
244244

245-
See [https://plot.ly/r/reference/#area](https://plot.ly/r/reference/#area) for more information and chart attribute options!
245+
See [https://plotly.com/r/reference/#area](https://plotly.com/r/reference/#area) for more information and chart attribute options!

r/2015-07-30-getting-started.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ Click on legend entries to hide/show traces, click-and-drag on the chart to zoom
6161

6262
## Next Steps
6363

64-
Once you have installed the `plotly` R package, learn more about the [fundamentals of making charts](https://plot.ly/r/plotly-fundamentals/) and start making [basic charts](https://plot.ly/r/basic-charts/).
64+
Once you have installed the `plotly` R package, learn more about the [fundamentals of making charts](https://plotly.com/r/plotly-fundamentals/) and start making [basic charts](https://plotly.com/r/basic-charts/).

r/2015-07-30-graphing-multiple-chart-types.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ fig
106106

107107
#Reference
108108

109-
See [https://plot.ly/r/reference/](https://plot.ly/r/reference/) for more information and chart attribute options!
109+
See [https://plotly.com/r/reference/](https://plotly.com/r/reference/) for more information and chart attribute options!

r/2015-07-30-histograms.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fig
9393
```
9494
### Share bins between histograms
9595

96-
In this example both histograms have a compatible bin settings using [bingroup](https://plot.ly/r/reference/#histogram-bingroup) attribute.
96+
In this example both histograms have a compatible bin settings using [bingroup](https://plotly.com/r/reference/#histogram-bingroup) attribute.
9797
```{r}
9898
library(plotly)
9999
@@ -113,7 +113,7 @@ fig <- fig %>% layout(
113113
114114
fig
115115
```
116-
Note that traces on the same subplot, and with the same `barmode` ("stack", "relative", "group") are forced into the same `bingroup`, however traces with `barmode = "overlay"` and on different axes (of the same axis type) can have compatible bin settings. Histogram and [histogram2d](https://plot.ly/r/2D-Histogram/) trace can share the same `bingroup`.
116+
Note that traces on the same subplot, and with the same `barmode` ("stack", "relative", "group") are forced into the same `bingroup`, however traces with `barmode = "overlay"` and on different axes (of the same axis type) can have compatible bin settings. Histogram and [histogram2d](https://plotly.com/r/2D-Histogram/) trace can share the same `bingroup`.
117117

118118
```{r}
119119
library(plotly)
@@ -134,4 +134,4 @@ fig
134134
```
135135
### Reference
136136

137-
See [https://plot.ly/r/reference/#histogram](https://plot.ly/r/reference/#histogram) for more information and chart attribute options!
137+
See [https://plotly.com/r/reference/#histogram](https://plotly.com/r/reference/#histogram) for more information and chart attribute options!

r/2015-07-30-legend.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ fig
167167

168168
### Size of Legend Items
169169

170-
In this example, since the [itemsizing](https://plot.ly/r/reference/#layout-legend-itemsizing) attribute is set to `constant`, the size of legend items symbols remains the same, regardless of how tiny/huge the bubbles are in the graph.
170+
In this example, since the [itemsizing](https://plotly.com/r/reference/#layout-legend-itemsizing) attribute is set to `constant`, the size of legend items symbols remains the same, regardless of how tiny/huge the bubbles are in the graph.
171171

172172
```{r}
173173
library(plotly)
@@ -285,4 +285,4 @@ fig
285285

286286
Reference
287287

288-
See [https://plot.ly/r/reference/#layout-legend](https://plot.ly/r/reference/#layout-legend) for more information and chart attribute options!
288+
See [https://plotly.com/r/reference/#layout-legend](https://plotly.com/r/reference/#layout-legend) for more information and chart attribute options!

r/2015-07-30-line-and-scatter.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fig <- fig %>% add_trace(y = ~trace_2, name = 'trace 2', mode = 'markers')
8282
fig
8383
```
8484

85-
See more examples of line charts [here](https://plot.ly/r/line-charts/).
85+
See more examples of line charts [here](https://plotly.com/r/line-charts/).
8686

8787
### Qualitative Colorscales
8888

@@ -177,4 +177,4 @@ fig
177177

178178
#Reference
179179

180-
See [https://plot.ly/r/reference/#scatter](https://plot.ly/r/reference/#scatter) for more information and chart attribute options!
180+
See [https://plotly.com/r/reference/#scatter](https://plotly.com/r/reference/#scatter) for more information and chart attribute options!

r/2015-07-30-polar-chart.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ knitr::opts_chunk$set(message = FALSE, warning=FALSE)
1919

2020
### Legacy Plots
2121

22-
These polar charts are legacy and will likely be deprecated in [Plotly 2.0](https://github.com/plotly/plotly.js/issues/420). Please see the new `scatterpolar` and `scatterpolargl` [trace types](https://plot.ly/r/polar-chart/) for latest and greatest in Plotly polar coordinates.
22+
These polar charts are legacy and will likely be deprecated in [Plotly 2.0](https://github.com/plotly/plotly.js/issues/420). Please see the new `scatterpolar` and `scatterpolargl` [trace types](https://plotly.com/r/polar-chart/) for latest and greatest in Plotly polar coordinates.
2323

2424
### Polar Scatter Chart
2525

@@ -54,4 +54,4 @@ fig
5454
```
5555

5656
### Reference
57-
See [https://plot.ly/python/reference/#area](https://plot.ly/python/reference/#area) for more information and chart attribute options!
57+
See [https://plotly.com/python/reference/#area](https://plotly.com/python/reference/#area) for more information and chart attribute options!

r/2015-07-30-text-and-annotations.Rmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fig <- fig %>% layout(title = 'Primates Brain and Body Weight',
3939
fig
4040
```
4141

42-
See more options on the textposition argument [here](https://plot.ly/r/reference/#scatter-textposition).
42+
See more options on the textposition argument [here](https://plotly.com/r/reference/#scatter-textposition).
4343

4444
### Styling Text
4545

@@ -395,9 +395,9 @@ fig
395395
```
396396
### Customize Displayed Text with a Text Template
397397

398-
To show an arbitrary text in your chart you can use [texttemplate](https://plot.ly/r/reference/#pie-texttemplate), which is a template string used for rendering the information, and will override [textinfo](https://plot.ly/r/reference/#treemap-textinfo).
398+
To show an arbitrary text in your chart you can use [texttemplate](https://plotly.com/r/reference/#pie-texttemplate), which is a template string used for rendering the information, and will override [textinfo](https://plotly.com/r/reference/#treemap-textinfo).
399399
This template string can include `variables` in %{variable} format, `numbers` in [d3-format's syntax](https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_forma), and `date` in [d3-time-fomrat's syntax](https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md#format).
400-
`texttemplate` customizes the text that appears on your plot vs. [hovertemplate](https://plot.ly/r/reference/#pie-hovertemplate) that customizes the tooltip text.
400+
`texttemplate` customizes the text that appears on your plot vs. [hovertemplate](https://plotly.com/r/reference/#pie-hovertemplate) that customizes the tooltip text.
401401

402402
```{r}
403403
library(plotly)
@@ -413,7 +413,7 @@ fig
413413

414414
### Customize Text Template
415415

416-
The following example uses [textfont](https://plot.ly/r/reference/#scatterternary-textfont) to customize the added text.
416+
The following example uses [textfont](https://plotly.com/r/reference/#scatterternary-textfont) to customize the added text.
417417

418418
```{r}
419419
library(plotly)
@@ -433,8 +433,8 @@ fig
433433
```
434434
### Set Date in Text Template
435435

436-
The following example shows how to show date by setting [axis.type](https://plot.ly/r/reference/#layout-yaxis-type) in [funnel charts](https://plot.ly/r/funnel-charts/).
437-
As you can see [textinfo](https://plot.ly/r/reference/#funnel-textinfo) and [texttemplate](https://plot.ly/r/reference/#funnel-texttemplate) have the same functionality when you want to determine 'just' the trace information on the graph.
436+
The following example shows how to show date by setting [axis.type](https://plotly.com/r/reference/#layout-yaxis-type) in [funnel charts](https://plotly.com/r/funnel-charts/).
437+
As you can see [textinfo](https://plotly.com/r/reference/#funnel-textinfo) and [texttemplate](https://plotly.com/r/reference/#funnel-texttemplate) have the same functionality when you want to determine 'just' the trace information on the graph.
438438

439439
```{r}
440440
fig <- plot_ly()
@@ -499,4 +499,4 @@ fig
499499

500500
#Reference
501501

502-
See [https://plot.ly/r/reference/#layout-annotations](https://plot.ly/r/reference/#layout-annotations) for more information and chart attribute options!
502+
See [https://plotly.com/r/reference/#layout-annotations](https://plotly.com/r/reference/#layout-annotations) for more information and chart attribute options!

0 commit comments

Comments
 (0)