From 5d519fdbac8feef92bad85fd977f4e5b38c63407 Mon Sep 17 00:00:00 2001 From: alexander-daniel Date: Wed, 28 Jan 2015 10:18:17 -0500 Subject: [PATCH 1/7] added showcase example placeholders --- hard-coded/config.json | 6 ++-- hard-coded/showcase/config.json | 4 +++ .../config.json | 5 +++ .../showcase-example-placeholder/config.json | 6 ++++ .../showcase-example-placeholder/model.json | 34 +++++++++++++++++++ 5 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 hard-coded/showcase/config.json create mode 100644 hard-coded/showcase/showcase-subsection-placeholder/config.json create mode 100644 hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json create mode 100644 hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json diff --git a/hard-coded/config.json b/hard-coded/config.json index ef7605e6c623..d670344f58ee 100644 --- a/hard-coded/config.json +++ b/hard-coded/config.json @@ -7,6 +7,8 @@ "streaming", "layout", "file-settings", - "specialty" + "specialty", + "showcase", + "callbacks" ] -} \ No newline at end of file +} diff --git a/hard-coded/showcase/config.json b/hard-coded/showcase/config.json new file mode 100644 index 000000000000..8e7f32f3a560 --- /dev/null +++ b/hard-coded/showcase/config.json @@ -0,0 +1,4 @@ +{ + "has_thumbnail": false, + "name": "Showcase" +} diff --git a/hard-coded/showcase/showcase-subsection-placeholder/config.json b/hard-coded/showcase/showcase-subsection-placeholder/config.json new file mode 100644 index 000000000000..2fb8fd545dcd --- /dev/null +++ b/hard-coded/showcase/showcase-subsection-placeholder/config.json @@ -0,0 +1,5 @@ +{ + "has_thumbnail": false, + "name": "Showcase", + "relative_url": "javascript-graphing-library/showcase/" +} diff --git a/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json b/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json new file mode 100644 index 000000000000..1cb36ab1e548 --- /dev/null +++ b/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json @@ -0,0 +1,6 @@ +{ + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder" +} diff --git a/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json b/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json new file mode 100644 index 000000000000..dea2447a25cf --- /dev/null +++ b/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json @@ -0,0 +1,34 @@ +{ + "data": [ + { + "y": [ + 0, + 2, + 3, + 5 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tozeroy" + }, + { + "y": [ + 3, + 5, + 1, + 7 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tonexty" + } + ] +} From 0fcfd18eb87f41908ccd0287adab7b9831a4fad3 Mon Sep 17 00:00:00 2001 From: alexander-daniel Date: Wed, 28 Jan 2015 10:21:59 -0500 Subject: [PATCH 2/7] added showcase for js libby --- .../plotly_js/showcase_example_placeholder.js | 14 +++++++ .../plotly_js/code.txt | 14 +++++++ ids.json | 1 + tree.json | 41 ++++++++++++++++++- 4 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 auto-docs/executables/plotly_js/showcase_example_placeholder.js create mode 100644 auto-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt diff --git a/auto-docs/executables/plotly_js/showcase_example_placeholder.js b/auto-docs/executables/plotly_js/showcase_example_placeholder.js new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/executables/plotly_js/showcase_example_placeholder.js @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt b/auto-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/ids.json b/ids.json index c01d199d3891..ea88c973d1ff 100644 --- a/ids.json +++ b/ids.json @@ -162,6 +162,7 @@ "shiny-ggplot2", "shiny-r", "show-legend", + "showcase-example-placeholder", "simple-3d-scatter", "simple-annotation", "simple-contour", diff --git a/tree.json b/tree.json index e7ee1f30a4af..e20492445cb0 100644 --- a/tree.json +++ b/tree.json @@ -6250,6 +6250,43 @@ "is_leaf": false, "path": "hard-coded/multiple-axes-insets-subplots" }, + "showcase": { + "branches": { + "showcase-subsection-placeholder": { + "branches": { + "showcase-example-placeholder": { + "config": { + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder" + }, + "id": "showcase-example-placeholder", + "is_leaf": true, + "path": "hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder", + "plotly_js": "auto-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt", + "type": "model", + "url": "https://plot.ly/~TestBot/815" + } + }, + "config": { + "has_thumbnail": false, + "name": "Showcase", + "relative_url": "javascript-graphing-library/showcase/" + }, + "id": "showcase-subsection-placeholder", + "is_leaf": false, + "path": "hard-coded/showcase/showcase-subsection-placeholder" + } + }, + "config": { + "has_thumbnail": false, + "name": "Showcase" + }, + "id": "showcase", + "is_leaf": false, + "path": "hard-coded/showcase" + }, "specialty": { "branches": { "fft": { @@ -6411,7 +6448,9 @@ "streaming", "layout", "file-settings", - "specialty" + "specialty", + "showcase", + "callbacks" ] }, "id": "hard-coded", From e56312b180f78db56ac917be8c88f02e55c1da5b Mon Sep 17 00:00:00 2001 From: alexander-daniel Date: Wed, 28 Jan 2015 10:26:34 -0500 Subject: [PATCH 3/7] added showcase for js libby --- .../config.json | 2 +- reports/test-report.txt | 1 + .../bar/gg-basic-bar/ggplot2/code.txt | 5 ++- .../facets/facet_wrap/ggplot2/code.txt | 8 ++-- .../functions/x-squared/ggplot2/code.txt | 8 ++-- .../geom_polygon_1/ggplot2/code.txt | 7 +++- .../gg-themes/few/ggplot2/code.txt | 4 +- .../gg-themes/igray/ggplot2/code.txt | 4 +- .../gg-themes/tableau/ggplot2/code.txt | 4 +- .../histogram/geom_histogram/ggplot2/code.txt | 8 +++- .../gg-alpha/ggplot2/code.txt | 4 +- .../gg-basic-line/ggplot2/code.txt | 4 +- .../gg-basic-scatter/ggplot2/code.txt | 4 +- .../gg-geom_line/ggplot2/code.txt | 8 +++- .../gg-geom_path/ggplot2/code.txt | 8 +++- .../gg-geom_point/ggplot2/code.txt | 7 +++- .../gg-geom_segment/ggplot2/code.txt | 6 ++- .../gg-line-scatter/ggplot2/code.txt | 7 +++- .../line_shapes/geom_step/ggplot2/code.txt | 7 +++- .../maps/canadian-cities/ggplot2/code.txt | 10 +++-- .../api-docs/references/plotly_js.json | 28 +++++++++++++ .../plotly_js/code.txt | 14 +++++++ .../images/showcase-example-placeholder.png | Bin 0 -> 25136 bytes tree.json | 39 ++++++++++++++++++ 24 files changed, 163 insertions(+), 34 deletions(-) create mode 100644 test-published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt create mode 100644 test-published/images/showcase-example-placeholder.png diff --git a/hard-coded/showcase/showcase-subsection-placeholder/config.json b/hard-coded/showcase/showcase-subsection-placeholder/config.json index 2fb8fd545dcd..7ef122b280ea 100644 --- a/hard-coded/showcase/showcase-subsection-placeholder/config.json +++ b/hard-coded/showcase/showcase-subsection-placeholder/config.json @@ -1,5 +1,5 @@ { "has_thumbnail": false, "name": "Showcase", - "relative_url": "javascript-graphing-library/showcase/" + "relative_url": "showcase" } diff --git a/reports/test-report.txt b/reports/test-report.txt index b1a3ecbcd9fe..f34e132e0063 100644 --- a/reports/test-report.txt +++ b/reports/test-report.txt @@ -162,6 +162,7 @@ Complete examples: shiny-ggplot2 shiny-r show-legend + showcase-example-placeholder simple-3d-scatter simple-annotation simple-contour diff --git a/test-published/api-docs/chart-types/bar/gg-basic-bar/ggplot2/code.txt b/test-published/api-docs/chart-types/bar/gg-basic-bar/ggplot2/code.txt index 7bed3f4dca9d..1bf6b974c0b9 100644 --- a/test-published/api-docs/chart-types/bar/gg-basic-bar/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/bar/gg-basic-bar/ggplot2/code.txt @@ -3,6 +3,8 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + # Consider the following data frame researchers <- data.frame( country = c("Canada", "Canada", "Germany", "USA"), @@ -13,5 +15,6 @@ researchers <- data.frame( # Let us plot the number of papers (y) per name (x) plt <- ggplot(researchers, aes(x = name, y = papers)) + geom_bar(stat = "identity") -out <- py$ggplotly(plt) +out <- py$ggplotly(plt, kwargs=list(filename="gg-basic-bar", fileopt="overwrite")) + plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/facets/facet_wrap/ggplot2/code.txt b/test-published/api-docs/chart-types/facets/facet_wrap/ggplot2/code.txt index 72d6ac5013ff..32bad31427e9 100644 --- a/test-published/api-docs/chart-types/facets/facet_wrap/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/facets/facet_wrap/ggplot2/code.txt @@ -4,9 +4,11 @@ require(lattice) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + w <- ggplot(data=barley, aes(x=yield, y=variety, color=year)) + - geom_point() + - facet_wrap(~site) + geom_point() + + facet_wrap(~site) -out <- py$ggplotly(w) +out <- py$ggplotly(w, kwargs=list(filename="facet_wrap", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/functions/x-squared/ggplot2/code.txt b/test-published/api-docs/chart-types/functions/x-squared/ggplot2/code.txt index a4ea0c495292..a995d7c016ae 100644 --- a/test-published/api-docs/chart-types/functions/x-squared/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/functions/x-squared/ggplot2/code.txt @@ -3,12 +3,14 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + eq <- function(x) {x*x} tmp <- data.frame(x=1:50, y=eq(1:50)) -p <- qplot(x, y, data=tmp, xlab="X-axis", ylab="Y-axis") -c <- stat_function(fun=eq) +p <- qplot(x, y, data=tmp, xlab="X-axis", ylab="Y-axis") + + stat_function(fun=eq) -out <- py$ggplotly(p + c) +out <- py$ggplotly(p, kwargs=list(filename="x-squared", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/geom_polygon/geom_polygon_1/ggplot2/code.txt b/test-published/api-docs/chart-types/geom_polygon/geom_polygon_1/ggplot2/code.txt index 7067a840ac84..93faf31bd891 100644 --- a/test-published/api-docs/chart-types/geom_polygon/geom_polygon_1/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/geom_polygon/geom_polygon_1/ggplot2/code.txt @@ -3,6 +3,8 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + ids <- factor(c("1.1", "2.1", "1.2", "2.2", "1.3", "2.3")) values <- data.frame( @@ -20,7 +22,8 @@ positions <- data.frame( datapoly <- merge(values, positions, by=c("id")) -(p <- ggplot(datapoly, aes(x=x, y=y)) + geom_polygon(aes(fill=value, group=id))) +p <- ggplot(datapoly, aes(x=x, y=y)) + + geom_polygon(aes(fill=value, group=id)) -out <- py$ggplotly(p) +out <- py$ggplotly(p, kwargs=list(filename="geom_polygon_1", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/gg-themes/few/ggplot2/code.txt b/test-published/api-docs/chart-types/gg-themes/few/ggplot2/code.txt index 6ad68c687d95..eabc22209ff3 100644 --- a/test-published/api-docs/chart-types/gg-themes/few/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/gg-themes/few/ggplot2/code.txt @@ -4,10 +4,12 @@ library("ggthemes") # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + dsamp <- diamonds[sample(nrow(diamonds), 1000), ] few <- (qplot(carat, price, data = dsamp, colour = cut) + theme_few() + scale_colour_few()) -out <- py$ggplotly(few) +out <- py$ggplotly(few, kwargs=list(filename="few", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/gg-themes/igray/ggplot2/code.txt b/test-published/api-docs/chart-types/gg-themes/igray/ggplot2/code.txt index 594284df673f..833fa49a991a 100644 --- a/test-published/api-docs/chart-types/gg-themes/igray/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/gg-themes/igray/ggplot2/code.txt @@ -4,9 +4,11 @@ library("ggthemes") # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + dsamp <- diamonds[sample(nrow(diamonds), 1000), ] gray <- (qplot(carat, price, data = dsamp, colour = cut) + theme_igray()) -out <- py$ggplotly(gray) +out <- py$ggplotly(gray, kwargs=list(filename="igray", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/gg-themes/tableau/ggplot2/code.txt b/test-published/api-docs/chart-types/gg-themes/tableau/ggplot2/code.txt index 960700d1aa9d..a798677f04d6 100644 --- a/test-published/api-docs/chart-types/gg-themes/tableau/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/gg-themes/tableau/ggplot2/code.txt @@ -4,10 +4,12 @@ library("ggthemes") # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + dsamp <- diamonds[sample(nrow(diamonds), 1000), ] tableau <- (qplot(carat, price, data = dsamp, colour = cut) + theme_igray() + scale_colour_tableau()) -out <- py$ggplotly(tableau) +out <- py$ggplotly(tableau, kwargs=list(filename="tableau", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/histogram/geom_histogram/ggplot2/code.txt b/test-published/api-docs/chart-types/histogram/geom_histogram/ggplot2/code.txt index 83500688f6aa..cda7011147b2 100644 --- a/test-published/api-docs/chart-types/histogram/geom_histogram/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/histogram/geom_histogram/ggplot2/code.txt @@ -3,7 +3,11 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api -m <- ggplot(movies, aes(x=rating)) -out <- py$ggplotly(m + geom_histogram(aes(weight = votes))) +py <- plotly() + +m <- ggplot(movies, aes(x=rating)) + + geom_histogram(aes(weight = votes)) + +out <- py$ggplotly(m, kwargs=list(filename="geom_histogram", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-alpha/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-alpha/ggplot2/code.txt index 31cd816e92e8..457e8e0ed0d1 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-alpha/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-alpha/ggplot2/code.txt @@ -3,8 +3,10 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + prettyPlot <- ggplot(data=diamonds, aes(x=carat, y=price, colour=clarity)) prettyPlot <- prettyPlot + geom_point(alpha = 1/10) -out <- py$ggplotly(prettyPlot) +out <- py$ggplotly(prettyPlot, kwargs=list(filename="gg-alpha", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-basic-line/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-basic-line/ggplot2/code.txt index 798f1257be5f..b925ba839084 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-basic-line/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-basic-line/ggplot2/code.txt @@ -3,6 +3,8 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + orange <- qplot( age, circumference, @@ -10,5 +12,5 @@ orange <- qplot( colour = Tree, geom = "line") -out <- py$ggplotly(orange) +out <- py$ggplotly(orange, kwargs=list(filename="gg-basic-line", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-basic-scatter/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-basic-scatter/ggplot2/code.txt index 9b5da8e6d347..8fd18899c278 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-basic-scatter/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-basic-scatter/ggplot2/code.txt @@ -3,7 +3,9 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + ggiris <- qplot(Petal.Width, Sepal.Length, data = iris, color = Species) -out <- py$ggplotly(ggiris) +out <- py$ggplotly(ggiris, kwargs=list(filename="gg-basic-scatter", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_line/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_line/ggplot2/code.txt index 774a3f529c96..635b691bb208 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_line/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_line/ggplot2/code.txt @@ -4,12 +4,16 @@ library(plyr) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + mry <- do.call(rbind, by(movies, round(movies$rating), function(df) { nums <- tapply(df$length, df$year, length) data.frame(rating=round(df$rating[1]), year = as.numeric(names(nums)), number=as.vector(nums)) })) -p <- ggplot(mry, aes(x=year, y=number, group=rating)) -out <- py$ggplotly(p + geom_line(aes(colour = rating)) + scale_colour_gradient(low="red")) +p <- ggplot(mry, aes(x=year, y=number, group=rating)) + + geom_line(aes(colour = rating)) + + scale_colour_gradient(low="red") +out <- py$ggplotly(p, kwargs=list(filename="gg-geom_line", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_path/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_path/ggplot2/code.txt index 7420d57df8a4..62470ecb4384 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_path/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_path/ggplot2/code.txt @@ -4,8 +4,12 @@ library(plyr) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + myear <- ddply(movies, .(year), colwise(mean, .(length, rating))) -p <- ggplot(myear, aes(length, rating)) -out <- py$ggplotly(p + geom_path(colour='green') + scale_size(range = c(1, 3))) +p <- ggplot(myear, aes(length, rating)) + + geom_path(colour='green') + + scale_size(range = c(1, 3)) +out <- py$ggplotly(p, kwargs=list(filename="gg-geom_path", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_point/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_point/ggplot2/code.txt index 4556324a2713..ee1ab00ab0fe 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_point/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_point/ggplot2/code.txt @@ -3,7 +3,10 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api -p <- ggplot(mtcars, aes(wt, mpg)) -out <- py$ggplotly(p + geom_point(aes(colour = factor(cyl)))) +py <- plotly() + +p <- ggplot(mtcars, aes(wt, mpg)) + + geom_point(aes(colour = factor(cyl))) +out <- py$ggplotly(p, kwargs=list(filename="gg-geom_point", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_segment/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_segment/ggplot2/code.txt index 135c0592cd1a..4c4b67c807d5 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-geom_segment/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-geom_segment/ggplot2/code.txt @@ -3,7 +3,9 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api -p <- ggplot(seals, aes(x = long, y = lat)) +py <- plotly() -out <- py$ggplotly((p <- p + geom_segment(aes(xend = long + delta_long, yend = lat + delta_lat)))) +p <- ggplot(seals, aes(x = long, y = lat)) + + geom_segment(aes(xend = long + delta_long, yend = lat + delta_lat)) +out <- py$ggplotly(p, kwargs=list(filename="gg-geom_segment", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_and_scatter/gg-line-scatter/ggplot2/code.txt b/test-published/api-docs/chart-types/line_and_scatter/gg-line-scatter/ggplot2/code.txt index 2ed33610eae4..e8035d43aafa 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/gg-line-scatter/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/gg-line-scatter/ggplot2/code.txt @@ -3,6 +3,8 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + model <- lm(mpg ~ wt + factor(cyl), data=mtcars) grid <- with(mtcars, expand.grid( wt = seq(min(wt), max(wt), length = 20), @@ -11,6 +13,7 @@ grid <- with(mtcars, expand.grid( grid$mpg <- stats::predict(model, newdata=grid) -viz2 <- qplot(wt, mpg, data=mtcars, colour=factor(cyl)) + geom_line(data=grid) -out <- py$ggplotly(viz2) +viz2 <- qplot(wt, mpg, data=mtcars, colour=factor(cyl)) + + geom_line(data=grid) +out <- py$ggplotly(viz2, kwargs=list(filename="gg-line-scatter", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/line_shapes/geom_step/ggplot2/code.txt b/test-published/api-docs/chart-types/line_shapes/geom_step/ggplot2/code.txt index 7e6184a048ef..349337b42a60 100644 --- a/test-published/api-docs/chart-types/line_shapes/geom_step/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/line_shapes/geom_step/ggplot2/code.txt @@ -3,8 +3,11 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + df <- data.frame(x=sort(rnorm(47))) -p <- ggplot(df, aes(seq_along(x), x)) +p <- ggplot(df, aes(seq_along(x), x)) + + geom_step() -out <- py$ggplotly(p + geom_step()) +out <- py$ggplotly(p, kwargs=list(filename="geom_step", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/chart-types/maps/canadian-cities/ggplot2/code.txt b/test-published/api-docs/chart-types/maps/canadian-cities/ggplot2/code.txt index 2bf90e9afd55..614d6d781f4d 100644 --- a/test-published/api-docs/chart-types/maps/canadian-cities/ggplot2/code.txt +++ b/test-published/api-docs/chart-types/maps/canadian-cities/ggplot2/code.txt @@ -3,11 +3,13 @@ library(plotly) # Learn about API authentication here: {{BASE_URL}}/r/getting-started # Find your api_key here: {{BASE_URL}}/settings/api +py <- plotly() + data(canada.cities, package="maps") viz <- ggplot(canada.cities, aes(long, lat)) + - borders(regions="canada", name="borders") + - coord_equal() + - geom_point(aes(text=name, size=pop), colour="red", alpha=1/2, name="cities") + borders(regions="canada", name="borders") + + coord_equal() + + geom_point(aes(text=name, size=pop), colour="red", alpha=1/2, name="cities") -out <- py$ggplotly(viz) +out <- py$ggplotly(viz, kwargs=list(filename="canadian-cities", fileopt="overwrite")) plotly_url <- out$response$url diff --git a/test-published/api-docs/references/plotly_js.json b/test-published/api-docs/references/plotly_js.json index ea8d8e85edb8..145cd0c72af1 100644 --- a/test-published/api-docs/references/plotly_js.json +++ b/test-published/api-docs/references/plotly_js.json @@ -1729,6 +1729,34 @@ "name": "Layout Options", "parent": "hard-coded" }, + { + "branches": [ + { + "branches": [ + { + "code": "showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt", + "id": "showcase-example-placeholder", + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder", + "parent": "showcase-subsection-placeholder", + "type": "model", + "url": "https://plot.ly/~TestBot/815" + } + ], + "has_thumbnail": false, + "id": "showcase-subsection-placeholder", + "name": "Showcase", + "parent": "showcase", + "relative_url": "javascript-graphing-library/showcase/" + } + ], + "has_thumbnail": false, + "id": "showcase", + "name": "Showcase", + "parent": "hard-coded" + }, { "branches": [ { diff --git a/test-published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt b/test-published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/test-published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/test-published/images/showcase-example-placeholder.png b/test-published/images/showcase-example-placeholder.png new file mode 100644 index 0000000000000000000000000000000000000000..7715bbdf219ed27a2386ffe84dfc32f9244edd95 GIT binary patch literal 25136 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 yYrNv3 Date: Wed, 28 Jan 2015 10:29:54 -0500 Subject: [PATCH 4/7] showcase publish --- published/api-docs/references/plotly_js.json | 28 ++++++++++++++++++ .../plotly_js/code.txt | 14 +++++++++ .../images/showcase-example-placeholder.png | Bin 0 -> 25136 bytes reports/publish-report.txt | 1 + .../api-docs/references/plotly_js.json | 2 +- tree.json | 4 ++- 6 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt create mode 100644 published/images/showcase-example-placeholder.png diff --git a/published/api-docs/references/plotly_js.json b/published/api-docs/references/plotly_js.json index 04dd6e2fe732..440384cefc20 100644 --- a/published/api-docs/references/plotly_js.json +++ b/published/api-docs/references/plotly_js.json @@ -1729,6 +1729,34 @@ "name": "Layout Options", "parent": "hard-coded" }, + { + "branches": [ + { + "branches": [ + { + "code": "showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt", + "id": "showcase-example-placeholder", + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder", + "parent": "showcase-subsection-placeholder", + "type": "model", + "url": "https://plot.ly/~PlotBot/197" + } + ], + "has_thumbnail": false, + "id": "showcase-subsection-placeholder", + "name": "Showcase", + "parent": "showcase", + "relative_url": "showcase" + } + ], + "has_thumbnail": false, + "id": "showcase", + "name": "Showcase", + "parent": "hard-coded" + }, { "branches": [ { diff --git a/published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt b/published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/published/api-docs/showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/published/images/showcase-example-placeholder.png b/published/images/showcase-example-placeholder.png new file mode 100644 index 0000000000000000000000000000000000000000..7715bbdf219ed27a2386ffe84dfc32f9244edd95 GIT binary patch literal 25136 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 yYrNv3 Date: Wed, 28 Jan 2015 12:33:50 -0500 Subject: [PATCH 5/7] showcase showdown --- ...high_dimension_data_example_placeholder.js | 14 ++ .../range_slider_example_placeholder.js | 14 ++ .../streaming_data_example_placeholder.js | 14 ++ .../style_controls_example_placeholder.js | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../config.json | 5 + .../config.json | 0 .../model.json | 0 .../config.json | 5 + .../config.json | 6 + .../model.json | 34 +++++ .../config.json | 5 - .../config.json | 5 + .../config.json | 6 + .../model.json | 34 +++++ .../config.json | 5 + .../config.json | 6 + .../model.json | 34 +++++ ids.json | 5 +- published/api-docs/references/plotly_js.json | 74 ++++++++++- .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ ...igh-dimension-data-example-placeholder.png | Bin 0 -> 25136 bytes .../range-slider-example-placeholder.png | Bin 0 -> 25136 bytes .../streaming-data-example-placeholder.png | Bin 0 -> 25136 bytes .../style-controls-example-placeholder.png | Bin 0 -> 25136 bytes reports/publish-report.txt | 5 +- reports/test-report.txt | 5 +- .../api-docs/references/plotly_js.json | 74 ++++++++++- .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ .../plotly_js/code.txt | 14 ++ ...igh-dimension-data-example-placeholder.png | Bin 0 -> 25136 bytes .../range-slider-example-placeholder.png | Bin 0 -> 25136 bytes .../streaming-data-example-placeholder.png | Bin 0 -> 25136 bytes .../style-controls-example-placeholder.png | Bin 0 -> 25136 bytes tree.json | 121 ++++++++++++++++-- 43 files changed, 617 insertions(+), 36 deletions(-) create mode 100644 auto-docs/executables/plotly_js/high_dimension_data_example_placeholder.js create mode 100644 auto-docs/executables/plotly_js/range_slider_example_placeholder.js create mode 100644 auto-docs/executables/plotly_js/streaming_data_example_placeholder.js create mode 100644 auto-docs/executables/plotly_js/style_controls_example_placeholder.js create mode 100644 auto-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt create mode 100644 auto-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt create mode 100644 auto-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt create mode 100644 auto-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt create mode 100644 hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json rename hard-coded/showcase/{showcase-subsection-placeholder/showcase-example-placeholder => high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder}/config.json (100%) rename hard-coded/showcase/{showcase-subsection-placeholder/showcase-example-placeholder => high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder}/model.json (100%) create mode 100644 hard-coded/showcase/range-slider-subsection-placeholder/config.json create mode 100644 hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/config.json create mode 100644 hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/model.json delete mode 100644 hard-coded/showcase/showcase-subsection-placeholder/config.json create mode 100644 hard-coded/showcase/streaming-data-subsection-placeholder/config.json create mode 100644 hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/config.json create mode 100644 hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/model.json create mode 100644 hard-coded/showcase/style-controls-subsection-placeholder/config.json create mode 100644 hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/config.json create mode 100644 hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/model.json create mode 100644 published/api-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt create mode 100644 published/api-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt create mode 100644 published/api-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt create mode 100644 published/api-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt create mode 100644 published/images/high-dimension-data-example-placeholder.png create mode 100644 published/images/range-slider-example-placeholder.png create mode 100644 published/images/streaming-data-example-placeholder.png create mode 100644 published/images/style-controls-example-placeholder.png create mode 100644 test-published/api-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt create mode 100644 test-published/api-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt create mode 100644 test-published/api-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt create mode 100644 test-published/api-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt create mode 100644 test-published/images/high-dimension-data-example-placeholder.png create mode 100644 test-published/images/range-slider-example-placeholder.png create mode 100644 test-published/images/streaming-data-example-placeholder.png create mode 100644 test-published/images/style-controls-example-placeholder.png diff --git a/auto-docs/executables/plotly_js/high_dimension_data_example_placeholder.js b/auto-docs/executables/plotly_js/high_dimension_data_example_placeholder.js new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/executables/plotly_js/high_dimension_data_example_placeholder.js @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/executables/plotly_js/range_slider_example_placeholder.js b/auto-docs/executables/plotly_js/range_slider_example_placeholder.js new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/executables/plotly_js/range_slider_example_placeholder.js @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/executables/plotly_js/streaming_data_example_placeholder.js b/auto-docs/executables/plotly_js/streaming_data_example_placeholder.js new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/executables/plotly_js/streaming_data_example_placeholder.js @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/executables/plotly_js/style_controls_example_placeholder.js b/auto-docs/executables/plotly_js/style_controls_example_placeholder.js new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/executables/plotly_js/style_controls_example_placeholder.js @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt b/auto-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt b/auto-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt b/auto-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/auto-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt b/auto-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/auto-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json b/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json new file mode 100644 index 000000000000..c14294ae4d02 --- /dev/null +++ b/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json @@ -0,0 +1,5 @@ +{ + "has_thumbnail": false, + "name": "High Dimension Data", + "relative_url": "high-dimension-data" +} diff --git a/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json b/hard-coded/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/config.json similarity index 100% rename from hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/config.json rename to hard-coded/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/config.json diff --git a/hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json b/hard-coded/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/model.json similarity index 100% rename from hard-coded/showcase/showcase-subsection-placeholder/showcase-example-placeholder/model.json rename to hard-coded/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/model.json diff --git a/hard-coded/showcase/range-slider-subsection-placeholder/config.json b/hard-coded/showcase/range-slider-subsection-placeholder/config.json new file mode 100644 index 000000000000..930f9004382c --- /dev/null +++ b/hard-coded/showcase/range-slider-subsection-placeholder/config.json @@ -0,0 +1,5 @@ +{ + "has_thumbnail": false, + "name": "Range Slider", + "relative_url": "range-slider" +} diff --git a/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/config.json b/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/config.json new file mode 100644 index 000000000000..1cb36ab1e548 --- /dev/null +++ b/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/config.json @@ -0,0 +1,6 @@ +{ + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder" +} diff --git a/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/model.json b/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/model.json new file mode 100644 index 000000000000..dea2447a25cf --- /dev/null +++ b/hard-coded/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/model.json @@ -0,0 +1,34 @@ +{ + "data": [ + { + "y": [ + 0, + 2, + 3, + 5 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tozeroy" + }, + { + "y": [ + 3, + 5, + 1, + 7 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tonexty" + } + ] +} diff --git a/hard-coded/showcase/showcase-subsection-placeholder/config.json b/hard-coded/showcase/showcase-subsection-placeholder/config.json deleted file mode 100644 index 7ef122b280ea..000000000000 --- a/hard-coded/showcase/showcase-subsection-placeholder/config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "has_thumbnail": false, - "name": "Showcase", - "relative_url": "showcase" -} diff --git a/hard-coded/showcase/streaming-data-subsection-placeholder/config.json b/hard-coded/showcase/streaming-data-subsection-placeholder/config.json new file mode 100644 index 000000000000..6ce425052578 --- /dev/null +++ b/hard-coded/showcase/streaming-data-subsection-placeholder/config.json @@ -0,0 +1,5 @@ +{ + "has_thumbnail": false, + "name": "Streaming Data", + "relative_url": "streaming-data" +} diff --git a/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/config.json b/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/config.json new file mode 100644 index 000000000000..1cb36ab1e548 --- /dev/null +++ b/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/config.json @@ -0,0 +1,6 @@ +{ + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder" +} diff --git a/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/model.json b/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/model.json new file mode 100644 index 000000000000..dea2447a25cf --- /dev/null +++ b/hard-coded/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/model.json @@ -0,0 +1,34 @@ +{ + "data": [ + { + "y": [ + 0, + 2, + 3, + 5 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tozeroy" + }, + { + "y": [ + 3, + 5, + 1, + 7 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tonexty" + } + ] +} diff --git a/hard-coded/showcase/style-controls-subsection-placeholder/config.json b/hard-coded/showcase/style-controls-subsection-placeholder/config.json new file mode 100644 index 000000000000..1bb0d7462955 --- /dev/null +++ b/hard-coded/showcase/style-controls-subsection-placeholder/config.json @@ -0,0 +1,5 @@ +{ + "has_thumbnail": false, + "name": "Style Controls", + "relative_url": "style-controls" +} diff --git a/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/config.json b/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/config.json new file mode 100644 index 000000000000..1cb36ab1e548 --- /dev/null +++ b/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/config.json @@ -0,0 +1,6 @@ +{ + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder" +} diff --git a/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/model.json b/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/model.json new file mode 100644 index 000000000000..dea2447a25cf --- /dev/null +++ b/hard-coded/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/model.json @@ -0,0 +1,34 @@ +{ + "data": [ + { + "y": [ + 0, + 2, + 3, + 5 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tozeroy" + }, + { + "y": [ + 3, + 5, + 1, + 7 + ], + "x": [ + 1, + 2, + 3, + 4 + ], + "fill": "tonexty" + } + ] +} diff --git a/ids.json b/ids.json index ea88c973d1ff..6a4960225651 100644 --- a/ids.json +++ b/ids.json @@ -69,6 +69,7 @@ "gg-line-scatter", "global-font", "grouped-bar", + "high-dimension-data-example-placeholder", "horizontal-histogram", "hover-chart-basic", "iframes", @@ -158,11 +159,11 @@ "python-replot1", "python-replot2", "random-walk", + "range-slider-example-placeholder", "shared-axes-subplots", "shiny-ggplot2", "shiny-r", "show-legend", - "showcase-example-placeholder", "simple-3d-scatter", "simple-annotation", "simple-contour", @@ -175,9 +176,11 @@ "stacked-subplots", "static-image-example", "static-image-example-matlab", + "streaming-data-example-placeholder", "streaming-example-placeholder", "style-annotation", "style-bar", + "style-controls-example-placeholder", "style-histogram", "styling-names", "tableau", diff --git a/published/api-docs/references/plotly_js.json b/published/api-docs/references/plotly_js.json index 440384cefc20..9ad84a4a8739 100644 --- a/published/api-docs/references/plotly_js.json +++ b/published/api-docs/references/plotly_js.json @@ -1734,22 +1734,82 @@ { "branches": [ { - "code": "showcase/showcase-subsection-placeholder/showcase-example-placeholder/plotly_js/code.txt", - "id": "showcase-example-placeholder", + "code": "showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt", + "id": "high-dimension-data-example-placeholder", "languages": [ "plotly_js" ], "name": "Showcase Example Placeholder", - "parent": "showcase-subsection-placeholder", + "parent": "high-dimension-data-subsection-placeholder", "type": "model", - "url": "https://plot.ly/~PlotBot/197" + "url": "https://plot.ly/~PlotBot/199" } ], "has_thumbnail": false, - "id": "showcase-subsection-placeholder", - "name": "Showcase", + "id": "high-dimension-data-subsection-placeholder", + "name": "High Dimension Data", "parent": "showcase", - "relative_url": "showcase" + "relative_url": "high-dimension-data" + }, + { + "branches": [ + { + "code": "showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt", + "id": "streaming-data-example-placeholder", + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder", + "parent": "streaming-data-subsection-placeholder", + "type": "model", + "url": "https://plot.ly/~PlotBot/200" + } + ], + "has_thumbnail": false, + "id": "streaming-data-subsection-placeholder", + "name": "Streaming Data", + "parent": "showcase", + "relative_url": "streaming-data" + }, + { + "branches": [ + { + "code": "showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt", + "id": "range-slider-example-placeholder", + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder", + "parent": "range-slider-subsection-placeholder", + "type": "model", + "url": "https://plot.ly/~PlotBot/198" + } + ], + "has_thumbnail": false, + "id": "range-slider-subsection-placeholder", + "name": "Range Slider", + "parent": "showcase", + "relative_url": "range-slider" + }, + { + "branches": [ + { + "code": "showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt", + "id": "style-controls-example-placeholder", + "languages": [ + "plotly_js" + ], + "name": "Showcase Example Placeholder", + "parent": "style-controls-subsection-placeholder", + "type": "model", + "url": "https://plot.ly/~PlotBot/201" + } + ], + "has_thumbnail": false, + "id": "style-controls-subsection-placeholder", + "name": "Style Controls", + "parent": "showcase", + "relative_url": "style-controls" } ], "has_thumbnail": false, diff --git a/published/api-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt b/published/api-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/published/api-docs/showcase/high-dimension-data-subsection-placeholder/high-dimension-data-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/published/api-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt b/published/api-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/published/api-docs/showcase/range-slider-subsection-placeholder/range-slider-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/published/api-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt b/published/api-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/published/api-docs/showcase/streaming-data-subsection-placeholder/streaming-data-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/published/api-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt b/published/api-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt new file mode 100644 index 000000000000..9037aebdf6ec --- /dev/null +++ b/published/api-docs/showcase/style-controls-subsection-placeholder/style-controls-example-placeholder/plotly_js/code.txt @@ -0,0 +1,14 @@ +var trace1 = { + x: [1, 2, 3, 4], + y: [0, 2, 3, 5], + fill: "tozeroy", + type: "scatter" +}; +var trace2 = { + x: [1, 2, 3, 4], + y: [3, 5, 1, 7], + fill: "tonexty", + type: "scatter" +}; +var data = [trace1, trace2]; +Plotly.plot(divid, data); diff --git a/published/images/high-dimension-data-example-placeholder.png b/published/images/high-dimension-data-example-placeholder.png new file mode 100644 index 0000000000000000000000000000000000000000..7715bbdf219ed27a2386ffe84dfc32f9244edd95 GIT binary patch literal 25136 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo 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 yYrNv3XXE~sigwzCo z{g4n4k|+_VeHHlUSps;x)L)B(WeC9{#2hbWFaPuGb5t$S-| zfnTn(bN7o90S^>QBl`dUmKs7e#teLg-Y`2>>kw)uolI zl3*7USEdH~B7)E99p~=XSQe)$6+#l5bH;}+8h^2sN&)}9nJvo{2mGJ;@o zPz%(B0X=tdGW}Mt3)ILnvCmhY_9)$P1DJAGmKN)v ze1zd%8?Rt+bZ|J3#-$2cj6_f=>m(@cGd^1z)16V|fV%JxC%RskLR9byJ1dgdPuu2(n5=LT=InB<*%8FTO7o|S-(ZhP?gB!!?4=UK(kmLOfkFCZf%HE+N6_-J` z$?Bq9rJ#|ouV`0Svb+<)x*iN-Hl|JVnnpE9(aHzr`?&zIW_<+?&$f)O8Tc zuClN}n>M!@NndqQj{pen69li#uDY`vm9&qmev6yG*9}_QP*D^tPI_5e?^%v2tv*EC z!cLzBeh(vlygpI2`}+&ksKk(>Y02tGk6BEjHXCAfv?S|X>3yfm*Oyo8A9P%B9Vyg} zIE7&1E$Aq(aN(`CfDBmP-1VWOrXTy1%V~27sgp{@E`s?dZ2L!t-?$L0@(f4$nlW4q zSKHd7e*>Y79B;LIvDw+$dfNJ;ar1{?+`U@~-ivCYU@K~eL%aE zbnKXBu3R27q7h!Pe6zVeF630!Vz#ec##a*()OQ3v|FFO$=!nOe%l6?VV~LF15zt!}x< zPL;jLLH3u&Xq9spvX=7l=wibhy{-gyne%g6KErgX;Xleml-G6e7;%SRV|8^^(sNE0 zx!o)1f_kg=HLrNF$%hXZTN93b=^|p5N+6y@6fe~X^1r1z^9sdEb?w=MD~KKa)zM-D z33mUbw6E*rrEuXkv_#w2BTD%Dv*qdx6BOygN(6VYo5~cBpLd5-4S@R_ zJjj%cLP?Rr=Uv>R3*$Ya=hE5^1cJ0(d7(kcMwJt~7WZDLlztM4d(yMhcjMrOF#go` z#0b6za}#Hgm^~IZUbdyxKk3dNPGP5VKPXjxJKty5HjqaQbpi-3s(IF!6WVYoL^gC3qUBQ~%CD3>Jm36hBZ7*P znn~ORt{kxKur^tfm*Ml$Nc1lg)CLz?+Ml6_J(HMxn-mrs`iB=@?Lv|a!PtfDr5x^ zirM!+TnL;H)tXfiEuH->O1~>jV}oH2*-f>HPSjVs%TXbGMinzyAxV#r#W*6y)=~2;`QRH$D-Ps&<=LG2i+UD82#Q6@v5EWD~%Ye z=;nDt-JpETH4)p}eQ$&$7QbFQ{o&=Yq_7Pjqi$biC-hK#)~4B)-ifY)6UdlT{&x%k z9Lo^kw*ox73w$~Ps&jgiDet+Q`mze(O!J@R?%`F*n1g#^tbqfAF-h|69mn{bG7}OT6k!SS?egFEFCv~ zV{I*4Bgzfo14|>BaLkCrjB)74)=8T#>*}&VJkYxww=Cu(#C?mE?u$C8(S=2C(PA4h%zobtmrr zj1kF9!_9|s0OWbv;st2rBC4605#kqVG|*v=4RB&BI9qIYow+_|kJ#aCQwq%X)yjpU z^9BPlQgU6-2ZC$igImvbjwckK#lhCdb5y9i?0$Z`Y-?twXoKRaj;ydN60K+GhUv?1W7bMzB?!D?_>l7Q++jXu_JppR=RyJ1RJpXk_;}qbjhAH$4(Ee;Lygs z^1nsE69MR%C<}x9`ETNt1JkvWGT+?3LH1xlVd3KWX1`HdBgKbj3JkaabdCkuw&|JS z$>L$iL2D4s$rny&-lrJK=10s0-~1*Al>9h%>GN2rSuI_g>x>T19!i$6y3H}ctDim*{m@AY zXhjo*13Iwew494;xp6zd#>kMPA)v=*r;cK5mt$8oQliO_2yh&KbqsS?)rP&+=#YXO zZtfeU%~Bo3+!)91r%1^FLlW@BJ^T|w=2$tfHmWU;8Jza6GP^22ga;|+;wF_#^ zkQ`$4QuJZc6oS~9LKTzQInt}Nby6TopGSY}aTCNsW>qc{n_1L@M}J5jM6o5j&ON6@ zxG|>nM#L7s8PjP&%=v7fq^`{Ln1-Whxo)T5@WpgkUZh68sIB)Nvi5U=&J3~Sark1G ziQYNs{d=HKluB%zO6RPQNm1cZV)2{S&UY&RUWeHiLwc3&wn;1jT)0!W!JHcDbhXxd zD63HHsAKaFUleO#u$JmADel(>c^@o*o^n~drmyntR^S1DQL88LNiUr4z}sKKbk_s zJl#gn!?72kR|KNKd7=u|Y&oFgUs;%jZtgLQ;I1ox4DDLbP3k}hoHY3>rIIX2ohEO* z8E!&f?2IgP>6`lIzyUP~pE!^NH5?LJUebSL{MCEYjBIFPzZhvr> zIkE9ERu0JdlF%6)$L>Ka3StW4OmWyN2_X`j2>iwVij9e_qz|J!6Vg6UP$MBzjCz2^ z*$5k%wW?vtb!5a1T|~5q{TQJ~jt^a@)lR$>gqz%`Tc%8(qdrhl@lG=0Io~8P9P2Ze z{VR7Vsd-3^mW2(%umm?}1|&o3O7y1`4k)3Htu)Y?K9`8Ys%-a}&R@66=jMQFz7>lN z28RkRz8MHdncayOBN|c?QHm>lKgXfagq}hiGfMtJa6+G&KQ3be=c;>7Vn_^OxU{S( z0c4>mR?uc4$3mz8b)KWUeiI)WqjS16Iw$mGjd+}F!m$t!RvXvF@;>o zJU~$+Wd-ZUfHhTHs$MF&h#(J7n!hEF3;q-rYmzk+gq+W$^2NO8=B`p9v0>JO7G{Dc zGaIx2a6sj*d*I$f$qF1zDZGKjup&L?La&4PqsD5l2X@u(C~cu7v60)(B&?d-$xVX` z)Kt{X%WV-WK=Upz!tRkMDRbAOQowR94}RVzhu}CpXBV9%-Qa4z3qfpdnbb%sLOK>e z0?%gLYKBh^cgjF2K}5xN+rBHFo*QmH1LXOE!k~aQ0u}NSxc0*SZ7rJ@$SeSv@p)0& ze32--fMt5CW?!Ls0CHpbn&ebZ^W9Pb+^5zr$6ZGB*$d2#j`{YR0XS8qMvD55Q(P3; z1qr5w%`PG|K)34elk!+%S;fp`X(V6)&te0#td9X7%d^8^`F=DrB4U_^U z15~=0eW^u_?FS9+N6%5MmUg-OR+g4MBcr2Ds6Q8%1YDYO>bj%O#jYI+b9s6XOHWy^ z30fFqMtQUv`yzil$r`;c;pKgH{%k%feAKX)^Mc4OmCDI$Z2Ng=rlbqa>33q4w?ft* zQLVTI{W_-s@#T1e%eI*7 z18`DWOgOpl+lOCX3?J>SyY!|A?9TZN8N0fc`*_Qa_yM2T;(Q_r;OwgOF>z{0|KpPl6hr`>j+Zdb;+tz*+g(p+Vtd=e}Y9uKRNev2UbqI#+0>+($WS&XpdJ!R5If6qr{Q?|I zkeQ=?lS(|(%7ptVfTiIjb&PL5qFxAIO(#Q?4B~8>uBnY3HL|M`c-BM?Q_jB6VT2lH zJ40{nDkSX^&3q}SqE$Ex+iQ^65Pj1+N>_euJS`tF*9LH(8hniqx}XHdX0yicW&m&T zA-GOSg;2P}=bdiRgl_yL3|YiU;syA>E)MGJa_F{80e-(vINFmcS{Z2rlU0U(><a2XqG*=Trl$Tt0O*!N^(Mb2va6m;lc?#fhM;JAQo5dk36A9 z-gs>;bJKh1X^)LJs%4cDf_ottXa<(CAefHeC zrz3e5ER@C@p&#>zYy!*bK+`PJ3P*L(^f^ zgyug{S|K$_V`Zu`QwVa^?GjQrmdY>oW*CU_ zg!xo9K(ud%m^&XI6BCtnD|J!Yn4nrVi6FQ)B7r!dB`oKCs^%9co=?ZED)7gvo1i>gm=l`zy5ysMug_4e zx*wCI6nM&2)}D?EfFPTy8Hxvvz3@IYC^w_4^qi4_wMmvv0m|^ZMTzcz3c==6jzs40 zO2Zglg;=h~Ym||w@!C$EB*1->!fvinLi|W(dX>;oRM*+fGlM7*3Rf~`zHmT4w1{PD z0Nm3^Cu3uH)qwrYHmH7)eS)m+%s5ekNpHpV(|EJ+y{Ff`9 z^aAb9tD(l&F91Y|zsdvLh9~Uq90fqB#((+r+mB;zr>l>mupG}_DZ^0XPdfS8z;TqG zm%r5~ndkjwK+ZJK`kCXeQ#CM2!ZOt{XHU9HX@DqcIF3-40hS^`06)}zcvHD=ab7MD zV6ODV(rUouE19~T@FKs5iZ`0G@FWZXxixZuU#!%3

vyOF9U01uK8%zA9G?;o>x;DBZC0?b+Uc&TBa1&UD)0IC1NI) z--6$gJDwPl{AN8$8yTG|r zBxxIH9KXMb_NuKF6BTYE{}i}Mq;;O*_L`^(-2gMWU9;h8c^vnJ(uN~cSxT1-G3l(} zI>vuAns?@ao%y3nec^7{8Vc)2;#)qK0qAKtE*tCB9E3Bi+mRbnTDOq#r**+rkGVGhsqp--A%&? zBBMu=zdTQ-9=E|cc4Y~-(xb z@SL~W>VDv>F<}^4_n6~Zi8+S2{pFljw&~8>xr6Q^<&H+ve`f&>v$ymd!x3*l^GxgW z=SgoDuZV-7A>z4v$6XcWs@3Px5picY0WHmE(TQ29ox+>5@s5Q>V~5;K3Q)7*cPfV8 zBR$zk<5A(Cf)ay%ZW)vvatge<+qWi*DRdbp%TcMWd#XHau}&c$B3W=A-6F%x?g8*K z4&K={=W{g!Wa^ufz1fWLYQNwlAK#h;`+8r)xRhoJDpNIwu8~hA@u-B*FOQdZGi{DO zBu*Om%2Jt3LifM|mx}8d3L+G^VClBkir=uNRQ*Wv``|$3&M)b=GEY`F9jVlAv|goR z4N~~iM{1ZOB3=RK&OGcguCJ*-t59N1KHJ!KGF`>>8GJA-{-9a0+nbiwg zo8soehRl!zLa*cF#M|*#UmQM1Ps=oMxNqGN-g%Wrmj%1hl?+nS{i$-#I98F!sCYZV12p%U2RHbzRAp!vOThZCb#k(!~`{|v{2fdcLuAdtmc z-?qKvz1<1PJk+c{RAL(AQ3=-4J-Kyt1J(Kxo~_IYQnle2mJ7q;=;q{H?xo&rD!(Mu zA?%lcXV$ey{t}xTaYEZ&gvv7j+gV6R&nZ)K&65WZ{J3m}*dKB$!O{%7{3N(rz1NP~ zR53FlMXr385bG>iztSyZulpn>d)>jDe4>YyA3kh(LKZ#n^7-94B8V4=4#UIw>Bfr{ zig6@H`pqFWVzBAx4148zXTtUD#rrxd!H=ksB|n~y16oGLPU)-pDYD-li#k*Zu50Cu zqxj}@KeDSLf^(Osdk_$fpkIdxT5K0muO|4*t#H|^Vz^RHTtI363u{4Vj~D|Xoln#t zmF*4}*k5%QK>@d=0ug2KeCN}jhZRqfHc%U~Nxhxbs}Ia!eR@WY+=e3MRcB7lw@BtG zg+6$2;)5+SABWmX9R2|2DPmT8*P{m>H~!?<4OFvaZj!2ZcQxSANLUCG&a@YPf1d+- zRqw1m40ZY=x1~V1EoL}+RSLI$zfHG%m{op@{hL$$eP`;x)_3=s&`KhtGH;4kCDX+n z2hjuwg*Z5_OAWIi(MfWRup?Y7|I<&h9EL2*z56%fHq*l%N#x&c^&&=Si>(YL-cF!X z+vdm3dB!*C>~j8h%lie}DcO@S&3XZo4b8U?V)?ThA!t^_R4l)t<0i*0|Jc9e=B5;p zZ8xCMWt>S1OmJaV0r^VxPih^E#^Df%b}f@}cJGWD#<;XZYmLYMbr4pv>%PO)2T{V1 zo;<++RpyfI@1E^q=lZz6*>YXB72ok+mPUXRKY_ys71Y7k3-!R)7ax9Pqg-B$JF_pW z#hI)CQc0f7$Et?OeV|!Vtl>;iBk=n(?A?)uUQ;NJ&Bqc72ff4k=z;G!tM7j+V2L5; zl=Io$S%fm}JVLl^bh=&p$B5c()nZH07bQg>yvA=gK8Ss+TC2{$Q`E)^ug(qlt^G?R zz|xH8xqBRl}@h5C>`K0-Jg5 zPMYKQm_Cc?$;E;^#akh0E^+62&T!NreSu4&4Ech`o%O+3!{eq3$Bxkv?7hjsTa3wg zq{7%@N*}~xZu~C``e{UpH?*pwiQi7eUUQ>@B)}gA{-SR`nWjl=LcjOv*Stmo|BntHSgn*a^gUEZt_a5QfxNS!s)GY+-H2*@^E~RZ zy@r6owLoZXMhrI<-(J(_{e*JN^VOOfuh4V>lPa zx!d>>^_G(GGT8D}GmSj^uP-XJtY_nHAQkba5R z*wXqgsDP~6X8U^6&oUje3SB9c8^R_Y4i}TTpt+qNy#u?mXAipT2;~-SXi}9dcP;ce z1R_0C1L^yfa0S4^Xd+RXx@ExmE1YxhaUZ4F3t!NUMjfj1OLK=?TV)l};W=_KUjddu zs@MCe<+bLWWM8L_^!R{`jjnm}6uQ`}6yWlDdLarVHcC5RnT+j0+jIoZmecv-kwk9I zP$6C5-^EKhKHS_8aOAM4|7=)&{*w7udW>okFI1TkU?@l02=6M~^PgnBIQ@#VyVn5Q z)Ln;#vp?XhkDqY<$Gz5-9))+`U!%-1Y~xp51&EEqlDkJL&w#MEdmU~zd(L{dpX z)%pO$zW*1*s?nv2UD;{g%V|UbJc4;-oi9HpBGu6m`2fWNEjE+%Fn{t%vyD#QBc-;bhu8QTY)eaCy{Ao*l;=nQ{$-+=&QE-KyesjWQ zaL=NkkNi$!xN`Y^DBe77{?|PAm{S**mWu8lE<2skd7{aKg&4WXx@Zvv;0U2z_#=pU z57C;fC}OCQOGR6UVbn8qyaWCIMGsGzyUQYe8!@^1CZl>E@=*xCwr4l_yO3uZUQ8X{2R5;#ANv$4&ex*Be1#<3ep z-t8yBye1Yii@Gw3$P&C)3_)_~AZQWsOsUUrx4^X#K*^u}tK?&uM;DfXeQe*w1Ya<( z%?Q^?t$E7+AWfKtE=(F!-2`!p-hvhNN9emqsm1#$&d=Px4Q{3gs_HKCQX|`H!%%y1 zadR1$Z?9aBN8`6^a{Jx9a6trmW+SLH(9e7blfy;j39Uaehc&;|R=bA-yyCg~Uok%U zE=1+YcY-)3i5H$t%h#C29bT$@J!O<41TZTa0CfEd^GIUpERCO=Sm9aXcgYdn-;i@* z9|u3Zs|vW^1;9ZNO62#@Co5t16sVDXBG03uz>vdM^OmxF@PQ}=yRu>cob67A;55S8 zPLVDv@rafVim(_uA=N+Jw(Ddyv!4!LI!AR&%+^XzuZF#rvm>EKj@3kr4FdUt$q~vb z>xOtxvMme3VF3q(Jt#C8FO*nPfjvYtY>BNW*PXD%K07Ysl}MI|TQW1dB_);GEvk50 zE6H{EwX@4d{e-Y&&3Zz7V`ToD$aTs(Fb!qmstLF#27_ zkB*XOh!cXI?7T@2^=2Yr&%ykvMPpsg-P2>-s1j~Y9Y1(BkS-PxxVL7ejagn^4x`Ezz4$Zx!9e)^R#!&<}9{Xu>%BC^PS)7_I~Xvvsjtjw8Pb$YkX0cJ^(S%hr=-Yhmj29<8Hgc{%J<>{anv4C?Tb`AOM| zSsjCs{TMpB@PUwz6tNnnVd$7D=-IfT#J)`ZG~L-&isRVor}wC~{y}%&#U}BmE|U!K zY8xF_z7!~AQihJw>DqUIF3fGDtN_P8)7BYqk++^;o?c6oYpwesSm08cId8iwwm!b` zc6e`{XKWjj)~TYfaLsmpe_QoDkr>fzb(YI^1rZcI`DHNq{z`VG7X%$)y>**i@zwC_ z=8LBng@fq%%27@I+Ddid(pZ6n?vqQ+4gM7C=})_LRBStru&>4hUIrIa_{-c+&1A*w z5g_``w7S=+AfT3SW3-t1Mv^!-aPmEp6eE^Y137n6C^+vIiy1&27~P?n=uFblKx`eX z@Ut9$)-LX!En$7sesk(^Z+4#V!*BBD+XLIEkLKvw%SvnwYFuJj5X@001-P~}#n2V; zn&qDrsKZ;z8QS%*3bm31r(HWE;y?@D9k-;%kOuF5!T20e$3Z`kV`rDf`E9+oD6(?5-tw|HCGYCT3V}1?`wxn?)v*3$5lMR(|_go#jGa5L?JkYUCzQ%?1I94U=os z#Xr}5a^HMBjmQiaQxbUy24%jBtiM8yK)`vpY0Bk2Xw)!V;%L5c7<%Wc&yX`NgLPrD z#o8oTgcCZeZ#zv$jT9fFB+?rJ!L6{KT0XDR%$>Ky<`-d;juJsIGtb**)H*ty%B8lX zBmJZN`|8noMVL9Pq zwT8S!M~v(3>z5^PiWty&kN^#=M*X=4BK&}m{gsx})6Afimiot_T-_?{m@-3`_LSvQ zQ7Y>21o$0hwlE82Pao^D;gBSRZzUj#HiNiH=5f>-1_W{|AM+78sDhY**kil=Y?>3! z2~~|}V17=lo!g{${3fGM(6Iaj@8;tK&BW|2S*gZ#>C zwc;`4Fy>e)EHUcKHba_|45`g%T-RhkbO|!ju4`19)POt3vj)yNR%u=&v56Ap=$bR8 ztEa=W=ckFYe3x63U2(iLI;`+EhY+UbrRDSV%l3orZ3(A0VfH`*aXC?`L2aBc#-QV| z9rP5O%_ckP%-ggTslJ9WE2Y|k2#FSk-_n7@UUO9}mX#{@sWfIV>5 zTLrwuWX?E(vujQ&z#}sLk;DvH2!Nrw9&+h)3xm+?x`HdLSbx!-NpsA}hVNO{@B|D_^3BOG`h%SUQ~~UF?QuznzQ9)ZM4|sy zz%8Jblspk5`7o4H$Ba&iq8%uivCbKriWX1mXc<`lRIZ4SeJlhGRpyr-eQ@`b8hIsy z&j%|f+@x?2w*7;e#D)h-7n`VO9fW|jW(*&-|HxV0%da-U7<%{H3yrj>Ti+|W*auOl zJAQ8ws3Q1Gh|k0sFAmVZH*=R3suWo6CGV`q-Z$-~zifYhc+wUe`i^^NgFY4{-$wae z3zt)DES+xHlQ6p zp(?~T=A582bSU{fGgse{1>P@|^T~M<0yz+jiKz5QPjm^RQ10EGW$g~evU*ww<|I~T zknhN~^&e#6t0JlV9u(3u@6wUpdCmDxhuPixZ8JI(_!fN888l#m365o&(dp_I!zBsx z#DZ8;JShL$1Osqou->C$D*LaF_BTlg+V{33-PgqFIQM*6o#(1=dMvUzm&s$lMph zcJe#`v@wKPZhH4S(#B2OLGY2lbqN!R(my{F5IjA;wnJ5hdFTv(vB^2NAz`zC489j#~v~TtuTWa$2|>N z`Z1(%He5*$-gj^9c8jHHnl$FYY2{TU0PEs~=DzVg|4gyFR-U6ZdPk~R-n%_mCq~J{ z%Nf*Aj>Q$~rbEzVH3J+na6l!6;lkX~ubZw!e>~RF!7Gjq(KiToJV1uF!mZd&#aBV| z=TH^%5e9TjfN0hn@abnTDi>fJEq4Az*hqdyv{T5mV~N%Tb269IG8H?kk1clq$ZSVrYUy|DTVs3|sUmcSxtYnb`n#aHY z)Jul82X9`F09U7!Gn(P8N697L5R$gHz}NzSbTYYAZOi4iDG z`-tm4#wNWpJS~4AWxV43X%7vPjgd`~|FD_+crwGb;2lMyb?T>Vq=*al&71xaGSDo* zWID~zwG3t}^q;e_Q6geKDS_T;QyOh*l?0fHG#*NfeNXnAhv6amVHTW0-Z>c#ct|AH z5qQZP9`7NRa}d1P&Ptm$Kn0bUT5jbJ$>IK17`1$fGksRm6S9IjuPZ0)(SP8Bqa$46 zC4SPuj@M!j&9W#qDl0>J8-dxJZ}?mLKb!4Kja#2(=ve{DqQL{QEOks=$BTY?Va;Rp z%UT#+bN6B~L`5&Ko*DnL$+Ko#l0PtQY`_;VrgPkGRv!NxWuK@O-&8Jz@z4H5l0&PL z|45=1-nNug;J!i5KHRCathJt^=c_$ybgwH`UC*x@BxU~)55E@ah+qyp>*U;h@#td4 zdh??Kr)&HO3w(VsyGi0oU~R?=c(r_&;>3k5oBf+o74i=_aEkjzpqaTf#0|Gqk&fAV zRR1V&p!)4j!soleZ$?v0$zv@Bi>pLEay<5OXeA23q~O48BA4*L~Ji`IQ2{j1`bt;QG6MECuX#4rTM4bH$N zBKMn+o^1x4q2*5=XwEL?^?V{fMIqEBgZAA6w_0)i{B#TqqhMB})MNJJqPC-+m~oxC z#-cl)Yf?w)`V*}Ho764pT^ruO!COxt==6)W?oK^N;(;97y`wpc*NaTIGedo z9=&@P7Sj-&7{r!vX8?=|Jjyo!auqY22D1a+qfAFI2h$DPi;TfE&sCr8k?QHX zBoRn_koktPSijdh@r`pLKiw?;xO<_4xgqq)pKD9sQWcCce<*2ISSA!N9?0)tj~9#0 zQx#(U^g~%~%|w|k(9Ewob5vFdmD{Q(rXoPL*?zij9r*JVUnv+}f_|g7$iB6^>n=Zh zPDEle`ppVv#TU=+Y>=q|_xv66vExYc@QM6zE!oo7!{je~NAs^y=q{hW^R@u?)3X5s z1h?6bB{BJlO1@&v z$+($gId82mT1zC)<@ zUZ_>kpWaEHP6ji}F(vPe)6A2qTPhz$zTJERD@_eL^Gyr-!ZLF|PAX?DFNr% zDyrjcAwkRvzLkd$?r#!9CjBC%#p}R$Qt>yZg9uLvl_|p=^UYFvxteyirb@P}hw)m1 zt*bY7+nUjLj$WzzZ#Bi)5s=Ii-TG#5Q3T4FOO2%FooD8WM9D$pq6hBbx)yCMoRl%0 zC6mgV)W^DgIkzR#?lT~`adXo$%n-j$gKx$FTLB}w=Qh%%!;H{o$ZGOuE>O1Mhdqf| zWY0Tn&&%54Z@AFI4sDji?a1T0G{Y-nPzsyYdI8!WnFVL!9t!GpzPioo!3BEpA!&qg zO2m4z{8Ild7xk&IMW{r`Ms-qzpu;0Eq@S74$6TiL#Nl?m5;fvqWME=-NrcK)yAT0 z2ABUn!W1I!w(6tWj0TzDZwHQhN0AR2yA_)%SCa{G`>F*u_>kTv!zrQ+Z~V0WW;zOrjU z6BtvBsyasadq6NhP-9Tb*Oql<7eCDPvIn&powg}lRwP=!mrn5&>9*o0bk-BAhSMc) z=uSZ{`-17;J9hDY@>{KNVs>J-zWB|F`Q{}br=5@uzQp&H!yb`z;!#(M4jA-{^L zV>bwnctGJX*v`pWx_RsVbV;h@Uk70R&jAt!qF}u8Cm$@^cK1WRC<$Dmh0*L=9q{Z{ z+le6FXt!%%n_8dbi~;K>MSTHt>m>7EmX|#yd)m|&pWaAqJzgb5u4M74FIO_L_;0}Y zg?J(z7{U`-HC6Biw&Rl_{e524dniYn9^yARxXz7VU|nj(^1SEf?(%U~t%YyHUsdat z%CpI_9(UDVUi%QO#V4AfDvm}K3KW&>5RuAzU3zVnY!GbIXlV%SIvkseuuxJ3db4or z+X+oJ!05O2I!Uy5OPRBEpPa=xM^0~i{%QZ?PhRZpAD<@a;wjnn2S%*cLPdsE|MD(%44bfsSF<4zBF!RlDyen)F7iWMZH4#%ow1eP%RQGob){(U zdxoRDD=-%1vh7+e&R|J(bl+WnA))p1)_cEk$WY}>m!V(~MH5%^{o&bOY=4g3~*5+qx$-0t0Qhe&)!Cg5JqaeFP6XS{|V2%naJNMo_= z>W%fNB8qDF3@t}JUC>(nwO~fpI-a<>F&44~e;p(&(o2n0eDgji9K{KpcGI(jsZk%b z*Gn+8q7NHj8 z=JHJKJ6da-83+cc@$(mWqYUq_5`+CTW|$MTh77wErmGprdv96VRTf(LV+J2jCXKhN zc*>|+R5KYgMKv%h)D1mQ@ENQRYD90Ek>;cYZnm#SQmcR{)<-S~h7yZ5a`EW3pJ_5- zmrpv6R5|mt^xcf`Y_fEz^lCN-XgM1;v;RG61HB$fUrt$6J04l^VYaA(2JhEZ;{on! z30<2U8naqpQ0qvTiUhol;P;HkAqwbw=j4yy{>ReRUw!OQh2xZo&$zBlqScXvnv$Q} zQk|0n@^v0f>KklWmmo99f4S{_Puc&WVCW)Z=Xj|l-})3H>YSIfjyY>&ZM00ph1%hU zHCL9M=A#EnsljnQ;s&F11=dXss3(;w7l&Sqn~Y1fg-Li8u(+MBjqOh7M$ z+ofu%>oRvpjM?rdTYN*eMn~j<#F5C@&+G_EQUJt{A%7{>bV(muYnw76ljJ+WYn?ae z#Tql#dGYmA2rsDre=~7g?3X*bt z1e$f`vpnm)YY=R}9M6wNLO7N&2ThFsK02nqg0STpGK-d#!yQ^%0>LPlp>1j-5n2C`(i0IAm-=h??rK4fE5E1F6RMcpK z#k;nkl@|cmH(kR~t;_4he!zhI>OzB+%=amC@Qgw;x3-q+%iMHP5qwJEa6nfR+?V5- z0RHR1Nhl7#OwE=UnukdWbUjDyQ7HUPDCjp(EP=*k3;}ujawfJZ`7CoCvuudAptH4g zh0#`;z{PnV{?o6V_O>-8pPRjpmb{y_W2hiFl1jKI(5B62@$C|F83jN*yy(h zX6{-a{}+~HR>|Cwtx4hNT!43`y40l|V}$qfO;D=I4XWBxb+TTaui^X^w zJfHI-tk4@U4?I@Y%!aaDRDjNNZJ!2%z6ThSM1gTc4gEK_5Nm6$YbeA;{GTpJ$;&%e zio_L*hp59d#`#3OEc62(*oPU1=D#{LitrYks(tbj#J0*)u`Tm-R)N0E98~0kyBZ5% zC_p^YHuwoWeOit5>!9jKAI4${|I$U_C-T<({P2~bJR=6XU@=E0r;!+uHXZy67V|+{ zt<=c*@qD$QHVO7KwGyigYtx^w#3JqOu4V>D)5ZO&q@%OO98pb%ti!_Z?VqDYy_FV! z^!~+T-X3%R@TiLNSN2nIkC?dzr1(CJAuwcj_M=BZ6kFiS+<=vg8Cd!KV0K^3QT4FA zgmr*uR<-5qW+6MaWu;6q-#P0^peu>WnzVhuSz3Z=dut8zVsXR6ym~gLoyX^y4YD7j zaz4VImMT_JWKA5Ko%1F+a2qi{Wp1<2>{MKZpLMc$p`7zVw7?%gD5W5^mcI;{goaJz zO|)|d{3=jhyIy|2IJAa}9(+X?srz~q<(k|bw&ZE3YQKvfxb8NRT_u3*AFWGy*3)`E zh$d}9=e{WK7zDHKN!QV`se#wzG%M9+Zj84N#~70VFEtN;032p#k+J_Pw|5y*?Fh+ zgj+8_Y7AqQoZyC6ziG%B2CktQbIsVrMWCp-c;d(QlzoD6gXg^K84KLgd4S*Tc)R+I z`%k`aD;J-Dr2BL3}5)ZL6(X!7~7#imN-ROikgHrG+7&4n`SM@*vVG1 z-0x3x?(?`G_xB&Tzd!ZxXlAbKbIrB9ulM`)dXD&-j3ER=M_ZzBsQ6larNSZtm)l-N z#~^Zvpy~rxbFq7qdp1)2d9PE?Ok@cA_bZosv?aUO3GEI<7a@Dw?4KPYXlzlKkqaIr zq(RJJJMQqTTU%z&=v?NS-tR*39Vuw0HAo;gx}lhxO!%NhI^F3?eVkydI)2A--jvgz zcn@S(^_ey-NHEy>$+Ly_u->m9eD|;ItF2w!2KcwQ>8_Yoa`Lzh=rh~=n;>GfuTvLW zutmRkPe9Yn@0`-O0%!3fwpte_&^?+O8AT^t68fosEt$@GDn`u8|144sC7SQdECMZ= z> ziT3B1z0&cpzL6RdX{6i-Tchd2ZO$5j1^qes{TAeklb`>V4gx8Bd&16=y{#i4h7klw zCQ8!By%Z{X=7`o}z53}nY}#KUe)EulF4Po}%SPatR2nExz=VpC94N(QEgN;3s`c^T zuyL!3WSBjUqd`{j_dH?bij$@oOJO*kn9W3jsRe>#^}!vIxrLwvq99tc ziLQ5Ys-KS_4gbm~`d|-q@qyWfPs@}m9LCKQW38JCg(h)zF%&K#p@j52y5RsfdA(q{ zX;RY%W5f^LRFo#SvLFwc_uPK=G`)c1rbmO?WN_LC8lOgySHtWIInsE|T^D(}Oxtp8eEbi4+#wq?_d}Q?{?Ma;XQ*JS0p#90cOfoC^hlWNnMW2>_5$UA&twK)|k0{mUYLM1Zr zF4!oR#^n~m)$(7UN@j{ro@@oX&zsJ7(n!}FdX;@+oIEwm6GO-^zPJ-_Al4MlxL!CXAA;QBrZ+yOCEf! zJ#`$MU>cHALkF@TxlV!cKB(~ZJ_gmx_Ska~`Ig%E9V5Nk+03c~QlU~849=~pQKMCl z(&w`vXsCU;CTYFml(u@A$w9T7-v-q-DIyvsJN=+q_gCQnQ-> z%tqDVOwHevy8U*f)UR{`Tu49_`aV{a_~<|e3AxEzFK#OTFyV9m)+6s)z{5cNhU0Kyk7YAn`yQBch0`;a>&}(oqUEj zoZ%kP7{7@epmLXEndr&1jvsV0X?DC^?QG0Ew6GMT>2)pP(#?>bnPTZc7ciNH;+#*w zGhj|jTZ&u!>ct}$d{&1s9_fV-VZkwXHpsH!i$c_X=*50pLjh!GnF@`*<#+P98R_KY z?pxPy-4AdA)9a<01eKT|r^S)i%}>=O=lO0|QTp(c8*6i9l^|@9B^I)T0yo5rv;o#1 z+kVv#NPDk2Vdl|Q?^hD+S^tqM>R+)oH`qU|9||Qdet3B`E>*qujwzHs1k^J)Jh|NM zt#Zl~-?F$r?J$<5Vnl59DhHlS_jzTU%+ucace1LixnR%=W1%ry>*^8GPvNR9b_PrEn z*~Rl~>xX%Mf9xVu(9f-0yT%D$qf|Cm8a`;bi?gbBQ!?Sz&a_)?JLNYhB zCmK8XKFEY4{j<^rQDyC25-qCX$WOVh(w()u&vN9=RKVA04Qnp0UST2 z;f3(xF_*q8fz2209ZYtnVl1EHCHrN$+-pRt`n0^CSHxE`v5+MdGcH#SWyD)En-#Uo zaGU}yD*cIiOyUVtugpR3Y87+0J*Sy48W=VkaUJIKqqUQOBs)bNO#==3`=46MB4|j^ zxhu{6-H*%ToMn371OTkDS2Es2!zp={x00O#!+=c+aM?_iqB5?CdI_tddK3HEyRWp# ztIoKSsV8wlna2nAJ)B}}-SlFp@cJSdPSSlV`YaKQ_@m57(4c<383Jo`xOoo*B#Wio zZ^MF)ce*M4UF37IDn82Px!AA~+b+MSEk<-!f}6~6fOS!>y_cgw7T#27dF8c*>`i*` zOdJ}7h5KRy3L(v*V6=;xYy08`kVSOJW3=jrfX?t1|JrAsdGTsbQ_O!++8+BR#7$yO zw1?LUUx;ex5rKR~9`F0NM{~7|R}T%$PmL5NN-do>f7d)o6D3xNqy3j2Kwidg#&7?X600$@krN$Nde@!|5V zloZ2oosff4=YqCu=O8yGHtif5TbenRUgotVYN zC$61Yh%O-l{~{*tx#h9Be=IVMt?$U7Wa z7F)oTGs$IyS8@#^N;wMm>9BZ_c}Rni7+u&1l608Ap~+~_a+ZUu93{EjHRU7{E24cI zuwaWOoJvu^4vdSg0nGq8lugsdvGL7T>W}%7zb@DzQBXfbL4jO4^{f&%8TeC284;gC zL4UhGW80y4Aisx1*bMPTM&W)++C7a~2Si_cAz0cWb}O~+!J~3{P)ftCMQnEScJ<)6 z@0$d+HH0c4wjZvNFIyhNP<;ZgT0+9vaZzH~r}IAGion^Abm=l#_Yl_%JO>AD2Ql-q zCyGuh3$S9_Wko|{IImu4ft`xR+D#9v35C3rnkqGv^#^yObM2AWB}gw|9c7 zu+ZrX-B@PIw!r^>u;QJB=a#{~zG7Xoivyde*K!wlIl;xzG25uF(nN@kWpUQHhg)_PP+yt5)NKhC2jXH|nGUNsJ^SqhGqbS@as%f9~ zQ6v*C;w!LbaN-mW;)K5w!PpOD-z(cx6&J=R!;d;Pq3MalvPl8#LK>}= zTa?I!bSA6r)Yt(OE+*b1TNIKv_7}C#K+oKJ2C4+CLW&DP{E&xKnz!GKgoq;$B7UG1 zYVc6xY?z0tmlg|zVs5f1!Wvo992`HR^5)G&l2ztmIEFXe2saTWa$K>;8-h#MItuib zJYg_=7p&xwYw*)%QKF5+@-Pd+e5-i~9&_r9;0%%s0LSA_@asIE?I{Xj^eWA!Lv@#H zT%}2>Ob7TzCYem&Yj=&#)%qUwGvA)hhd*Uo8 zb)qam<%`PyavogvhxvS1sQb2h;DKHc#<-66z-Ra|z@EKk?%wjJrr<{G0y?KIM~oPO zy-O=o@wYQOc~xZn{#;&n;^U&8+Al2IYMS0>4mM0={w~VdYAK;`li%K^2q7%hJOWTo1+-C`;S5ZoBTYlw#mU?} z3%-K%p^ea?7^6}f9p*G@cp0Ws`E&?F01YdNSz?#&w3RBQe`lnL2jNYgkH`t`0dE{u zzPBsfuxRl1LQT_1M^tLJjMb|2o?&*NuCgCOn!Cc7ixZ#-OTvyZT46`iHGR5MMfnU$ zlZL-)G_hDEFGDE@NFI5%*}!FWW%>OhGbw~!0tI)v>fWKH3GdotPY42aN-_BfXn`J; zyK}O&Rq4;DS1G&DN+Qr_*Gw9uLhOb(Q~UQ01+|BEt}t!eYPw` z*!N>d7n7KjU$a!9%N-Usa*oF%K9w_hw1NaX|5b=8Sa&_p&xGrKxdKNiL(RSG2yi9S zwO6L&2-}N48eH3@2LP4(2$ZzK25ZWupkCxH*{WunWTPAcY0ne!drUS+zC!(8RX=&& z(9kfnL9lgTGod#~M)gpNTo_1bL{`5=yb!OLY1DAly#z-*qd~3T7|3xdtKDq!r5hq$ z>4z2e15UaOWeZ?aKq!hmN;UZywt}ER+p^CLx1G6|tvReQQG6w*^s6B-T;np&zsg?+ zNxu{hfhHg^mVp3h;a{8)p{Mw=a?q0RNL%)8&C|{t>tyT{9#knqdwJH3yfj_i@PoNz zhQpa4x_!u_UVr}lxiSY^=9cx>&Z7WYv-H<(1RU!@AI|K`>RFx34Q>{XJ7gcX{q&VJ zto0vNo594?DQk9?xY*slqAwEkP0S=&QS#k8iMHW>pZ-ANx2f~Hv;qzQ z5s7)@H1i*T+XiJ-U@m=-`8^f%PtCeqnnw_~`e9e)=E#@xBA>e27 z+ji8A%@*g?EG#VYiNmK-l$>H;bnEh4hfN8wSBhW*@usXkTvYr|S7Y$isgf&wT+Hh?{gN3@>);xnhR;NoZf7VxwNqL-G9V?`?iV{#K zI;ZZvGf&oY?SxGhDN=sTuYk#zv@pG%c)gc}r+U5EOd9LZX-H9d66ie*m|WA=EK@bJ zPT7++LfmD3dO&W@t)Y)%APd)- zkI2ld91J!R&Sg~qZt2Xc0|7h$Y|L>g6$S2Fs7=WFoL;-~JF~B^1Tx?l=3>|gzgEWD z&629H&T3}@j;CEoE{Sjb?+)P2b-xa)TIaXllY+pjso2hP{ck&H(Sr@M>(>HGgNOg0 yYrNv3 Date: Tue, 17 Feb 2015 16:18:16 -0500 Subject: [PATCH 6/7] added descriptions to showcase examples --- .../high-dimension-data-subsection-placeholder/config.json | 1 + .../showcase/range-slider-subsection-placeholder/config.json | 1 + .../showcase/streaming-data-subsection-placeholder/config.json | 1 + .../showcase/style-controls-subsection-placeholder/config.json | 1 + 4 files changed, 4 insertions(+) diff --git a/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json b/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json index c14294ae4d02..7db74748279e 100644 --- a/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json +++ b/hard-coded/showcase/high-dimension-data-subsection-placeholder/config.json @@ -1,5 +1,6 @@ { "has_thumbnail": false, "name": "High Dimension Data", + "description": "Data sets with many correlated fields are too big to display all at once. This demo shows how to let the user change the X and Y data, and demonstrates correlated hover info across plots.", "relative_url": "high-dimension-data" } diff --git a/hard-coded/showcase/range-slider-subsection-placeholder/config.json b/hard-coded/showcase/range-slider-subsection-placeholder/config.json index 930f9004382c..b3018f8e0867 100644 --- a/hard-coded/showcase/range-slider-subsection-placeholder/config.json +++ b/hard-coded/showcase/range-slider-subsection-placeholder/config.json @@ -1,5 +1,6 @@ { "has_thumbnail": false, "name": "Range Slider", + "description": "Learn to implement a range bar, as an alternate way of zooming in and out on a plot. Use click events to dynamically annotate the plot.", "relative_url": "range-slider" } diff --git a/hard-coded/showcase/streaming-data-subsection-placeholder/config.json b/hard-coded/showcase/streaming-data-subsection-placeholder/config.json index 6ce425052578..c14e080fbf22 100644 --- a/hard-coded/showcase/streaming-data-subsection-placeholder/config.json +++ b/hard-coded/showcase/streaming-data-subsection-placeholder/config.json @@ -1,5 +1,6 @@ { "has_thumbnail": false, "name": "Streaming Data", + "description": "Live updating plots can still be zoomed, panned, and autoscaled. Monitor and adjust your equipment or model in real time.", "relative_url": "streaming-data" } diff --git a/hard-coded/showcase/style-controls-subsection-placeholder/config.json b/hard-coded/showcase/style-controls-subsection-placeholder/config.json index 1bb0d7462955..04f7363a80a7 100644 --- a/hard-coded/showcase/style-controls-subsection-placeholder/config.json +++ b/hard-coded/showcase/style-controls-subsection-placeholder/config.json @@ -1,5 +1,6 @@ { "has_thumbnail": false, "name": "Style Controls", + "description": "Update any aspect of a plot’s appearance on the fly with one simple command.", "relative_url": "style-controls" } From faf5f290f60c86ab862188ec8e779bbd346343d2 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Tue, 17 Feb 2015 13:38:19 -0800 Subject: [PATCH 7/7] Ran run.py process all followed by publish.py test, then publish.py publish. --- auto-docs/chart-types/3d-line/random-walk/r/code.txt | 1 + auto-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt | 1 + .../chart-types/3d-surface/elevations-3d-surface/r/code.txt | 1 + auto-docs/chart-types/area/basic-area/r/code.txt | 1 + auto-docs/chart-types/bar/bar-marker-array/r/code.txt | 1 + auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt | 1 + auto-docs/chart-types/bar/basic-bar/r/code.txt | 1 + auto-docs/chart-types/bar/grouped-bar/r/code.txt | 1 + auto-docs/chart-types/bar/stacked-bar/r/code.txt | 1 + auto-docs/chart-types/bar/style-bar/r/code.txt | 1 + auto-docs/chart-types/box/basic-box-plot/r/code.txt | 1 + auto-docs/chart-types/box/box-grouped/r/code.txt | 1 + auto-docs/chart-types/box/box-plot-jitter/r/code.txt | 1 + auto-docs/chart-types/bubble/bubblechart/r/code.txt | 1 + .../contour/2dhistogram-contour-subplots/r/code.txt | 1 + auto-docs/chart-types/contour/simple-contour/r/code.txt | 1 + auto-docs/chart-types/error-bar/basic-error-bar/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-array/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-constant/r/code.txt | 1 + auto-docs/chart-types/error-bar/error-bar-bar/r/code.txt | 1 + .../chart-types/error-bar/error-bar-horizontal/r/code.txt | 1 + auto-docs/chart-types/error-bar/error-bar-style/r/code.txt | 1 + auto-docs/chart-types/error-bar/percent-error-bar/r/code.txt | 1 + auto-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Earth-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Electric-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Greens-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Greys-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Hot-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Jet-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/Portland-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/basic-heatmap/r/code.txt | 1 + auto-docs/chart-types/heatmap/custom-colorscale/r/code.txt | 1 + auto-docs/chart-types/heatmap/labelled-heatmap/r/code.txt | 1 + auto-docs/chart-types/histogram/basic-histogram/r/code.txt | 1 + .../chart-types/histogram/horizontal-histogram/r/code.txt | 1 + auto-docs/chart-types/histogram/overlaid-histogram/r/code.txt | 1 + auto-docs/chart-types/histogram/stacked-histogram/r/code.txt | 1 + auto-docs/chart-types/histogram/style-histogram/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-options/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-scatter/r/code.txt | 1 + auto-docs/chart-types/histogram2d/2d-histogram/r/code.txt | 1 + auto-docs/chart-types/line_and_scatter/basic-line/r/code.txt | 1 + .../chart-types/line_and_scatter/line-scatter/r/code.txt | 1 + auto-docs/chart-types/line_and_scatter/line-shapes/r/code.txt | 1 + auto-docs/chart-types/line_and_scatter/line-style/r/code.txt | 1 + auto-docs/chart-types/log/plotly-log-axes/r/code.txt | 1 + auto-docs/chart-types/mixed/bar-line/r/code.txt | 1 + auto-docs/chart-types/mixed/contour-scatter/r/code.txt | 1 + auto-docs/chart-types/polar/polar-area-chart/r/code.txt | 1 + auto-docs/chart-types/polar/polar-line/r/code.txt | 1 + auto-docs/chart-types/polar/polar-scatter/r/code.txt | 1 + auto-docs/chart-types/time-series/date-axes/r/code.txt | 1 + auto-docs/file-settings/fileopt/append/r/code.txt | 1 + auto-docs/file-settings/fileopt/extend/r/code.txt | 1 + auto-docs/file-settings/fileopt/new-graph/r/code.txt | 1 + auto-docs/file-settings/fileopt/overwrite/r/code.txt | 1 + auto-docs/file-settings/privacy/privacy-false/r/code.txt | 1 + auto-docs/file-settings/privacy/privacy-true/r/code.txt | 1 + .../get-requests/get-requests-example/r/code.txt | 1 + auto-docs/get-requests-and-images/iframes/iframes/r/code.txt | 1 + auto-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt | 1 + auto-docs/layout/annotations/hover-chart-basic/r/code.txt | 1 + auto-docs/layout/annotations/multiple-annotation/r/code.txt | 1 + auto-docs/layout/annotations/simple-annotation/r/code.txt | 1 + auto-docs/layout/annotations/style-annotation/r/code.txt | 1 + auto-docs/layout/annotations/text-chart-basic/r/code.txt | 1 + auto-docs/layout/annotations/text-chart-styling/r/code.txt | 1 + auto-docs/layout/axes/axes-booleans/r/code.txt | 1 + auto-docs/layout/axes/axes-labels/r/code.txt | 1 + auto-docs/layout/axes/axes-lines/r/code.txt | 1 + auto-docs/layout/axes/axes-range-manual/r/code.txt | 1 + auto-docs/layout/axes/axes-range-mode/r/code.txt | 1 + auto-docs/layout/axes/axes-range-type/r/code.txt | 1 + auto-docs/layout/axes/axes-reversed/r/code.txt | 1 + auto-docs/layout/axes/axes-ticks/r/code.txt | 1 + auto-docs/layout/font/global-font/r/code.txt | 1 + auto-docs/layout/labels/styling-names/r/code.txt | 1 + auto-docs/layout/latex/latex/r/code.txt | 1 + auto-docs/layout/legends/legend-inside/r/code.txt | 1 + auto-docs/layout/legends/legend-labels/r/code.txt | 1 + auto-docs/layout/legends/legend-outside/r/code.txt | 1 + auto-docs/layout/legends/legend-style/r/code.txt | 1 + auto-docs/layout/legends/legend-visibility/r/code.txt | 1 + auto-docs/layout/legends/show-legend/r/code.txt | 1 + auto-docs/layout/sizing/size-margins/r/code.txt | 1 + .../insets/simple-inset/r/code.txt | 1 + .../multiple-axes/multiple-axes-double/r/code.txt | 1 + .../multiple-axes/multiple-axes-multiple/r/code.txt | 1 + .../subplots/custom-size-subplot/r/code.txt | 1 + .../subplots/multiple-subplots/r/code.txt | 1 + .../subplots/shared-axes-subplots/r/code.txt | 1 + .../subplots/simple-subplot/r/code.txt | 1 + .../subplots/stacked-coupled-subplots/r/code.txt | 1 + .../subplots/stacked-subplots/r/code.txt | 1 + published/api-docs/chart-types/3d-line/random-walk/r/code.txt | 1 + .../chart-types/3d-scatter/simple-3d-scatter/r/code.txt | 1 + .../chart-types/3d-surface/elevations-3d-surface/r/code.txt | 1 + published/api-docs/chart-types/area/basic-area/r/code.txt | 1 + .../api-docs/chart-types/bar/bar-marker-array/r/code.txt | 1 + .../api-docs/chart-types/bar/bar-with-hover-text/r/code.txt | 1 + published/api-docs/chart-types/bar/basic-bar/r/code.txt | 1 + published/api-docs/chart-types/bar/grouped-bar/r/code.txt | 1 + published/api-docs/chart-types/bar/stacked-bar/r/code.txt | 1 + published/api-docs/chart-types/bar/style-bar/r/code.txt | 1 + published/api-docs/chart-types/box/basic-box-plot/r/code.txt | 1 + published/api-docs/chart-types/box/box-grouped/r/code.txt | 1 + published/api-docs/chart-types/box/box-plot-jitter/r/code.txt | 1 + published/api-docs/chart-types/bubble/bubblechart/r/code.txt | 1 + .../contour/2dhistogram-contour-subplots/r/code.txt | 1 + .../api-docs/chart-types/contour/simple-contour/r/code.txt | 1 + .../api-docs/chart-types/error-bar/basic-error-bar/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-array/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-constant/r/code.txt | 1 + .../api-docs/chart-types/error-bar/error-bar-bar/r/code.txt | 1 + .../chart-types/error-bar/error-bar-horizontal/r/code.txt | 1 + .../api-docs/chart-types/error-bar/error-bar-style/r/code.txt | 1 + .../chart-types/error-bar/percent-error-bar/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt | 1 + published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt | 1 + published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/basic-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/custom-colorscale/r/code.txt | 1 + .../api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt | 1 + .../api-docs/chart-types/histogram/basic-histogram/r/code.txt | 1 + .../chart-types/histogram/horizontal-histogram/r/code.txt | 1 + .../chart-types/histogram/overlaid-histogram/r/code.txt | 1 + .../chart-types/histogram/stacked-histogram/r/code.txt | 1 + .../api-docs/chart-types/histogram/style-histogram/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-options/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-scatter/r/code.txt | 1 + .../api-docs/chart-types/histogram2d/2d-histogram/r/code.txt | 1 + .../chart-types/line_and_scatter/basic-line/r/code.txt | 1 + .../chart-types/line_and_scatter/line-scatter/r/code.txt | 1 + .../chart-types/line_and_scatter/line-shapes/r/code.txt | 1 + .../chart-types/line_and_scatter/line-style/r/code.txt | 1 + published/api-docs/chart-types/log/plotly-log-axes/r/code.txt | 1 + published/api-docs/chart-types/mixed/bar-line/r/code.txt | 1 + .../api-docs/chart-types/mixed/contour-scatter/r/code.txt | 1 + .../api-docs/chart-types/polar/polar-area-chart/r/code.txt | 1 + published/api-docs/chart-types/polar/polar-line/r/code.txt | 1 + published/api-docs/chart-types/polar/polar-scatter/r/code.txt | 1 + .../api-docs/chart-types/time-series/date-axes/r/code.txt | 1 + published/api-docs/file-settings/fileopt/append/r/code.txt | 1 + published/api-docs/file-settings/fileopt/extend/r/code.txt | 1 + published/api-docs/file-settings/fileopt/new-graph/r/code.txt | 1 + published/api-docs/file-settings/fileopt/overwrite/r/code.txt | 1 + .../api-docs/file-settings/privacy/privacy-false/r/code.txt | 1 + .../api-docs/file-settings/privacy/privacy-true/r/code.txt | 1 + .../get-requests/get-requests-example/r/code.txt | 1 + .../get-requests-and-images/iframes/iframes/r/code.txt | 1 + .../get-requests-and-images/shiny-r/shiny-r/r/code.txt | 1 + .../api-docs/layout/annotations/hover-chart-basic/r/code.txt | 1 + .../layout/annotations/multiple-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/simple-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/style-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/text-chart-basic/r/code.txt | 1 + .../api-docs/layout/annotations/text-chart-styling/r/code.txt | 1 + published/api-docs/layout/axes/axes-booleans/r/code.txt | 1 + published/api-docs/layout/axes/axes-labels/r/code.txt | 1 + published/api-docs/layout/axes/axes-lines/r/code.txt | 1 + published/api-docs/layout/axes/axes-range-manual/r/code.txt | 1 + published/api-docs/layout/axes/axes-range-mode/r/code.txt | 1 + published/api-docs/layout/axes/axes-range-type/r/code.txt | 1 + published/api-docs/layout/axes/axes-reversed/r/code.txt | 1 + published/api-docs/layout/axes/axes-ticks/r/code.txt | 1 + published/api-docs/layout/font/global-font/r/code.txt | 1 + published/api-docs/layout/labels/styling-names/r/code.txt | 1 + published/api-docs/layout/latex/latex/r/code.txt | 1 + published/api-docs/layout/legends/legend-inside/r/code.txt | 1 + published/api-docs/layout/legends/legend-labels/r/code.txt | 1 + published/api-docs/layout/legends/legend-outside/r/code.txt | 1 + published/api-docs/layout/legends/legend-style/r/code.txt | 1 + .../api-docs/layout/legends/legend-visibility/r/code.txt | 1 + published/api-docs/layout/legends/show-legend/r/code.txt | 1 + published/api-docs/layout/sizing/size-margins/r/code.txt | 1 + .../insets/simple-inset/r/code.txt | 1 + .../multiple-axes/multiple-axes-double/r/code.txt | 1 + .../multiple-axes/multiple-axes-multiple/r/code.txt | 1 + .../subplots/custom-size-subplot/r/code.txt | 1 + .../subplots/multiple-subplots/r/code.txt | 1 + .../subplots/shared-axes-subplots/r/code.txt | 1 + .../subplots/simple-subplot/r/code.txt | 1 + .../subplots/stacked-coupled-subplots/r/code.txt | 1 + .../subplots/stacked-subplots/r/code.txt | 1 + published/api-docs/references/plotly_js.json | 4 ++++ .../api-docs/chart-types/3d-line/random-walk/r/code.txt | 1 + .../chart-types/3d-scatter/simple-3d-scatter/r/code.txt | 1 + .../chart-types/3d-surface/elevations-3d-surface/r/code.txt | 1 + .../api-docs/chart-types/area/basic-area/r/code.txt | 1 + .../api-docs/chart-types/bar/bar-marker-array/r/code.txt | 1 + .../api-docs/chart-types/bar/bar-with-hover-text/r/code.txt | 1 + test-published/api-docs/chart-types/bar/basic-bar/r/code.txt | 1 + .../api-docs/chart-types/bar/grouped-bar/r/code.txt | 1 + .../api-docs/chart-types/bar/stacked-bar/r/code.txt | 1 + test-published/api-docs/chart-types/bar/style-bar/r/code.txt | 1 + .../api-docs/chart-types/box/basic-box-plot/r/code.txt | 1 + .../api-docs/chart-types/box/box-grouped/r/code.txt | 1 + .../api-docs/chart-types/box/box-plot-jitter/r/code.txt | 1 + .../api-docs/chart-types/bubble/bubblechart/r/code.txt | 1 + .../contour/2dhistogram-contour-subplots/r/code.txt | 1 + .../api-docs/chart-types/contour/simple-contour/r/code.txt | 1 + .../api-docs/chart-types/error-bar/basic-error-bar/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-array/r/code.txt | 1 + .../error-bar/error-bar-asymmetric-constant/r/code.txt | 1 + .../api-docs/chart-types/error-bar/error-bar-bar/r/code.txt | 1 + .../chart-types/error-bar/error-bar-horizontal/r/code.txt | 1 + .../api-docs/chart-types/error-bar/error-bar-style/r/code.txt | 1 + .../chart-types/error-bar/percent-error-bar/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/basic-heatmap/r/code.txt | 1 + .../api-docs/chart-types/heatmap/custom-colorscale/r/code.txt | 1 + .../api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt | 1 + .../api-docs/chart-types/histogram/basic-histogram/r/code.txt | 1 + .../chart-types/histogram/horizontal-histogram/r/code.txt | 1 + .../chart-types/histogram/overlaid-histogram/r/code.txt | 1 + .../chart-types/histogram/stacked-histogram/r/code.txt | 1 + .../api-docs/chart-types/histogram/style-histogram/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-options/r/code.txt | 1 + .../chart-types/histogram2d/2d-histogram-scatter/r/code.txt | 1 + .../api-docs/chart-types/histogram2d/2d-histogram/r/code.txt | 1 + .../chart-types/line_and_scatter/basic-line/r/code.txt | 1 + .../chart-types/line_and_scatter/line-scatter/r/code.txt | 1 + .../chart-types/line_and_scatter/line-shapes/r/code.txt | 1 + .../chart-types/line_and_scatter/line-style/r/code.txt | 1 + .../api-docs/chart-types/log/plotly-log-axes/r/code.txt | 1 + test-published/api-docs/chart-types/mixed/bar-line/r/code.txt | 1 + .../api-docs/chart-types/mixed/contour-scatter/r/code.txt | 1 + .../api-docs/chart-types/polar/polar-area-chart/r/code.txt | 1 + .../api-docs/chart-types/polar/polar-line/r/code.txt | 1 + .../api-docs/chart-types/polar/polar-scatter/r/code.txt | 1 + .../api-docs/chart-types/time-series/date-axes/r/code.txt | 1 + .../api-docs/file-settings/fileopt/append/r/code.txt | 1 + .../api-docs/file-settings/fileopt/extend/r/code.txt | 1 + .../api-docs/file-settings/fileopt/new-graph/r/code.txt | 1 + .../api-docs/file-settings/fileopt/overwrite/r/code.txt | 1 + .../api-docs/file-settings/privacy/privacy-false/r/code.txt | 1 + .../api-docs/file-settings/privacy/privacy-true/r/code.txt | 1 + .../get-requests/get-requests-example/r/code.txt | 1 + .../get-requests-and-images/iframes/iframes/r/code.txt | 1 + .../get-requests-and-images/shiny-r/shiny-r/r/code.txt | 1 + .../api-docs/layout/annotations/hover-chart-basic/r/code.txt | 1 + .../layout/annotations/multiple-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/simple-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/style-annotation/r/code.txt | 1 + .../api-docs/layout/annotations/text-chart-basic/r/code.txt | 1 + .../api-docs/layout/annotations/text-chart-styling/r/code.txt | 1 + test-published/api-docs/layout/axes/axes-booleans/r/code.txt | 1 + test-published/api-docs/layout/axes/axes-labels/r/code.txt | 1 + test-published/api-docs/layout/axes/axes-lines/r/code.txt | 1 + .../api-docs/layout/axes/axes-range-manual/r/code.txt | 1 + .../api-docs/layout/axes/axes-range-mode/r/code.txt | 1 + .../api-docs/layout/axes/axes-range-type/r/code.txt | 1 + test-published/api-docs/layout/axes/axes-reversed/r/code.txt | 1 + test-published/api-docs/layout/axes/axes-ticks/r/code.txt | 1 + test-published/api-docs/layout/font/global-font/r/code.txt | 1 + .../api-docs/layout/labels/styling-names/r/code.txt | 1 + test-published/api-docs/layout/latex/latex/r/code.txt | 1 + .../api-docs/layout/legends/legend-inside/r/code.txt | 1 + .../api-docs/layout/legends/legend-labels/r/code.txt | 1 + .../api-docs/layout/legends/legend-outside/r/code.txt | 1 + .../api-docs/layout/legends/legend-style/r/code.txt | 1 + .../api-docs/layout/legends/legend-visibility/r/code.txt | 1 + test-published/api-docs/layout/legends/show-legend/r/code.txt | 1 + test-published/api-docs/layout/sizing/size-margins/r/code.txt | 1 + .../insets/simple-inset/r/code.txt | 1 + .../multiple-axes/multiple-axes-double/r/code.txt | 1 + .../multiple-axes/multiple-axes-multiple/r/code.txt | 1 + .../subplots/custom-size-subplot/r/code.txt | 1 + .../subplots/multiple-subplots/r/code.txt | 1 + .../subplots/shared-axes-subplots/r/code.txt | 1 + .../subplots/simple-subplot/r/code.txt | 1 + .../subplots/stacked-coupled-subplots/r/code.txt | 1 + .../subplots/stacked-subplots/r/code.txt | 1 + test-published/api-docs/references/plotly_js.json | 4 ++++ tree.json | 4 ++++ 303 files changed, 312 insertions(+) diff --git a/auto-docs/chart-types/3d-line/random-walk/r/code.txt b/auto-docs/chart-types/3d-line/random-walk/r/code.txt index 3dc18c0bf53f..a3283845571a 100644 --- a/auto-docs/chart-types/3d-line/random-walk/r/code.txt +++ b/auto-docs/chart-types/3d-line/random-walk/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.014460360111, 0.420723053511, 0.471955637602, -1.5980850775, -1.1696928974, 0.62887815642, 1.64225480141, 1.84538844321, 2.39903055756, 2.74061873532, 2.98184534361, 3.63482281441, 3.51947216482, 3.24422002592, 1.97987531822, 2.49306912443, 1.98065348142, 2.49148828382, 1.8166301311, -0.418444162232, -1.91452615762, -1.26261858994, -0.702841491138, -2.53578213432, -2.96566072736, -5.06110427809, -7.00637040896, -6.9990237396, -8.80043516671, -8.71239917157, -10.4880913229, -14.0237638556, -14.3444267254, -12.0425575011, -10.8147720387, -9.77322085369, -7.8871343368, -10.1779694809, -7.7922357105, -4.06012871996, -3.25503609007, -2.98098865248, -1.1460800781, -4.7132235257, -5.96126803183, -6.08422139999, -2.67777205929, -4.22903304342, -4.01470370535, -5.4925628554, -3.41315115276, -4.09417736042, -5.92604468977, -7.0398214854, -4.54137742868, -4.48795563261, -3.70646317414, -4.33965125791, -4.76111378599, -3.34964004567, -2.79516815968, -0.985062514936, -1.19713635343, -3.14305435084, -4.26844060776, -3.35551475326, -2.97635400821, -3.11226810057, -5.00517291984, -4.45828762509, -2.92964495631, -3.0340518455, -2.63137123131, -0.5984251984, 1.46882692707, 1.91813591611, 0.931131009822, -0.198698414513, -3.10258584158, -5.10707707985, -5.53978453609, -5.87190440655, -6.15266139896, -6.09909315047, -3.56047669739, -3.55761346254, -1.23993200533, 0.474795919986, -1.02959575087, -1.24291855948, -1.31426952875, -2.32409070416, -2.74719528672, 0.285902173824, 3.46346174555, 5.55064318821, 7.93131324422, 7.99242651171, 8.5373199465, 11.0752351805, 10.3205319282, 11.7581891849, 13.4949527524, 14.402257039, 14.3341961315, 16.7118900516, 14.2627254109, 16.5382962436, 15.3067781388, 18.1656461106, 17.0995160962, 15.934693484, 12.360748197, 12.4371219166, 13.5501064722, 13.2089378056, 14.1279104195, 13.4566914737, 15.9390080651, 15.2023626211, 12.443013371, 11.6235738652, 12.3093408538, 13.413332176, 13.3378554542, 12.7324527487, 10.9583926979, 12.4770860368, 10.3856928769, 11.2769203911, 10.9252342885, 10.5648842903, 9.90341705159, 8.90109222607, 8.74410691403, 5.62013558101, 5.75894407649, 7.14620387683, 7.82192882076, 9.99752533649, 11.4669502774, 10.3036227351, 10.6353641791, 14.7873630054, 14.6815788314, 17.4222005324, 15.9305759257, 16.4283318184, 17.5594396448, 17.8371814833, 16.6537129297, 12.9698129546, 8.22890747877, 10.4446077726, 13.148096571, 16.5755720498, 17.0970366987, 18.4260467093, 17.8427544622, 16.153890924, 16.1188692931, 17.0701110598, 16.5592444246, 16.7801876574, 18.7058755511, 16.8994733969, 15.093160324, 17.6321434315, 13.7980907919, 10.9898205761, 11.30276208, 9.37855259325, 10.9117452673, 11.0812344068, 12.8525922512, 10.7657134117, 11.555475122, 8.96571434472, 5.60051748344, 6.89258971926, 6.41484884007, 5.87972395348, 8.33839027511, 10.9814037915, 11.6656886194, 9.902573022, 8.96599982974, 9.70357715902, 9.47267497888, 7.59562651098, 8.05171507272, 6.81324160259, 5.93272558092, 5.66885758889, 8.38838033493, 4.29354010421, 4.72704863187, 7.2565249243, 7.97067463359, 6.38361598112, 5.68639720468, 2.3657444534, 1.70934714165, 2.45720993286, 2.03355212971, -0.174752482635, -2.38494583162, -3.61461123073, -5.76496371563, -7.50254742778, -9.2956270284, -9.36776589712, -5.91491283109, -8.43918270326, -11.0162806727, -10.4725899139, -11.2769921424, -10.5641008534, -11.9928147849, -12.7483073835, -14.7672001844, -13.4777929449, -15.7901116746, -14.5569502867, -16.4933826324, -19.358021726, -18.9508511213, -18.0968256136, -16.0255273907, -19.0290483393, -19.3290168721, -18.4769531356, -19.225163488, -23.0562321371, -24.2830335385, -23.438117191, -23.6555178343, -20.2726489546, -19.455048731, -19.7863053144, -18.6545983156, -19.3574121043, -19.2048630105, -16.5631387925, -15.9213347995, -13.1730323144, -11.2452962616, -12.1456072698, -9.42917902507, -9.75066084596, -12.4902089244, -10.76325461, -10.2495453882, -10.0696692325, -7.83101325354, -9.68160249681, -11.2012611972, -9.37769680478, -11.3548260447, -9.56939528372, -7.55818751635, -7.94327560797, -4.51860599279, -5.96428843721, -7.43356147407, -5.53530146882, -5.1413890716, -5.9311125606, -7.23379839661, -4.92435468262, -6.20244740005, -7.56491772354, -6.43501630667, -7.36860703403, -9.544850133, -9.35905877848, -10.7724736225, -10.1929460888, -10.2769806516, -11.5945844717, -10.2076146177, -9.17566745132, -6.44234561378, -3.03685959579, 0.108979069684, 1.63292321945, -3.08231707893, -3.99824601089, -4.76766751779, -3.92895570577, -5.07233023067, -8.06734947554, -8.50264105061, -6.53794408326, -10.9236159279, -9.30379256484, -10.6467278331, -8.18200271162, -10.059796806, -13.0293717991, -9.35950632056, -9.4789239713, -8.54771091302, -6.87012462088, -8.06314781495, -6.81596908504, -3.64375134679, -2.73147927876, -0.969365998405, 0.046563582321, -1.98724358604, -2.29256165664, -4.43869105617, -3.44517225471, -5.05223966562, -5.70299749891, -4.72847971208, -5.37093764623, -8.65020440945, -10.6837253481, -10.1912707497, -8.08829638699, -7.35358781352, -10.5409366475, -9.59489645073, -11.125325334, -11.7185324629, -9.09013732852, -9.53073643867, -8.2904173021, -7.45330020383, -11.3149293215, -16.3884225385, -18.1348641881, -18.3769467479, -17.1871943902, -15.3328226006, -17.2201521411, -17.6087543443, -15.6965494364, -15.8888438242, -20.0427030899, -23.5741499961, -19.9267862136, -21.7932428801, -23.7805433321, -25.2903769751, -25.8224052919, -24.0756715863, -25.1160211799, -25.546393164, -26.5906593435, -28.3738626728, -27.212679408, -27.8648258452, -26.5382940526, -25.586916026, -23.9564109112, -24.8999843293, -24.5346644423, -25.2946855379, -27.0004062596, -26.6711396325, -25.7663475401, -23.6294743054, -22.2400241472, -23.4733888841, -22.0949183054, -23.7355531844, -23.9509775377, -21.3666238956, -21.0093678628, -22.5848073055, -23.0656215594, -23.2985810682, -24.9971474878, -25.6633129801, -23.0545809277, -22.4892842952, -22.0735508018, -20.7213650517, -17.2799752137, -18.7207128821, -17.1134175191, -17.3409263049, -16.8129416381, -15.0749359741, -15.8271086115, -14.8564727297, -15.8419171177, -16.001723019, -14.7008670014, -15.16605393, -16.5309096861, -17.1568547726, -15.8705096954, -15.0024494448, -15.7021808293, -12.2844657768, -10.5479018293, -7.4518005957, -10.5802392826, -10.4006493629, -11.6842892572, -13.5834689025, -13.0607161531, -12.4155448759, -11.4505012147, -10.3850909339, -11.2515723444, -9.55434784734, -7.43312830104, -2.16593821075, -4.08221762842, -3.73195393908, -1.32326575066, -3.36692537518, -0.991913066176, -3.42123571217, -1.02113081403, 2.74183254031, 4.60885625505, 5.1861551236, 7.94967179126, 7.23625922783, 11.4668733809, 12.9839283711, 13.6676413556, 12.7973009454, 13.1099156282, 12.09218766, 11.5220142187, 11.1301441484, 11.8974589099, 12.6259500047, 12.5506560285, 11.7623224739, 11.9614908808, 11.0550734881, 10.7542274336, 11.4893880995, 12.6656611233, 11.9535123108, 13.1726500228, 12.7314023273, 11.4541551565, 13.5044145125, 14.659728697, 11.3050455557, 14.062830264, 11.6768006716, 14.205718455, 13.2378021907, 13.4086026846, 14.4872875275, 12.9146726617, 12.4278865741, 13.2699726471, 13.326369081, 17.7321012457, 16.1246193103, 17.2657086042, 15.8107330738, 19.1422205396, 20.0189257722, 20.6044386727, 21.7737473969, 21.8620350915, 23.4052117833, 24.4199787578, 25.7428708104, 26.0596029916, 29.900994098, 30.8273076541, 29.2632766369, 33.977461361, 32.9119469068, 36.9031371045, 36.6210092539, 37.3810650386, 37.3800860511, 35.8506871095, 34.5116207281, 31.8895747896, 28.6998961332, 27.2500469629, 26.3289359688, 27.0121527705, 27.0073442404, 27.0392676401, 25.5561594425, 23.8864018552, 22.9447401451, 22.4172756724, 24.8788043801, 25.785845786, 28.6473894815, 26.7868658329, 27.5716168017, 26.4848733333, 26.5473856292, 25.0235839332, 22.9507844486, 22.3705473521, 23.0130013465, 24.5364341706, 26.1916301396, 28.1858461289, 30.1234486307, 32.5482323589, 31.2720236008, 34.5838642411, 35.644628907, 38.5257176675, 42.4925301959, 41.0921638938, 40.5893719849, 39.9537576988, 41.5217578144, 41.4516919132, 40.9703271571, 43.8515189499, 40.7185932407, 40.0531803268, 43.6235911876, 45.0562420092, 44.5143791877, 45.0235896159, 43.1257801982, 43.3970785006, 43.1575387646, 44.267676731, 43.2642346276, 42.2388280464, 45.4752424723, 43.6610022886, 44.6357649311, 45.8362684079, 42.7975292245, 43.2518617821, 41.4902799952, 43.5055420864, 42.3654159831, 44.9633016211, 46.8406823939, 47.8887328253, 47.9668184741, 48.9315527199, 52.0774477511, 50.4074982543, 49.3129414837, 53.6993364348, 54.1705941421, 54.5423200842, 56.7860194537, 57.1697614709, 56.1456841836, 57.7825365701, 54.5700332444, 54.2747855578, 55.0148321021, 56.3828996237, 56.4979510016, 55.5551435977, 58.6687455234, 59.7987737712, 59.490021811, 57.7925471809, 57.7848243747, 58.1126777348, 59.2771454495, 60.3714657896, 60.4654095288, 62.0979812011, 64.0445832126, 62.3265390894, 64.433462931, 66.0708752918, 66.8132448713, 64.919562555, 66.8318835583, 66.6807507547, 66.3618170889, 64.7141243477, 68.0190617941, 67.1748720444, 66.7790297365, 67.1344583348, 68.7205666699, 66.8746665317, 65.4228818483, 63.6824943346, 63.2110711395, 61.4630477416, 60.160529121, 60.0023262306, 61.308739689, 63.1511086518, 63.9968569346, 63.4103923724, 62.8785884775, 63.1801833899, 65.6496168924, 66.8742131604, 69.4065817654, 66.9407261063, 66.348872735, 67.8490003057, 66.3591373994, 61.5285102571, 60.0786185511, 55.6865152346, 55.4261810103, 59.3586831537, 58.5617655876, 59.3370454932, 59.8693996196, 58.4997380382, 61.3595077562, 60.6908718815, 56.0713399861, 58.9818262092, 56.6953229396, 55.9019733387, 56.7590598976, 57.0977619898, 54.7502581374, 56.4088301793, 56.3319197665, 56.5191730601, 57.7448195729, 57.1951254613, 57.4723658916, 60.7836321755, 59.5657474523, 63.3232262653, 63.2017233682, 65.0418743014, 61.8925706021, 63.8624216121, 64.4870835027, 66.3342804835, 70.5746462219, 69.5412971747, 66.1308154526, 65.072105087, 63.9830876463, 61.425255881, 60.7530095384, 61.3581366493, 60.3132497969, 60.7165011718, 60.2314953019, 61.1103637904, 62.4995182621, 63.6216438761, 64.5448830092, 63.7572127674, 63.8412024403, 63.2765181115, 63.6584882487, 65.9013307744, 64.8794091133, 62.3599178175, 59.0226125922, 60.7843513319, 62.556626775, 62.3464276, 62.6287127393, 62.7824361713, 61.9148039496, 59.6383012348, 59.1349526478, 57.6856738612, 58.3342304827, 57.2040584005, 55.9491561977, 56.8243075432, 55.0884209903, 56.8794368898, 55.285452174, 58.0693251387, 59.7783520447, 62.5440804306, 63.1427439828, 63.2173713084, 65.5492712044, 66.3009604696, 66.6940375158, 67.8726403748, 66.771771401, 69.8100758199, 70.4313785817, 69.6078541068, 68.1961598081, 69.5945761468, 69.7547279655, 71.737612621, 72.4832271444, 70.6844975053, 73.2479102143, 74.2757903207, 74.0251073728, 72.6113826391, 73.7521518798, 74.51406016, 74.9694116435, 72.2454743118, 71.1529155199, 72.087158784, 72.77217393, 71.778467844, 71.7533884196, 72.736839194, 72.9313807389, 72.3826989006, 75.869437254, 77.6021138202, 76.6294127673, 79.0019216484, 81.4762500799, 84.2385393944, 85.8238219283, 85.5760074495, 80.6270824484, 84.7759731016, 84.0918935393, 81.4937948004, 86.2164901735, 83.1733890063, 83.4503710474, 82.469403447, 80.4361206696, 79.2584155092, 80.0119982236, 78.9468764208, 79.171276713, 77.2525971309, 76.8162765189, 74.2080827849, 75.0750644022, 70.4276889275, 68.889748712, 68.2728662039, 71.2782704572, 69.4696507855, 69.5264757893, 68.8814630763, 68.5369706541, 67.6833912747, 68.7605061811, 71.1359403938, 70.6514105765, 68.1477343287, 67.0681859241, 67.0143174695, 67.3309641758, 68.051288646, 67.2024340697, 67.522050559, 67.7768475243, 65.9401471412, 66.1606463793, 66.9394316429, 68.3787264063, 70.1164009085, 71.5875038748, 69.4863500194, 69.503932177, 68.4593671173, 69.7260909554, 70.3114451756, 68.9902131352, 68.1104721958, 69.6990612438, 73.4661064448, 71.2599777213, 69.8595185982, 69.8563665114, 69.1884587717, 70.6731408565, 74.1189893226, 72.6613288594, 70.601515339, 67.5954381813, 64.8042814989, 64.368869946, 65.030008523, 65.0750925331, 65.2120176045, 67.0617269418, 69.5072301416, 70.0417127449, 73.219968293, 74.4577736319, 78.6334179825, 78.4998247775, 79.4984869678, 78.2933075197, 77.8802690836, 82.1025258923, 84.2673838315, 84.5024079994, 87.9125780504, 84.9027605109, 83.4489526179, 83.6203632289, 86.0516726291, 82.9342348231, 80.5382639536, 79.4315811918, 79.4709527024, 77.833266341, 72.9443818607, 71.8695966992, 75.0071259156, 72.3356105012, 74.8382695529, 73.9867068264, 74.1502448275, 73.3961146984, 74.6866475558, 76.1647130381, 81.3792454538, 83.0898140881, 83.5703481672, 83.3619488417, 79.8434495299, 79.9798284671, 78.7834261893, 80.2016337124, 80.0854233355, 79.5858995036, 82.9467070041, 81.0584297251, 82.3406042543, 82.3497075558, 82.02318963, 83.4218032879, 81.7436225133, 80.6308856437, 81.8953039976, 82.5536304317, 83.8170600513, 82.285337025, 83.445632418, 81.6442593082, 80.8701149169, 82.2632316989, 81.8132870898, 83.3743074098, 83.5245415036, 80.8755582912, 82.641331334, 84.2105682984, 84.5059549198, 82.8742303999, 83.4868755931, 87.0114564693, 85.0548085735, 84.6732648307, 85.3988840053, 86.398073196, 87.635826975, 85.125332009, 86.7850600206, 88.7834352317, 88.7121604182, 90.4957720327, 93.2530966351, 93.7006763997, 95.9122515356, 90.6071562219, 89.6360388581, 89.7689351168, 90.508488805, 90.8024094231, 91.3521511706, 90.8740843537, 90.6114494675, 90.378597497, 90.4905410862, 91.8700449357, 92.0920913333, 91.3769153169, 92.9084047541, 91.9801147605, 92.2725572176, 96.2282955953, 97.6011351014, 96.3048425226, 92.0017330229, 93.6998482244, 92.1516547087, 90.4886979463, 88.7565861076, 87.1598017971, 82.6225983227, 81.0225331869, 82.0096206011, 79.7153256246, 79.2710505653, 80.7829985936, 79.3561148892, 77.4492923931, 77.210016984, 77.5214035384, 77.9476673686, 80.5921028916, 80.4612388252, 79.9060554572, 80.1382417279, 80.9408844523, 80.3270430752, 81.9091714899, 83.4775154585, 82.4026664316, 79.5633067904, 80.5511571044, 80.0485082617, 83.8785852927, 84.0499914594, 82.1064077627, 82.6537411793, 83.8663351885, 80.5428108202, 82.8996714899, 85.6714275061, 86.7391232939, 84.7512994856, 84.7123969168, 81.1873842526, 80.2613181049, 81.3452681394, 80.8831808646, 82.1562199058, 83.6822931961, 85.2977827713, 85.3698398712, 82.9174494353, 80.7415153155, 82.9815591522, 83.7999967628, 85.932085419, 89.1889236698, 88.1228474501, 87.8773812519, 89.5473733898, 86.8021469904, 84.5604303088, 83.7426210713, 82.2049861386, 83.6368939144, 82.2237844715, 81.8154448647, 81.3624534674, 82.867351418, 84.3284800652, 81.3763481066, 82.9182259427, 80.672995694, 80.297248479, 84.7274219803, 85.6342701532, 82.6644946146, 83.9627659672, 83.9236946689, 83.9318005501, 85.3685800687, 86.0838994658, 86.5992794351, 86.1049833089, 86.75811886, 86.7870200065, 87.8954686811, 87.8070648794, 90.0322693794, 87.4410457048, 86.1615654814, 83.9933370833, 86.9096744723, 86.4147198163, 86.4025383343, 88.4553477356, 87.6466679167, 88.3482345117, 86.0620340473, 84.6692035945, 84.6585094628, 82.8138595718, 82.6674980887, 83.341210921, 81.8268587004, 81.8221647291, 81.1626053843, 81.0605562215, 81.4263206798, 83.2503682057, 83.7745917531, 83.4576028874, 83.2552141865), y = c(-0.700740641367, -4.22733500259, -3.34519351254, -5.24047112859, -4.32950676893, -1.73642938603, -2.3381318465, -1.30013798663, -2.34259102965, -4.7097973579, -4.23048596248, -4.10616597806, -1.13721249399, 1.74712441174, 1.80643215496, -0.124705468256, 0.102956881674, 2.64455174559, 7.09865480876, 7.73096240707, 5.28471390777, 5.51769873795, 7.12683622781, 4.50019074477, 2.52413981475, 3.64347006815, 3.61278891617, 6.51152605854, 5.48328245565, 5.40856991004, 8.64836165268, 5.91334066238, 7.16087183589, 3.81874739194, 5.91445517137, 2.73910572933, 3.4407373475, 1.95976785907, 1.56912431386, 1.82004530701, 2.30859612784, 4.71190833401, 4.96312665689, 3.87900776269, 3.6593098265, 1.45670185071, 3.88182449209, 5.39948443233, 3.96718200593, 1.9488183581, 3.9479819188, 7.83451461542, 8.56589803804, 7.7310518376, 8.31775522172, 9.97283206773, 13.2463670971, 10.9945336731, 12.2495484244, 14.0415730809, 16.6293019839, 15.0291460903, 13.0824559956, 10.5367290223, 9.64205800185, 11.0593758696, 10.7153014807, 11.6048402682, 13.2993655519, 14.269770172, 11.8779394773, 10.2044199848, 11.9941296665, 11.6086286077, 10.8771148302, 12.1471584567, 13.7470205419, 13.1859361609, 9.99738017586, 10.8165553423, 13.316755317, 13.7152634092, 12.2107000853, 15.0443797447, 14.6645775769, 12.6720842816, 12.2765703434, 11.5865592883, 15.0386241033, 14.8086388877, 14.38172374, 15.972652947, 11.9502172712, 14.8274167915, 13.8000108549, 12.5763980744, 13.0507246596, 12.8988381066, 11.3192324574, 11.4972312402, 13.2576588091, 11.7783077974, 11.8074163343, 11.1902078172, 9.8321075529, 10.4190490585, 12.1367497976, 10.7340548561, 9.4353144921, 9.84572680661, 11.8166301711, 13.1902267237, 16.531929775, 14.5160183021, 13.2067683804, 16.0587565885, 16.6589947384, 17.775075397, 16.7175319908, 15.8155358994, 15.2291513455, 18.1548696074, 18.8402892211, 19.5398583822, 21.3314002847, 23.7686875282, 20.5097221456, 19.963715331, 19.0940279119, 23.7959290405, 23.731710376, 23.8037280612, 22.168392284, 25.4801344554, 25.1081602361, 23.5406661947, 24.0235635704, 24.4342082776, 24.5569892583, 26.4305318007, 25.4583993882, 25.5850406421, 27.5063348569, 27.1283228702, 27.6272503917, 28.7066009336, 25.2119681238, 21.6129141224, 21.6667734971, 20.2669203931, 20.8963156826, 21.6112416379, 21.0532124933, 21.0271501084, 23.5926488619, 23.7113539633, 20.5972953923, 22.193048598, 22.5631229594, 22.3670798207, 22.7059183118, 19.5075149221, 19.5547584336, 20.9416508807, 23.1327764914, 25.8377240693, 27.4547762178, 29.824991361, 29.2119719658, 30.0751029748, 28.8911085742, 30.3106725789, 30.9537801787, 30.6979288799, 33.6101241413, 34.7156933038, 32.6152141304, 29.9390499933, 28.8718605516, 28.4642004692, 31.0870109898, 30.8146949434, 31.7952399659, 26.6652408612, 27.733688094, 32.4214525586, 31.5027043162, 30.381276834, 30.3311599706, 30.5754512353, 29.4973907107, 31.4015561745, 32.4306783155, 31.8700452621, 30.0377180911, 27.775609339, 26.6830458681, 29.4868611888, 27.850203162, 27.6808277266, 27.949305082, 28.0050732116, 28.3579290815, 27.1917571537, 26.1306135526, 27.9902039763, 26.1612151859, 29.0764431829, 31.621314499, 31.5604653763, 33.6175696154, 34.8852254255, 32.8592301026, 35.5803975575, 33.6883478249, 33.7598123075, 31.4246185388, 32.2457728668, 32.0553366374, 32.1852216477, 33.7094450635, 37.3336470163, 37.5001204632, 36.217875068, 34.4166574493, 35.7019209552, 33.0631107621, 36.7830479701, 34.3503104018, 32.4182960734, 33.0874837273, 31.6697229812, 31.5067589649, 33.5265854996, 33.260232581, 31.9815176406, 34.6105557252, 34.3388886128, 34.0368793254, 33.6522919004, 37.6217247333, 38.1669514235, 40.4074781547, 38.3615992404, 36.1629611723, 35.9671510871, 38.1361290612, 35.8922649915, 38.1512572094, 36.5074675872, 34.4116714257, 31.111860568, 32.5383729834, 35.2397798857, 35.9621849496, 37.5523842005, 39.0982258029, 36.2376156354, 33.5426655784, 33.4427675666, 32.1796879463, 30.8483901618, 28.9933318391, 29.0362960255, 29.083610239, 29.4490072648, 32.1292923777, 31.8902730065, 29.3961270134, 31.9836195384, 31.6268345271, 30.1327992644, 29.2216379993, 29.6910120974, 29.675504607, 31.0756789149, 32.0882607374, 35.0711908, 36.2767191403, 33.9766510411, 32.0225494181, 34.4973538692, 34.5773374195, 37.4277541103, 35.504596674, 35.9273889243, 36.5458670633, 36.0655211794, 35.0428648999, 37.0379878754, 35.0061792353, 34.7827095055, 35.760669295, 36.0640632276, 38.4837054196, 36.2773643104, 36.1001789797, 36.0073696909, 37.3077181, 38.5705229883, 37.4042295093, 37.4460198924, 35.2902469539, 35.601462242, 34.2983513601, 34.8451171091, 35.4879083312, 35.7167921169, 36.490065193, 36.8182577334, 40.4488942714, 41.9675069345, 40.4959269289, 38.5710510681, 39.1212421814, 40.3298431263, 40.0574197111, 40.1668906257, 38.9630904754, 42.9121381512, 43.8760216992, 47.8844760906, 49.672509939, 48.1353811579, 50.7479445394, 54.4067440874, 55.3450281215, 52.1811636149, 48.8631989788, 50.5817919321, 52.8849774277, 53.4643860136, 51.6473538987, 48.9965418284, 46.2631850528, 45.3368321015, 48.2830767987, 48.227357545, 49.516915907, 49.2653158104, 47.6360181359, 50.1431325636, 51.1987588188, 48.9833528519, 51.7966301722, 49.8599379486, 50.5195405746, 49.4937293472, 46.6827494083, 43.1872880239, 41.6743498113, 39.7400824276, 39.7163473301, 39.3089980528, 39.7604110371, 39.7244365155, 39.5095813604, 42.381926836, 40.9419824164, 37.7290971952, 39.2191189819, 40.2914154466, 38.6446692128, 40.0703253249, 38.5069541771, 36.7938469257, 34.3614107684, 35.9538803102, 35.500839439, 34.3653931908, 32.8158290408, 29.2222936842, 30.7686890105, 28.4040666168, 28.5312536795, 26.1965284108, 22.4664646236, 21.3013679647, 19.9829463221, 17.5881209976, 19.6186456516, 17.666502843, 20.3321325922, 19.6052143049, 21.1606141981, 21.226544152, 22.1047296409, 19.8847370899, 17.6545975117, 20.4855890392, 20.7811131318, 23.9645490672, 23.9022683678, 22.076111249, 22.1327357741, 21.5358094603, 20.5454301939, 20.8815304134, 19.5545852842, 18.9487489556, 19.9804235995, 20.9552664912, 20.9991734474, 23.0159732477, 19.645716366, 18.7469848157, 22.773372402, 21.6180201526, 16.5619591882, 16.0826932042, 15.9095629564, 15.4177152362, 17.1511852596, 16.7861675454, 14.6804803501, 17.5389058006, 18.9998899394, 16.3309567446, 16.7445589308, 17.8108075583, 18.0530705829, 18.3260094143, 17.6218193885, 17.628553479, 17.5990205773, 19.9746041709, 19.9943389266, 19.260144183, 20.4791083201, 18.9969208525, 19.4108668078, 18.4259319455, 14.7542145805, 13.9133361325, 15.0420822945, 15.6969235741, 15.1917155805, 14.5554948706, 14.1340096552, 14.2588080213, 15.8725326603, 15.7762382525, 16.3447980848, 14.5692199212, 16.5449929368, 18.233346642, 16.2822191871, 17.1302810015, 16.180456143, 17.6190658156, 17.0400574771, 17.0901759052, 20.1365140701, 20.0968112049, 20.1638651692, 18.5973309814, 18.3838546297, 18.8788272297, 17.5883413035, 17.6763630617, 18.8841176922, 16.4960327806, 20.2475159766, 17.9811059961, 19.0199083998, 20.9844282471, 20.4532805028, 22.451920476, 26.8731608968, 25.5172148275, 28.2824425852, 32.1307085325, 31.2733341042, 34.296973307, 32.7665124741, 30.7742970573, 29.3627066827, 33.8068234405, 33.6282257154, 35.1264609407, 34.0133957295, 36.207499146, 35.8304873756, 33.2039114864, 35.5103705367, 36.840122754, 36.2922703013, 38.407097006, 37.3893274262, 37.5890915846, 36.3775631146, 34.5262331866, 31.7814694834, 26.8532069525, 25.4313270347, 25.3925322804, 30.201410772, 28.5309914324, 30.6139417189, 32.7009242984, 31.7929754749, 31.6160635543, 33.0725106145, 35.6071433922, 37.2381371048, 39.7718933248, 40.6215854061, 43.5802635305, 46.8671846643, 44.7361812229, 44.9218496807, 42.5555334128, 38.9724393267, 38.3208281754, 38.3228697221, 34.1742511636, 36.3028928898, 36.8538353131, 35.0982488485, 34.6325983125, 35.4730294559, 36.4374616557, 36.7406967586, 37.253370556, 35.0144023181, 34.7703415116, 32.3564340407, 31.319200939, 27.8411907354, 30.1206135734, 32.165068159, 33.200585906, 36.3110337077, 38.3523053131, 41.0245234881, 44.0176399777, 48.1018712827, 48.6413481561, 46.3792118443, 48.720885009, 48.1651024841, 46.9311889525, 49.2704955987, 48.7819561313, 52.2185796397, 51.8831607765, 55.2371552195, 55.9413926763, 53.6517496057, 54.4772953217, 54.2748921377, 51.848752617, 51.3608680751, 52.4865507734, 52.7636179337, 52.1726890096, 55.3672096376, 56.0972976478, 54.4637483461, 53.6133703098, 53.1712985541, 54.0265425641, 55.7634565489, 54.5096769969, 55.8926032539, 58.0694995448, 56.0534469645, 54.9102995782, 55.8481369293, 55.9720353986, 57.1619054552, 57.8337308384, 57.261471799, 54.5651324505, 54.8487785441, 53.3555991929, 53.8467519794, 51.81255424, 53.3303021639, 53.9344080818, 52.8830548737, 52.69287293, 51.744189314, 50.7609764404, 49.7335987815, 49.6569398989, 49.6938423712, 48.6514842993, 48.8778956164, 45.9099100841, 46.5975962591, 47.9418625841, 46.7127570376, 46.0396229346, 46.670646749, 50.4428817305, 53.094488002, 57.1518572862, 54.2922383885, 52.1426976397, 51.1399077416, 49.8859092241, 51.3027303967, 51.4069892835, 54.2460519984, 52.7325361079, 53.1686555354, 57.5415858633, 58.0711760017, 60.2641434129, 59.5190444897, 60.6810033156, 58.6183119592, 59.9264633604, 61.3128284876, 58.7140573568, 59.3065514253, 60.4961468039, 58.2816946134, 58.5064439032, 59.585595486, 62.8181050404, 60.8438065681, 59.905363601, 61.458224663, 62.6463256602, 64.3433756259, 64.7761315044, 65.9823533761, 67.9171601341, 64.528432919, 64.1376257686, 65.7718805393, 65.3221164152, 65.3230211651, 63.3273775829, 65.0911693371, 65.126061715, 62.7102452675, 60.847373958, 61.4991410393, 62.432284537, 62.1398030232, 60.8136911433, 60.2559561398, 59.0151333726, 59.8615606151, 56.396068951, 56.8863654071, 58.8782086435, 58.2483313497, 55.6489213181, 55.7191011049, 50.9012183084, 50.8439548996, 49.8376594489, 49.4873065723, 48.4471858245, 50.5612103333, 51.5151020609, 52.9467558619, 54.6413888108, 54.0813529211, 54.5480233494, 56.0669110967, 58.1829640752, 59.6616610095, 60.1568237094, 59.2945429911, 60.5660700305, 57.4948310868, 61.293441506, 60.2266959515, 59.3574992038, 58.1270997967, 55.4882036932, 56.9587217291, 58.3641382398, 55.2394997046, 58.1812156491, 60.7135183312, 63.6496432431, 62.3672861501, 63.9529979124, 67.0465929116, 66.6977751528, 68.5222314146, 68.7038354795, 67.0455156956, 68.4271912486, 69.3039685181, 73.0303791664, 72.0227502463, 72.7424528094, 74.7226267021, 78.2809707848, 78.0702074907, 77.3926222174, 78.5477133283, 77.2777665593, 77.7758244404, 77.7198051373, 82.0069690036, 81.9654877981, 81.4670173169, 81.859762936, 82.1404788566, 81.5444729019, 80.5662916968, 82.2062620166, 81.8018008036, 82.1231001906, 80.3520169868, 80.7056042369, 80.7908196452, 80.3123859573, 81.7481281556, 80.5166896617, 80.1535777549, 83.6768136477, 80.6828687483, 82.7557975977, 83.3451475631, 83.2705088883, 82.1674892945, 80.6846709471, 79.9601986432, 81.0161075769, 82.0119798897, 80.0582990579, 81.0563236049, 81.8780614569, 82.9730408312, 82.4736935282, 85.1259021459, 84.9951099718, 86.3350015799, 89.0801788625, 91.1618770961, 92.0245812291, 94.9099153677, 93.8119943765, 93.6088503301, 95.8466004165, 99.8482695865, 100.38147662, 101.917547766, 102.047441065, 100.220468206, 100.623967374, 100.388544515, 102.958306608, 103.205290748, 105.00650426, 105.014336077, 105.410987873, 105.775481044, 107.763394618, 107.678309938, 106.943756839, 108.619593916, 108.763371838, 109.75021844, 110.650073292, 110.574149081, 108.873326265, 109.323247052, 106.088962552, 104.070390529, 105.777122704, 108.108730226, 111.25955063, 113.636501082, 113.716543809, 111.310604446, 107.444630975, 106.66884291, 105.449898824, 103.875445848, 100.161488187, 98.8995295179, 100.328992852, 98.9014877286, 98.382443123, 97.7004225982, 97.902597891, 95.2516621866, 95.0091319337, 98.4128875076, 98.6493974041, 100.200722685, 97.4620362515, 100.497215393, 100.164009774, 100.668133029, 100.831253785, 99.4347053374, 97.4694190789, 94.4923714117, 93.6346465981, 97.1940586901, 99.2745506798, 100.259419403, 100.381714307, 102.318822862, 104.923174657, 105.262017439, 104.89535123, 102.724932504, 106.885434515, 107.296568113, 109.677372477, 110.244997574, 112.972280061, 113.770689702, 112.447973781, 111.929817938, 109.683851439, 109.729777899, 107.543621393, 107.720007956, 108.383666809, 109.884759957, 109.451061005, 107.119968211, 110.880869888, 109.671317908, 111.685571, 112.068129699, 112.238443359, 110.373235439, 107.13981872, 108.460255422, 107.852363793, 107.962763192, 105.434793208, 104.31450059, 105.659450933, 105.209314833, 101.225949442, 101.38626022, 101.72557437, 99.9749693299, 98.4249757103, 97.0726429857, 98.0850669196, 99.4273482715, 96.7433242896, 95.5238646249, 94.1215445115, 95.2690448375, 94.1455902179, 94.5973552822, 91.4508210957, 91.2633566343, 90.1397536743, 90.4380280046, 88.7336234702, 87.7229250192, 88.5849568842, 89.1040602154, 89.4868187862, 87.5479588909, 85.5565688084, 83.8967949143, 80.3271561616, 81.5367721746, 82.0298796131, 82.9367820762, 82.3484956442, 87.0882571274, 87.664675965, 88.6844548417, 88.7573432478, 89.0599003612, 89.4110912413, 87.9541540988, 86.4281991775, 89.5501094016, 89.6336680743, 90.6144708375, 92.7357008268, 94.668797149, 95.4885615438, 94.8313569272, 91.7990584827, 91.9975438029, 94.3027038624, 93.6946814421, 95.4648550995, 96.4435168654, 97.6794207989, 96.6941401676, 96.6412968985, 97.1394201533, 101.778969087, 100.575470447, 102.247049226, 97.6661633661, 98.0712180542, 94.9227695074, 94.6177145991, 94.2624268664, 94.2742431827, 94.6822975593, 98.1888671577, 96.4703330933, 94.7959354647, 97.0898539043, 98.0912343676, 98.4246615228, 98.6251339784, 99.1031270327, 101.237821491, 100.539437022, 101.143722621, 103.171131881, 102.642090109, 99.9188358045, 103.427464292, 102.194604795, 100.241009447, 97.8488669343, 97.7099690515, 95.4514887557, 93.4573210777, 95.0153902399, 95.0912622925, 96.8290883409, 97.0865910729, 98.4342438514, 99.0261941878, 98.0914537679, 96.4118630687, 96.2441449337, 96.7250885356, 97.8263633513, 102.078578894, 102.358153173, 101.260322329, 100.253639556, 100.09962594, 96.4704670312, 93.3844772478, 93.4465866379, 91.9877303052, 95.1081306581, 96.2118417964, 97.8692485043, 95.6187344165, 94.5624422428, 92.6951390502, 94.7674810825, 93.8314145597, 92.7782697925, 93.3318849959, 92.1822359831, 92.5449501278, 91.4621320935, 89.1184249619, 87.6884074041, 87.5479230861, 88.6184233703, 89.8936065288, 88.3976997364, 87.6289445027, 88.1619767514, 86.9260956198, 86.8496457434, 86.8352328661, 89.4041620719, 88.8870714697, 87.2628431943, 83.4868902306, 82.0681940604, 81.9235987646, 79.9072468464, 79.720871665, 80.7452985326, 80.5317605669, 81.6294487468, 81.0016427656, 79.7308619627, 77.7413311474, 79.5356548694, 75.2984617463, 72.8950525578, 73.8448490243, 73.0749368338, 73.6608636764, 70.3327246889, 72.4464412351, 70.2435433491, 67.5560806982, 67.0133581711, 69.5200988351, 70.5016600707, 69.6441177446, 68.8142210831, 70.9338888156, 67.84331135), diff --git a/auto-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt b/auto-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt index f726df55dc5b..d397c9d02be3 100644 --- a/auto-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt +++ b/auto-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.858927762914, 0.759678101763, 1.6178351592, 1.87830282065, 0.809847170863, 0.268555760283, 2.30810416239, 0.282888011561, 1.75225768912, -0.0858584825427, -0.664926809221, -0.548288732801, 0.935236191463, -1.02421230779, 0.644847152488, 0.0793568349027, 0.376719868063, 0.462240513173, 0.973028103151, -0.114269985428, -0.033940830122, 0.811377010177, 0.173216762098, 1.13050378279, 0.553484661867, 0.440805181912, 0.148990837935, -0.493219257424, -0.40049507589, 0.624356936003, -1.34714271255, -1.33109047124, 0.580407752205, 1.31228189798, 1.16625104479, 0.372976659017, 0.33595979347, -0.791263889586, 2.95679346521, -1.44635853127, 0.802371733213, 2.69594639721, -1.80577115012, -0.585443782182, 1.74147234306, 0.0551660441537, 0.218995819792, 1.56944606413, -0.947713487167, 0.21531704968, 0.283274664607, -1.03433101051, 0.427567525355, -0.29651815918, 1.71666047058, -0.0124001672318, 1.25319441867, -0.94507428328, 3.09647680347, -0.287215190821, 1.45119951375, 1.69922212558, 2.69850672147, -0.0289175063451, 1.21716676273, 2.46646810578, -0.112577515009, 2.38520630018, -0.894226360843, 1.38400031789, -0.769002241532, 1.92561814496, -0.296718019513, -0.718227769059, 0.208753284183, 2.52782757368, 1.9361555668, -0.754003559785, 2.14063096306, 0.779847993597, 0.502973381133, 0.798184138778, -0.401231296439, -0.758368669985, 0.44767244853, -0.188431184199, 1.79497692012, -0.625306719407, -0.615724277639, -2.06735998972, 1.06474596869, -0.128866941481, -0.452517179795, 0.0200862867444, 0.421379325457, -1.0878312666, 3.09022738748, 0.0277330763081, -1.59553907708, 3.02447398417, 0.742938898095, -0.0669009525229, 1.11353510686, 0.349691325914, 1.27464565235, -0.849660878806, -0.718772836336, 1.4081636604, -0.753321894364, 2.51796096719, 0.623461242752, 2.47835521332, -1.53642964244, 0.159871420819, -0.395698796269, -1.11679091882, 0.448245168587, 1.55502024702, -0.343749743664, 0.724058499487, -0.686090692568, 1.32581077832, 1.25616394504, -0.484964890584, -0.460271614238, -0.841487231275, -1.36820594572, 0.90824794356, 0.67051351088, 0.0212121330424, -1.12267184074, 2.52453987516, 0.0849019587581, 1.7420758675, -1.0027007829, 1.9055764672, -2.14654088662, -1.52908707279, -0.640644116837, 1.67643856705, 2.25602889401, 1.83134219276, -1.72010278768, 2.74926371156, -1.74782046385, 2.00838277274, 2.77375902631, -0.809602500716, 0.444810361123, -0.862546878298, 1.9793213189, -0.0161110137557, -0.567182783683, -0.0148935369382, 1.29136015936, -0.447459511967, 2.01203302064, 3.65266094596, 3.51134603014, -2.60770981104, 2.24846069441, 0.966890489218, -0.880918847259, 1.56450901864, 3.23166864465, -1.18467635833, -1.64698877553, 1.0999706466, 1.37462800435, 0.0355155515869, 1.68461213782, 2.80665024521, 0.934728277386, 0.102742523087, -0.142481480764, -0.984400134993, 2.5408834026, -2.64514400656, 0.193597356785, -1.58222850849, 3.09908565915, 3.5367959438, 2.82880122941, 2.71306112901, 1.517531762, -1.60549123973, 2.06582826664, 0.415256545358, 0.802958397668, -1.83345209613, 2.89468274141, 1.08320823732, 1.10851585661, 2.35824916881, -0.0895465416277, 2.07564212248, -0.540300516929, -2.51315675561, 2.56087015306, -1.68477549995, 0.159617997414, -0.0096568387549, 2.38189315442, -1.77047179409, 0.823566144949, 2.19725973561, -2.30700971811, -2.68543507278, -2.09356427203, -1.62280421582, 3.5241757433, 0.982110745145, -1.44340169645, -3.1226208118, -1.79323527952, 2.37436121305, 1.41047281102, 3.94967038564, 0.890115902236, 1.29209752987, 0.157511695483, 2.03596315641, -0.239538147332, 0.667456763767, 1.46034222522, 1.42065240797, 2.40161812211, 2.81953536735, 3.1390491576, -0.809424460922, -0.613515342979, -2.37597124604, -0.102454450897, 1.10278080375, 1.35979036965, 1.43984057107, -1.32602471093, 0.232247238328, 2.22467629273, 1.32827158852, -0.592266211766, -2.2764609507, 0.377205738192, 0.353227718086, 1.93656584033, 1.9508653414, 1.38500252215, 2.73544615079, 1.1370189711, 1.87643818509, 0.935931377767, 0.147656457965, 0.707402783465, -2.27034360469, -0.21549529712, 1.84701270869, -1.59166018736, -0.0899279120141, -1.76780153178, 1.63174609695, -0.928495296123, 3.19960649446, 2.33011909541, 2.39706138327, 1.01785296718, 0.658242617297, 2.66337911939, -0.813082076212, -1.43347515326, -1.81743262746, -1.23249869238, 1.70358645138, 2.34830652544, -0.0312840792134, 0.556217873043, -2.09254676742, 2.20147446573, 2.26118757695, -0.13608553051, -1.17785812512, 3.00970271063, -2.38857976504, 1.60700925067, -0.31031752125, -0.0530433912159, -1.92633563006, -0.792793130711, 0.294658223896, -1.07807475309, 1.77597120332, 2.30471864914, 0.735157921792, 0.30693398648, 3.00091538111, -0.371353401071, -2.71001705707, -0.341155396452, 0.522613457871, -1.93085965936, 2.79478499215, -0.313871029869, 2.12051092648, 3.00141389588, -0.00535802781989, -2.0777556239, 0.717521153879, -1.96895226957, -0.123500384528, 3.82298949539, 2.64457625817, 0.851122568224, -0.433454261117, 1.32732171987, 2.92422971474, 1.60461821114, -1.57943427664, -0.471902204405, -1.71156258393, 3.66543091282, -0.79395254324, 2.77030702295, 3.92417977108, 0.178819511546, 0.627177838003, -0.107267457054, 1.03713811579, 0.852699587768, -0.710137602566, 2.59665240922, 3.51028489298, -0.0302576844334, -1.57247826785, -0.268406153014, -0.238958380149, 0.386329291232, 2.75650827998, 2.65374593439, 3.32308579008, 2.63394725262, -2.31611284957, 0.792368481101, 1.75250198315, -2.0863833566, -0.580824210252, -2.37313764374, 3.15809501972, 0.119166412194, -0.408202532592, -1.40792875754, 1.73369421215, 0.853135858155, 1.76013699958, -0.470156083617, 1.60540076601, 1.91131704998, 0.800832273894, 0.877989562347, 1.02142060122, 0.775024681003, -1.03816091377, -0.67240219194, -2.08830184156, 2.07126969944, 0.589118614708, -2.43246352324, -1.775012952, 0.338603801466, -1.36587825694, -1.01785435861, -0.251202362196, 0.240488465005, 3.37427125017, -0.427744032382, -0.0160438693411, -2.12360820093, -0.0136300160675, 1.6457583931, -0.398113568909, 2.53618579496, 1.99732502068, 3.03757893274, -1.542951805, 3.29032020554, 0.408597217183, -0.784512643074, 1.92727780511, 1.53237207726, -1.21123169572, -0.533099191238, -0.648573260417, -0.413723569224, 1.70961621052, -0.438637351355, 1.28189816388, -1.00815357379, -0.355421335745, 2.31287621579, 1.04410395208, 0.712592911641, -0.706727456723, -1.8960033809, 1.67320401337, 1.80477328126, -0.24666442478, -0.16108368822, -1.56370587204, 2.06107198416, -0.195931176216, 0.177288395826, -1.20729352235, 0.294135054063, 1.09730702538, 0.203291908383, -0.965609543176, 3.29553773891, -2.74479491047, -1.53148234693, 0.182945314599, 2.79105526804, 3.00847199565, 0.371686924352, -1.4676453197, -1.36196230158, -2.25640972442, -1.62081764515, 0.819163569299, -1.87813351684, 3.64231404007, -1.81342504306, -2.67452608479, -3.09528194535, -2.43224150927, 2.33231557534, 0.926829077971, -1.7157590476, -0.346085084905, -0.976704966679, 0.174122242602, -0.709571668723, -0.814946854616, -1.18937177368, 3.22661237692, 1.76487935387, 4.02168707708, 1.54253760561, 3.0684272825, 1.0766193676, 4.15039042142, -3.89394265607, -0.556788955049, 1.13104626799, -1.55159845843, -0.198247541327, -2.76365241834, -0.0437864059995, -1.1073471829, -2.22224941621, 2.18238487631, -1.88335356177, -1.44496819666, 1.15761562632, 0.601653653672, -1.52132522619, 3.72553746998, 3.34108341777, -1.76822827956, 2.77883375288, -1.83153667401, -1.99139499711, 1.97110727621, 3.61045236073, 1.78405333363, -3.07193793839, 3.59599391471, 2.86251718553, 0.756925211083, 3.43366242359, -0.713059647626, 3.34974067292, 1.06337642201, 0.0538352092257, -1.18727079658, -2.58573940196, 3.50750797235, -4.19551857748, 0.866834312384, 4.30363965594, 4.42541330197, 3.61456171231, -1.65607835843, 3.66914469514, -0.972301726054, 0.599171933545, 2.67894428534, 5.10664252733, -3.14997643882, 1.19941589947, -0.879386256104, -0.0259763360274, 4.09510806754, 3.43126239346, -1.18332293012, -3.11943368535, -0.643549187597, 0.123823429761, -2.77618764727, -2.08034348596, -1.12432451465, 0.799946742559, 0.638328163648, -1.29251792259, -2.0542306177, 3.22065702648, -2.46356134508, 3.37201979384, 2.50438240253, 3.97282056193, 2.71881280561, -2.9158864435, -3.28019303156, -3.10078035913, -0.734835442796, 0.959373739046, 1.1559574549, 2.39594583166, 3.13623943927, 3.37614503798, 2.75058031051, 1.50860950621, 1.46241227783, 3.45922400833, 4.72631615213, -3.43100652587, -1.72221955634, -0.975194108385, 4.20553757114, -2.62125819173, -1.13312733822, 1.88730868047, 1.6541632978, -2.59610704346, 1.15081366305, -1.03630719384, 3.45788622168, 0.639681868146, 2.82020884316, 2.37564446769, 3.27115765369, -1.26343773125, 1.45473962263, 0.00286176428154, 3.27535731623, -1.17140282966, 3.09924196837, 3.03267877809, 1.78511499261, -0.778420535471, -0.134379090833, 2.63877606224, 0.18277247683, -0.499556478565, 2.5813620685, 4.31823094167, 2.36684231859, 4.69734629954, 0.946046667237, 2.79465226142, 2.35736099073, 2.45848802124, 2.68120416047, 4.69362553102, 0.638104883716, 3.53346501409, -1.44606032139, -2.56104725937, 0.576801496142, 1.89699102685, -1.6347767405, -1.77764899257, -0.561879823945, 1.86177406036, 1.63059355365, 3.26898808078, 3.3389060153, -1.34368099274, -0.758128145199, -1.53955573605, -1.5992941923, 1.45428245865, 2.2232530871, 1.45384089708, -1.25036293191, 1.88168443914, 2.69946860476, -0.465826890784, 2.62221137577, 3.22855398135, 2.50436997995, 2.51680081341, 1.49805627454, 1.53685767869, -1.06190548994, 3.09158772759, 3.83825570337, 3.01739920313, 2.70321852027, -0.85718483251, 3.00647974554, -0.924208904843, 3.53032679291, 0.947653719512, 3.39073210706, -1.73332260474, -0.625987415303, 0.185971453854, 3.58225086672, 2.43555668298, 2.24681830569, 3.10745658206, -0.439852447281, 1.43443295631, -0.602383078451, 1.88437057044, 3.00661254036, 4.30151619719, 1.88411811149, 0.150312286689, -3.27525815778, 2.67269037181, -0.263319377466, -1.97676943299, 1.70079582215, 1.2141806404, 2.77435948268, -1.51565303988, 5.00882394354, 2.91914631481, 0.457616187688, -0.209673742902, 4.43503073188, 1.19247934425, -0.456937585971, -2.07779156963, 0.380014366574, -1.36371948682, 4.52062607666, -2.69784942812, -1.69672924589, 1.87215121045, 4.223311628, 0.410468836593, 3.79334797798, 3.24742241822, 4.01385774235, -1.90429254872, 1.42196218064, -0.0471062840955, 0.449089781812, -1.29162743202, 2.01299388237, -2.86555061708, 1.10082849539, 0.354190595237, 2.04126976047, -0.104602014704, 4.49224046065, 2.48638342595, 1.19547671213, 3.12986698547, 0.846866021451, -0.497774446696, 0.063062926305, -0.15960487312, 0.25714897901, 0.0292483892514, 3.09038076845, 3.51875485458, 0.327628239814, 4.7135527499, -2.57824908233, 1.73197959972, 2.68889806146, -2.86993925102, -2.97131945271, -1.24845796036, 2.74591831895, 1.93856886144, -0.046903689675, -2.5991560384, 0.386753042481, 2.90890220201, -3.597770169, -3.245774372, 3.14940672678, -2.14693412708, 1.87480014828, 2.20562206425, -2.43906562979, 4.73708106607, 0.0309644739696, 3.87143205026, 2.72726582774, 1.8514373677, 3.15180199391, 2.62604087016, -3.76009831969, -2.38328428959, -0.877221152294, -1.48383897363, 1.75965659589, 2.96591035733, 0.313303279724, -2.83574504618, 0.0800642694519, 3.89167665324, 1.3664003396, -1.71124623126, 3.56450068027, 2.4155653456, -1.43528702514, 3.22765930743, 2.38873811316, 2.02046011943, -1.19882933864, 2.6406229992, -3.2089185479, 2.95026663271, -3.63471156089, -0.649521388966, 1.6117139495, -2.72401626101, -1.96593960914, 2.95105213714, 3.64012858366, 1.54231069852, 3.73179413064, -3.34481308024, -2.22253695946, 1.99122616076, 0.353287297963, -2.79890068692, -1.57167851523, 3.07573913687, 3.4117374699, 0.610616324035, 2.83773059793, -2.19347305082, 0.397884857293, -0.974986607405, 3.24993538791, -0.940966176035, 4.80741215787, 2.82353674993, 4.71588788786, -3.12876280414, 1.43073266825, -0.203993415234, 0.28026234191, -1.55925520286, 4.9552108066, 0.352842398051, -2.49854848981, -0.132552008728, 3.34892003862, 3.05787364212, -1.63091690016, -0.184162785943, 2.68858103873, -1.01947817658, 1.0048399553, 5.22021824018, -0.39720547266, -1.06126498685, -1.9202336148, 0.811020545502, 3.20457894589, -1.33436117346, -1.98105017508, 2.15422964012, 0.451933250755, 4.34961179361, 3.26326396146, 1.17833104348, -3.51756161678, -0.288732549541, 0.893291484464, 3.30353990004, -2.5809991132, 4.09410011471, -1.98888457952, -4.05687907192, -1.18836640137, 1.305382615, 1.65696996364, 1.78966738959, 3.22097538395, 0.755757112515, -0.739925658487, -0.567695467429, 0.848485462153, 1.15101462962, -2.71239439449, 2.86664632354, 0.488249645374, 0.840652578165, -1.42297525428, -0.0755520122848, 5.17287437449, -0.553138434327, -2.64199082737, 0.180841391438, 2.4632414642, -0.232470420282, 4.97254523671, 0.0810415357898, -0.140018194457, 2.56562591725, 0.495424299718, 0.312675639707, 1.93012951594, -2.55568382821, 2.70514247648, -2.79877255855, 4.98854819708, 3.46584615796, -3.06454651661, -0.853701409499, -2.71091365291, -3.57037359194, 3.47088456285, 2.1418569755, -2.68047005472, 3.42043757672, -3.26604803727, 5.33485694131, -0.239895117086, 3.86668928799, 1.24405788081, 1.74723638513, 4.62206564375, -2.38010220025, 2.27356996649, -2.97287257056, -1.4089170725, 1.65998739322, -1.39009119576, 0.768328122511, -1.27493995859, 4.94251197134, 3.98512179771, -0.421039544483, -2.10169947094, 4.55426363574, -0.3367959076, -2.45387540477, 0.843639703699, 3.81233632447, -2.57883266647, -1.3074357814, -0.920415603475, 2.6887645862, -2.76330018616, -2.30186128816, -1.27577642285, -2.19398840759, -0.225242794663, -3.14661318937, 4.15105124753, 0.686238095301, -4.17498322472, -2.39059448319, 0.414929579683, 2.28813450043, 1.83083442469, 0.889450770708, 3.74095175878, -1.94875735935, -4.09874879026, -3.84327926312, 0.74483574938, 3.51170974605, -1.40472903196, 3.07073768303, 3.22055365466, 0.833381130627, 3.39980309861, -0.847013048474, 3.05119077118, -3.12787881198, -0.760331290229, 2.61407497301, -2.38893710234, -3.5566008536, 1.12853805186, -1.47864285073, -0.0767897548524, 4.39411971208, -1.68671668554, -2.66519872519, -2.91712822838, -3.96703065969, 0.488548858866, 2.1308958141, 4.40421079018, -2.54831394444, 2.23456494882, 0.334495725258, 3.99170719064, 0.376688898215, 3.05311987133, -2.261655463, 0.533432111175, -0.384993258895, 1.63706552778, -3.58766606769, -1.23545000999, -2.72899361933, 4.23120961538, -1.32779512678, 2.60724223257, -2.32247877958, 3.31602718913, 2.46547035899, 0.822486751233, -0.0912452696003, -1.14762193636, -2.03760232, -0.196450065178, -0.424021897756, 0.141686829758, -2.05886457452, 1.20232620207, 1.77289886522, 0.760238632869, -0.470403534897, 1.77288860806, -0.699140309353, 1.53081692396, -2.22262482935, 1.61991359828), y = c(0.121607854144, 1.67084933716, 0.671663712413, 0.985942302305, -0.115243084349, 1.33798679839, -0.179934882508, 0.540179686408, 0.21604728214, -0.0302080518868, 0.919135827055, -0.528565328027, 1.83941068702, 1.04539009448, -1.44498718643, 0.561038457617, 0.650872400394, 0.263067896694, -0.0170236540958, -1.08098614985, -1.35846617243, 0.448653432745, -1.21301578164, 0.941622525938, 1.18752171196, 1.07214906289, 0.219255727314, -0.239453747229, -0.988446275058, 0.133817727241, 1.65448647859, 1.27120897034, -1.08102680178, -0.419799996933, -0.447175179695, 0.118451435332, -0.0223066375921, -0.425602183962, -0.411493590312, -0.719385329248, 0.362414702244, 0.743830525207, 2.8060588424, -1.57681491722, 1.97829504919, -0.485791255905, -0.471516165045, -0.970200509502, 0.144654488986, -1.15546801186, -0.798790321471, 1.07185451408, -1.69763724423, -0.369829035766, -2.05203667702, -0.42144791923, 2.43864496915, -0.458928693116, 0.465013834345, 1.77172437663, -0.724872420252, 2.17648511143, -0.353001037496, 1.5056927257, 2.22417953478, 0.160718378447, 2.31296740201, -0.447060221904, -1.66314923766, 0.668404078716, 0.0834804524138, 0.134054278172, -1.64041151051, -0.0446653430143, -1.85302061002, -0.055267065248, 0.433094145689, 0.207978848661, -1.14878803813, -1.45781494301, -0.064439571961, -1.0163306583, 0.798775792381, 0.00880232461799, -0.211813436686, 1.82388983829, -1.16030310811, 0.810521891093, -2.16242603901, 1.1679034155, 1.9541641911, 0.652116107186, -0.834781733259, 0.415037109363, -0.778352628036, 2.44136516868, 0.657706277588, 1.62865475296, -0.238519154745, 0.151130784619, -1.68728669985, 1.97688496932, -1.47585838602, 0.860510349359, 0.896068671547, 0.920159889825, 1.89972094697, 2.56584041836, -0.688163345777, -0.178416173435, 0.177540044816, -1.83550919258, 0.884131037009, -1.1069093154, 2.49564687297, 2.41780844678, 1.6496380009, 0.0939622419912, 2.3674353785, -0.562816442402, -0.787860985582, 1.92558886265, 0.656021607091, -0.415843909164, -0.317129135628, 1.3631950381, -0.561539085395, 2.86731519479, 3.17567905078, -1.3687919662, -1.32323208155, 2.54590081887, 2.12704387311, 1.12044858175, 0.252462895574, 1.94890491532, 1.57490305238, -0.0473029127911, 1.77634018005, 0.128497826721, -1.88517818924, -0.717504553502, 1.28840309825, 0.383652831292, 2.25590690211, 0.93223429849, -0.0341076218033, -1.01054577672, 1.50987358635, 0.746585134349, 0.307968671762, 1.23058758593, 1.9692652804, 0.248744359861, -1.2084380369, -0.225550866237, -1.5861365356, 2.16296568286, 2.03894981964, -0.895558123918, 1.15146418484, 2.64278967201, 1.35264518502, 1.18194665116, 0.53094746942, 3.01937676225, 1.68529523835, 1.33819808265, -2.8331143038, -2.57705116854, 2.32021306219, 0.175279649202, -0.356185819119, -1.9591778066, 1.13065086752, -1.56935798452, 3.1670421582, 1.61896699201, 1.09263462668, 0.0482791434793, -0.350494810271, 0.0014084887222, -0.742278663661, -2.17862596787, -2.62161932028, 3.11618531322, 2.37950117147, -0.718568795178, -1.29239491705, 1.90269085083, 0.12419299627, 3.1817054745, -1.79084188798, -0.00462248910356, -0.292003601142, -2.33411285703, 1.8311289033, -0.659019026481, -3.06465418494, -1.72699833877, 0.623895997609, 0.964604682688, -1.17267297316, 1.36606191851, -2.5124610889, -2.24661973089, 0.103155493127, -0.706910194866, 0.919144647415, -1.32474679696, 1.33655407411, -1.80523805391, -1.88725081372, -0.924335768255, 2.79661974102, -3.21111800615, -1.88948492699, 0.304624750915, 3.71094541791, -2.00950950061, -0.569909561044, 1.15500957578, -1.79929518892, 2.48204111604, 2.26863592193, -0.973650233129, 1.952552287, -2.29577767969, 0.54210133198, 1.11547757976, -0.696655045387, 2.06145649187, -2.46119701793, 3.80634954725, -1.07600155641, 0.438317176631, -2.66662681909, 0.873893505871, 1.88148221713, -1.68666320243, -2.93082701082, -0.66587836813, -0.379505158541, 0.923318537067, 2.29127874359, 0.143183237746, 1.5905466156, -0.899888623163, 2.05130329338, -0.671698081452, -1.68016137097, -3.23663705689, 3.46482661893, -0.197924380248, 2.48635224049, -1.27706830948, -1.28252313085, -0.471692805744, 2.41892543964, 2.65313689305, 3.03822264522, 2.7242866612, -0.714929697407, 3.33362854335, -2.30934959692, -1.83310803594, 0.765825046604, 1.86259136352, 1.84340126199, 0.066928876837, 2.58835725059, 0.190521212875, 2.10942396499, 1.91229271706, 1.19828956083, 1.24679013862, 0.611546344321, 2.34548242529, 0.995190558349, 1.96577773161, -2.08974327291, 2.07238661862, 2.91018803325, 0.364974818825, -0.983223879366, 2.05418544356, 2.56109756947, -1.70757036807, 3.15973882953, -2.45912545626, -0.224478489789, -2.44498720845, -1.44215962978, 0.78959450184, 2.53080365101, -0.363200536383, -2.0753814119, -1.91070443665, 2.73339279506, 2.46060731393, 2.86090597158, -1.84630750687, 0.903615083582, -1.40826192436, 0.549334826511, -1.65220301956, -1.29777869193, -1.08696456287, 1.82185920613, 1.81559912519, 3.18556676071, 3.43458671581, 2.5690208932, -0.962265759914, 0.763622195497, -0.617644824792, -2.65494681174, 2.38536559688, -1.55543225673, 3.5992319811, -1.03227842968, 1.50274924648, -2.32315771578, 1.96034349421, -1.00897889333, -1.47073716306, -1.98275657497, 0.691212401727, 0.34270071436, -1.05852250263, 1.62763182045, -0.70047452051, -0.64995078965, 0.907541495228, -3.08961344428, -0.957046919508, -1.63436385841, 1.37542935641, 2.13160573026, 2.09713579492, -0.178963130461, 3.7808023883, -1.69045693671, -1.81839436406, -1.89257982843, -0.335618158888, 2.87002044082, 2.78471161827, -0.351428520244, -1.35791203113, -2.14537756089, -1.19683659192, -1.63746796568, 2.74364053422, 1.03484792337, 2.18180306044, 0.103485002054, 3.82422430167, 1.00929131385, 3.49727764311, 4.28613749522, -0.817613992786, -0.880418143716, 3.85273647076, -0.00618117695497, -1.1888154935, 1.73515143721, 3.34958074347, 1.1879464924, -1.71189363197, -2.54022218359, -0.13431048668, -1.52101048407, -1.58730504014, 1.24472758876, -0.338289617649, -0.874442018513, 2.07223932264, 1.72051207809, -2.12536681066, 0.295206108648, 0.293117689872, -1.06857498222, 2.19877611094, -1.81418769029, 0.285760393454, 3.27697504568, 0.666653546717, 2.66071291844, 0.695046743423, -0.789747986515, 0.547695081954, -0.639106617318, 1.66996189547, -0.629234432994, -0.23834034469, 2.15542769909, -2.53070914088, -2.02262128572, -2.57856825145, 1.41017653116, -0.773581576526, 1.22098816689, -1.58524778003, 2.73188138203, 0.831344514018, -0.584843587996, -1.29173408505, 3.49757369264, 2.10743762122, 0.602034298414, 0.314697478713, -0.400916910382, -2.70485284498, 0.439331098993, 0.807039541332, -1.39485511653, -0.524608002137, 3.03590359965, 0.0093547861141, -1.49087213401, -0.361708387287, 2.24556831163, 1.32734504569, 0.983899591459, -2.77267035972, -2.49144692929, -0.999979895567, -0.138972802474, -0.258032068016, 1.32169276629, 0.262406415489, 0.948879731237, -1.3906201365, -0.74762566112, -2.79167189741, -0.993087136886, -0.902882610722, 4.03671196038, 0.375339630687, 3.23270001679, 3.2220328974, -1.65049579195, 2.71718050756, -2.84561345561, 2.24437960675, 1.92110887802, -0.135949482463, 0.969329080061, 3.40310909301, 2.27056309586, 0.287019140639, -3.92371251739, -0.613027649653, 4.63530437357, -3.03691654758, 3.7290773576, 3.32652482933, 2.19424902473, 3.34983950668, 0.362817105536, 0.937644553495, 3.27851469419, -0.753358489457, -0.727707123599, -1.82244545634, 1.88706752142, 0.4973006872, -2.4282196345, -3.57722926778, -0.894645900311, 2.86251747702, 2.7669723099, 2.66070031333, 2.99494562263, 3.58284381583, -2.44132359243, -1.60823244437, 4.20987914726, -3.1306850209, -1.97107428152, -0.932311705628, 2.73009698728, 1.59870247997, 0.19311438639, -3.77549186608, 0.648456103525, 0.19512704998, -1.52111388192, 1.85768194125, 2.26564997362, 4.88431193817, -3.3106544245, 2.62459772853, 0.069296213103, -2.06085193189, 2.18708474125, -2.43226165837, 2.95059187962, 1.6460456297, 3.51819671076, 3.72943541849, 2.86285798827, 3.23625293425, -2.16838870657, 0.45327716894, 2.88747261513, -3.04184428594, -1.42037816925, 2.48466476347, 0.507623391179, -0.319005680045, -2.38903579485, 2.70985012877, -1.97937944782, 2.88348295059, 2.56273024991, 0.695070536066, 0.303954419046, -1.74464617628, 0.67091254462, 2.80163249281, -2.19841138132, 1.38679057717, -3.92173917478, -0.558198708566, 2.12103973008, 4.33330137606, 1.46791551249, -0.753515998053, -1.01264727217, 1.44487408365, -0.622023210952, 3.6554034387, -2.46987845989, 2.90565474881, 1.64405216979, -0.544825497445, 3.31155737483, 0.0169021173894, -0.276520606989, 0.846162518059, -3.34829191959, -0.628786779293, 1.95080928741, -1.57551180474, -2.05251867595, 1.67514739912, 2.58462562798, -2.0558097119, -1.64641872793, 2.87672578958, -1.77128152813, 2.43068052395, 1.22266020633, 3.87716255777, 2.64604125185, 4.87667907736, -0.504560787152, -4.24451984003, 1.08596790207, 1.4620580663, 0.0820969928967, -0.0275864508729, 2.74256756408, 1.31098950432, -3.38661928623, 3.04282516092, 3.15222031252, 0.938879155635, -0.6335720686, -0.621117028802, -0.525375647076, -0.558126656454, 2.09189005781, -2.62306311351, 4.54944655202, 2.57757848221, 0.683620641343, 3.77784520018, 2.44466027538, 3.85192842572, -1.20363077732, -0.031170467206, 2.91170643197, -1.5297903712, 0.47102647727, 3.0499989123, -0.64708758323, 3.55171960681, -1.46289714211, -2.25888931902, -0.298758088429, -0.872198140117, 3.79007745699, 3.18920633663, 3.19376269711, 1.02108062855, -2.45049413694, 4.04590997874, 2.85071526397, 2.76251046217, 1.03634488219, 1.57933287976, 3.73012130127, 2.46094137504, 2.25734240088, -0.831436705632, -0.729740367769, -0.927130321135, -4.22337915816, 3.88814647998, 2.29541764351, -0.388799340839, 2.84351797784, 3.64596708004, 1.45411725279, 0.729678778858, 3.91079356251, -3.00241658157, 3.95021606505, -3.34657532873, -2.51463115457, 3.15002744496, 0.45889369707, -0.525120024936, 4.7048517062, -1.4432624123, -0.148889600414, 2.85939190951, 4.85780195185, -4.17511071059, 3.38411400271, 1.1075676825, 3.26237689907, 0.878111925584, -1.41552344964, -3.08270987167, 4.27867965084, 0.410610098969, -2.39902329281, 3.19205750317, 1.32299783959, 3.45666991208, -1.83125735979, 0.099271997232, -0.806466305994, -0.766210518842, 4.77198806046, 1.30314573108, -3.48272099798, 1.5335374746, 0.289421719969, 0.804861901663, 2.00252924034, 3.13152099914, 4.83297593915, 1.44038424807, 3.30941865486, -3.87367098374, 2.70339219681, 2.22028008944, 4.22295753737, 0.534301786928, 1.37133154995, -1.2036954636, 0.483074819481, 4.28027976877, 0.572397285073, 4.58383664771, 3.35540744581, 1.79749541626, -1.4991794488, -3.09687473587, 0.807227312823, 1.5062322928, 2.40325240992, 1.14547800212, 0.0466001419489, 3.237473284, -2.06181068528, 0.0403678177779, -2.69559776458, -2.04781416022, 1.18762584977, -1.97106128261, -2.24423610216, 3.49291188911, -0.275531621896, 4.0838136761, 1.58879039841, -0.775837025422, -0.794811987219, -0.517636225882, 0.511060173337, 0.93516735872, -0.0990338703974, 1.19890835086, 1.41309766327, -3.97061024016, 0.0898869027245, -1.04147456174, -2.39853783716, 1.98072633203, -2.6897612745, 2.06860375824, 3.71613764059, -2.78091622317, -1.96246989454, 4.88462462942, -2.45747094755, -3.91528037882, 2.11465423656, -2.07248473641, -0.53221327981, 3.98671332582, 4.82734673233, 4.66633570953, -1.68118224522, -0.457808793946, 1.51059520262, -1.98686969621, -1.61383725104, 4.0353200723, 0.802342231662, -2.95394558654, -0.0449895867233, 0.459878001801, 3.66990855098, -3.08437410064, 1.02121946308, -2.19449096315, 2.51305522906, 0.707811391663, -1.35871775798, 4.54906223313, 1.20460936587, 4.07379796852, 1.7235968393, 1.56533250359, 2.18814303658, 2.45487961784, -0.575724606107, 2.96545054235, -3.67099884214, 2.51242739647, -3.03943805729, 4.26374450536, 2.52120581706, -0.446953220829, 2.74594656254, -1.08293970514, 1.63654780736, -0.809812659437, 1.84476846452, -2.79219306354, -3.26053483042, 3.47432677713, -1.2224782126, -1.0892799674, -2.491241097, 1.7183533287, -2.98126449713, -0.872857817996, 0.792367206197, 2.7369490873, 4.37658292646, 1.34983597988, 3.06321911481, 4.36159802641, 0.151298090907, -0.583547405996, 3.32520204194, 3.94157059584, -0.566033708164, 1.70987813843, 4.04046420835, 4.40178151817, 2.47645649564, 3.22617204062, 2.55300433663, -1.14876824354, 1.24099402005, -0.501838007371, -2.15117053508, 1.37046375286, -0.394539839471, 3.47078760836, 1.68510598522, 1.46665432482, -1.66759281879, 3.14813284502, -2.69651205193, 3.22185336291, 1.86009959765, -2.37130457724, -3.739422063, 3.34909140766, 3.73453462414, 2.21246314169, -2.3418258197, -2.49216835089, 3.59744160687, -0.218876979998, 1.05607698819, 1.90898929982, -1.06501287706, 1.73034273392, 3.17206464858, 0.548205011961, 3.53892331784, 2.96362034509, -1.49124343255, 1.41607917491, 1.54911376141, 3.00313909702, -2.31995443697, 4.071719803, 3.58259723555, 2.35198746539, 1.65145143655, -0.548535047384, -0.254091263446, -0.0720228196517, 1.29201223324, -0.0838480553573, 0.343210130505, -3.01255059507, -2.05562878556, -1.53259999404, -2.15692124072, 0.769769077393, 1.71456813051, 1.29163122718, 0.301343421628, 4.24309644164, 0.335769114692, -4.30616929733, 1.31560783864, 1.05766080757, -0.37508205115, 1.48606207225, -0.355299585784, -2.31251305215, 0.346650567467, 0.748478884534, 0.594598301046, -2.73527603644, -1.4407262667, -0.717418442303, -2.03042015581, 3.72959178971, -0.168629385404, 1.67695866427, -1.50951330707, -3.54411000166, 2.29796061702, -0.0814058504927, -1.37135620095, -0.671215916855, -1.34090093101, -0.493347300277, 1.05428488077, -0.400449287458, 3.68584786982, 0.77527866322, 2.54592679455, 0.743377350722, 4.83908723893, 1.15485643352, 2.82969262574, -3.16438123743, -2.61651584047, -3.39350598009, -2.16905660938, 2.48992274585, 3.15640932997, 2.13230359296, 0.693529521205, 3.94717131009, 0.6734715982, 0.0225067418109, -0.261518256972, 3.40041873479, 2.34424102281, 2.8342932616, 0.918540278944, 3.98005402422, -0.385692323103, -2.4602077064, -2.33847358675, 2.94436912602, -1.65625728757, 0.5925775848, -1.35320802106, 0.11954012745, -0.0289756364643, 3.72075823961, 0.376181733787, 3.02085783287, 2.30504581286, 0.40908892533, -3.25940588031, 2.54793312026, -0.914592624221, 3.0192954182, 5.33497496733, -0.351297413737, 4.12697161654, 0.898976282488, 2.25027996096, 2.50367000659, -0.538810085533, 3.50181395434, -0.193121531684, -3.38428133063, -2.93081554241, -1.88367363938, 4.80643294125, 0.215757649249, 0.634013225995, -0.635834474133, -1.46403780153, -3.0931203374, -3.74503199648, 1.23037569327, 3.11931414173, 0.705759216663, -3.45954184381, -2.46630377667, -3.41246174104, -2.46898758813, -1.78950443066, -1.80116629275, -0.870152865968, -0.353916491529, 2.83889679237, -0.828160399074, -0.722566038156, -3.13706894078), diff --git a/auto-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt b/auto-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt index 3d60f78a91e4..5ccb9fe81768 100644 --- a/auto-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt +++ b/auto-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(27.80985, 49.61936, 83.08067, 116.6632, 130.414, 150.7206, 220.1871, 156.1536, 148.6416, 203.7845, 206.0386, 107.1618, 68.36975, 45.3359, 49.96142, 21.89279, 17.02552, 11.74317, 14.75226, 13.6671, 5.677561, 3.31234, 1.156517, -0.147662, 27.71966, 48.55022, 65.21374, 95.27666, 116.9964, 133.9056, 152.3412, 151.934, 160.1139, 179.5327, 147.6184, 170.3943, 121.8194, 52.58537, 33.08871, 38.40972, 44.24843, 69.5786, 4.019351, 3.050024, 3.039719, 2.996142, 2.967954, 1.999594, 30.4267, 33.47752, 44.80953, 62.47495, 77.43523, 104.2153, 102.7393, 137.0004, 186.0706, 219.3173, 181.7615, 120.9154, 143.1835, 82.40501, 48.47132, 74.71461, 60.0909, 7.073525, 6.089851, 6.53745, 6.666096, 7.306965, 5.73684, 3.625628, 16.66549, 30.1086, 39.96952, 44.12225, 59.57512, 77.56929, 106.8925, 166.5539, 175.2381, 185.2815, 154.5056, 83.0433, 62.61732, 62.33167, 60.55916, 55.92124, 15.17284, 8.248324, 36.68087, 61.93413, 20.26867, 68.58819, 46.49812, 0.2360095, 8.815617, 18.3516, 8.658275, 27.5859, 48.62691, 60.18013, 91.3286, 145.7109, 116.0653, 106.2662, 68.69447, 53.10596, 37.92797, 47.95942, 47.42691, 69.20731, 44.95468, 29.17197, 17.91674, 16.25515, 14.65559, 17.26048, 31.22245, 46.71704, 6.628881, 10.41339, 24.81939, 26.08952, 30.1605, 52.30802, 64.71007, 76.30823, 84.63686, 99.4324, 62.52132, 46.81647, 55.76606, 82.4099, 140.2647, 81.26501, 56.45756, 30.42164, 17.28782, 8.302431, 2.981626, 2.698536, 5.886086, 5.268358, 21.83975, 6.63927, 18.97085, 32.89204, 43.15014, 62.86014, 104.6657, 130.2294, 114.8494, 106.9873, 61.89647, 55.55682, 86.80986, 89.27802, 122.4221, 123.9698, 109.0952, 98.41956, 77.61374, 32.49031, 14.67344, 7.370775, 0.03711011, 0.6423392, 53.34303, 26.79797, 6.63927, 10.88787, 17.2044, 56.18116, 79.70141, 90.8453, 98.27675, 80.87243, 74.7931, 75.54661, 73.4373, 74.11694, 68.1749, 46.24076, 39.93857, 31.21653, 36.88335, 40.02525, 117.4297, 12.70328, 1.729771, 0, 25.66785, 63.05717, 22.1414, 17.074, 41.74483, 60.27227, 81.42432, 114.444, 102.3234, 101.7878, 111.031, 119.2309, 114.0777, 110.5296, 59.19355, 42.47175, 14.63598, 6.944074, 6.944075, 27.74936, 0, 0, 0.09449376, 0.07732264, 12.827, 69.20554, 46.76293, 13.96517, 33.88744, 61.82613, 84.74799, 121.122, 145.2741, 153.1797, 204.786, 227.9242, 236.3038, 228.3655, 79.34425, 25.93483, 6.944074, 6.944074, 6.944075, 7.553681, 0, 0, 0, 0, 0, 68.66396, 59.0435, 33.35762, 47.45282, 57.8355, 78.91689, 107.8275, 168.0053, 130.9597, 212.5541, 165.8122, 210.2429, 181.1713, 189.7617, 137.3378, 84.65395, 8.677168, 6.956576, 8.468093, 0, 0, 0, 0, 0, 95.17499, 80.03818, 59.89862, 39.58476, 50.28058, 63.81641, 80.61302, 66.37824, 198.7651, 244.3467, 294.2474, 264.3517, 176.4082, 60.21857, 77.41475, 53.16981, 56.16393, 6.949235, 7.531059, 3.780177, 0, 0, 0, 0, 134.9879, 130.3696, 96.86325, 75.70494, 58.86466, 57.20374, 55.18837, 78.128, 108.5582, 154.3774, 319.1686, 372.8826, 275.4655, 130.2632, 54.93822, 25.49719, 8.047439, 8.084393, 5.115252, 5.678269, 0, 0, 0, 0, 48.08919, 142.5558, 140.3777, 154.7261, 87.9361, 58.11092, 52.83869, 67.14822, 83.66798, 118.9242, 150.0681, 272.9709, 341.1366, 238.664, 190.2, 116.8943, 91.48672, 14.0157, 42.29277, 5.115252, 0, 0, 0, 0, 54.1941, 146.3839, 99.48143, 96.19411, 102.9473, 76.14089, 57.7844, 47.0402, 64.36799, 84.23767, 162.7181, 121.3275, 213.1646, 328.482, 285.4489, 283.8319, 212.815, 164.549, 92.29631, 7.244015, 1.167, 0, 0, 0, 6.919659, 195.1709, 132.5253, 135.2341, 89.85069, 89.45549, 60.29967, 50.33806, 39.17583, 59.06854, 74.52159, 84.93402, 187.1219, 123.9673, 103.7027, 128.986, 165.1283, 249.7054, 95.39966, 10.00284, 2.39255, 0, 0, 0, 21.73871, 123.1339, 176.7414, 158.2698, 137.235, 105.3089, 86.63255, 53.11591, 29.03865, 30.40539, 39.04902, 49.23405, 63.27853, 111.4215, 101.1956, 40.00962, 59.84565, 74.51253, 17.06316, 2.435141, 2.287471, -0.0003636982, 0, 0, 0, 62.04672, 136.3122, 201.7952, 168.1343, 95.2046, 58.90624, 46.94091, 49.27053, 37.10416, 17.97011, 30.93697, 33.39257, 44.03077, 55.64542, 78.22423, 14.42782, 9.954997, 7.768213, 13.0254, 21.73166, 2.156372, 0.5317867, 0, 0, 79.62993, 139.6978, 173.167, 192.8718, 196.3499, 144.6611, 106.5424, 57.16653, 41.16107, 32.12764, 13.8566, 10.91772, 12.07177, 22.38254, 24.72105, 6.803666, 4.200841, 16.46857, 15.70744, 33.96221, 7.575688, -0.04880907, 0, 0, 33.2664, 57.53643, 167.2241, 196.4833, 194.7966, 182.1884, 119.6961, 73.02113, 48.36549, 33.74652, 26.2379, 16.3578, 6.811293, 6.63927, 6.639271, 8.468093, 6.194273, 3.591233, 3.81486, 8.600739, 5.21889, 0, 0, 0, 29.77937, 54.97282, 144.7995, 207.4904, 165.3432, 171.4047, 174.9216, 100.2733, 61.46441, 50.19171, 26.08209, 17.18218, 8.468093, 6.63927, 6.334467, 6.334467, 5.666687, 4.272203, 0, 0, 0, 0, 0, 0, 31.409, 132.7418, 185.5796, 121.8299, 185.3841, 160.6566, 116.1478, 118.1078, 141.7946, 65.56351, 48.84066, 23.13864, 18.12932, 10.28531, 6.029663, 6.044627, 5.694764, 3.739085, 3.896037, 0, 0, 0, 0, 0, 19.58994, 42.30355, 96.26777, 187.1207, 179.6626, 221.3898, 154.2617, 142.1604, 148.5737, 67.17937, 40.69044, 39.74512, 26.10166, 14.48469, 8.65873, 3.896037, 3.571392, 3.896037, 3.896037, 3.896037, 1.077756, 0, 0.001229679, 3.008948, 5.909858, 33.50574, 104.3341, 152.2165, 198.1988, 191.841, 228.7349, 168.1041, 144.2759, 110.7436, 57.65214, 42.63504, 27.91891, 15.41052, 8.056102, 3.90283, 3.879774, 3.936718, 3.968634, 0.1236256, 3.985531, -0.1835741, 0, 5.626141, 7.676256, 63.16226, 45.99762, 79.56688, 227.311, 203.9287, 172.5618, 177.1462, 140.4554, 123.9905, 110.346, 65.12319, 34.31887, 24.5278, 9.561069, 3.334991, 5.590495, 5.487353, 5.909499, 5.868994, 5.833817, 3.568177), nrow=25, ncol=24), diff --git a/auto-docs/chart-types/area/basic-area/r/code.txt b/auto-docs/chart-types/area/basic-area/r/code.txt index 3ae346e10a4a..ebc17d08b457 100644 --- a/auto-docs/chart-types/area/basic-area/r/code.txt +++ b/auto-docs/chart-types/area/basic-area/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(0, 2, 3, 5), diff --git a/auto-docs/chart-types/bar/bar-marker-array/r/code.txt b/auto-docs/chart-types/bar/bar-marker-array/r/code.txt index 0c84678fcd07..6375d02a0043 100644 --- a/auto-docs/chart-types/bar/bar-marker-array/r/code.txt +++ b/auto-docs/chart-types/bar/bar-marker-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt b/auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt index 2073be9da9b1..71c9134ce296 100644 --- a/auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt +++ b/auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("Liam", "Sophie", "Jacob", "Mia", "William", "Olivia"), diff --git a/auto-docs/chart-types/bar/basic-bar/r/code.txt b/auto-docs/chart-types/bar/basic-bar/r/code.txt index ed521060ac71..ed25bd16f014 100644 --- a/auto-docs/chart-types/bar/basic-bar/r/code.txt +++ b/auto-docs/chart-types/bar/basic-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("giraffes", "orangutans", "monkeys"), diff --git a/auto-docs/chart-types/bar/grouped-bar/r/code.txt b/auto-docs/chart-types/bar/grouped-bar/r/code.txt index 7c4eca258a37..e9fb77014572 100644 --- a/auto-docs/chart-types/bar/grouped-bar/r/code.txt +++ b/auto-docs/chart-types/bar/grouped-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/auto-docs/chart-types/bar/stacked-bar/r/code.txt b/auto-docs/chart-types/bar/stacked-bar/r/code.txt index bb49a20f31a1..34a0214360f1 100644 --- a/auto-docs/chart-types/bar/stacked-bar/r/code.txt +++ b/auto-docs/chart-types/bar/stacked-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/auto-docs/chart-types/bar/style-bar/r/code.txt b/auto-docs/chart-types/bar/style-bar/r/code.txt index 7efaf6683eaf..eb878042a4c5 100644 --- a/auto-docs/chart-types/bar/style-bar/r/code.txt +++ b/auto-docs/chart-types/bar/style-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012), y = c(219, 146, 112, 127, 124, 180, 236, 207, 236, 263, 350, 430, 474, 526, 488, 537, 500, 439), diff --git a/auto-docs/chart-types/box/basic-box-plot/r/code.txt b/auto-docs/chart-types/box/basic-box-plot/r/code.txt index a3acdbafdd01..268e1e2edc10 100644 --- a/auto-docs/chart-types/box/basic-box-plot/r/code.txt +++ b/auto-docs/chart-types/box/basic-box-plot/r/code.txt @@ -6,6 +6,7 @@ library(plotly) y0 = rnorm(50) y1 = rnorm(50)+1 +py <- plotly() trace1 <- list( y = y0, type = "box" diff --git a/auto-docs/chart-types/box/box-grouped/r/code.txt b/auto-docs/chart-types/box/box-grouped/r/code.txt index 01c7285fb847..055455abc45a 100644 --- a/auto-docs/chart-types/box/box-grouped/r/code.txt +++ b/auto-docs/chart-types/box/box-grouped/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- c('day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2') +py <- plotly() trace1 <- list( y = c(0.2, 0.2, 0.6, 1.0, 0.5, 0.4, 0.2, 0.7, 0.9, 0.1, 0.5, 0.3), x = x, diff --git a/auto-docs/chart-types/box/box-plot-jitter/r/code.txt b/auto-docs/chart-types/box/box-plot-jitter/r/code.txt index d01d723600e8..e585158a1358 100644 --- a/auto-docs/chart-types/box/box-plot-jitter/r/code.txt +++ b/auto-docs/chart-types/box/box-plot-jitter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( y = c(0, 1, 1, 2, 3, 5, 8, 13, 21), diff --git a/auto-docs/chart-types/bubble/bubblechart/r/code.txt b/auto-docs/chart-types/bubble/bubblechart/r/code.txt index 788e0672c945..4cf4686ca1b9 100644 --- a/auto-docs/chart-types/bubble/bubblechart/r/code.txt +++ b/auto-docs/chart-types/bubble/bubblechart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 11, 12, 13), diff --git a/auto-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt b/auto-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt index f294bfd085df..5a64252c0421 100644 --- a/auto-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt +++ b/auto-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt @@ -7,6 +7,7 @@ t = seq(-1, 1.2, length=2000) x = t^3+0.3*rnorm(2000) y = t^6+0.3*rnorm(2000) +py <- plotly() trace1 <- list( x = x, y = y, diff --git a/auto-docs/chart-types/contour/simple-contour/r/code.txt b/auto-docs/chart-types/contour/simple-contour/r/code.txt index 9e95a534a2cd..d267989d3a56 100644 --- a/auto-docs/chart-types/contour/simple-contour/r/code.txt +++ b/auto-docs/chart-types/contour/simple-contour/r/code.txt @@ -14,6 +14,7 @@ for(i in 1:size) { } } +py <- plotly() data <- list( list( z = z, diff --git a/auto-docs/chart-types/error-bar/basic-error-bar/r/code.txt b/auto-docs/chart-types/error-bar/basic-error-bar/r/code.txt index 6375be038947..01faffb09992 100644 --- a/auto-docs/chart-types/error-bar/basic-error-bar/r/code.txt +++ b/auto-docs/chart-types/error-bar/basic-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/auto-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt b/auto-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt index 9cd8b125bb51..106eba71ad4a 100644 --- a/auto-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt +++ b/auto-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/auto-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt b/auto-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt index eb0179e11f36..162b04c0efd6 100644 --- a/auto-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt +++ b/auto-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/auto-docs/chart-types/error-bar/error-bar-bar/r/code.txt b/auto-docs/chart-types/error-bar/error-bar-bar/r/code.txt index e6c81cfc760e..6d148a57ea82 100644 --- a/auto-docs/chart-types/error-bar/error-bar-bar/r/code.txt +++ b/auto-docs/chart-types/error-bar/error-bar-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("Trial 1", "Trial 2", "Trial 3"), y = c(3, 6, 4), diff --git a/auto-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt b/auto-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt index b244c81d654f..959da9b587cd 100644 --- a/auto-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt +++ b/auto-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/auto-docs/chart-types/error-bar/error-bar-style/r/code.txt b/auto-docs/chart-types/error-bar/error-bar-style/r/code.txt index 073b5b9b4fad..ef746e5ab889 100644 --- a/auto-docs/chart-types/error-bar/error-bar-style/r/code.txt +++ b/auto-docs/chart-types/error-bar/error-bar-style/r/code.txt @@ -13,6 +13,7 @@ sincx <- sinc(x_theo) x <- c(-3.8, -3.03, -1.91, -1.46, -0.89, -0.24, -0.0, 0.41, 0.89, 1.01, 1.91, 2.28, 2.79, 3.56) y <- c(-0.02, 0.04, -0.01, -0.27, 0.36, 0.75, 1.03, 0.65, 0.28, 0.02, -0.11, 0.16, 0.04, -0.15) +py <- plotly() trace1 <- list( x = x_theo, y = sincx, diff --git a/auto-docs/chart-types/error-bar/percent-error-bar/r/code.txt b/auto-docs/chart-types/error-bar/percent-error-bar/r/code.txt index 2d6c0dd91c2c..f67e50986251 100644 --- a/auto-docs/chart-types/error-bar/percent-error-bar/r/code.txt +++ b/auto-docs/chart-types/error-bar/percent-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/auto-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt index b14567d3d9f1..4d85575b38a7 100644 --- a/auto-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt index 9d99e18c4b61..4adf1b1d4a7b 100644 --- a/auto-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Earth-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Earth-heatmap/r/code.txt index fe19b1addcb7..03417d419530 100644 --- a/auto-docs/chart-types/heatmap/Earth-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Earth-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Electric-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Electric-heatmap/r/code.txt index 9bd294abb42c..79d0309ceb68 100644 --- a/auto-docs/chart-types/heatmap/Electric-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Electric-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Greens-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Greens-heatmap/r/code.txt index b5dda60755f3..54b91d26baf6 100644 --- a/auto-docs/chart-types/heatmap/Greens-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Greens-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Greys-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Greys-heatmap/r/code.txt index c42a7febe1e7..fb37156ae440 100644 --- a/auto-docs/chart-types/heatmap/Greys-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Greys-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Hot-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Hot-heatmap/r/code.txt index 4a4bb0d21f8a..0ad343464a70 100644 --- a/auto-docs/chart-types/heatmap/Hot-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Hot-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Jet-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Jet-heatmap/r/code.txt index 3c6170f7905e..33ab5d51ffde 100644 --- a/auto-docs/chart-types/heatmap/Jet-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Jet-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt index a315d2a50629..52057263af60 100644 --- a/auto-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/Portland-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/Portland-heatmap/r/code.txt index 31c220f7a6e5..56ee6351c277 100644 --- a/auto-docs/chart-types/heatmap/Portland-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/Portland-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt index ee10d3aa51ca..5a2c17b2f2fc 100644 --- a/auto-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt index 0008ea868ce3..28d354d49a49 100644 --- a/auto-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt index 8b48db0bd7f4..7d51bf43d636 100644 --- a/auto-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/basic-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/basic-heatmap/r/code.txt index 44a0539d2108..709eaf3f0077 100644 --- a/auto-docs/chart-types/heatmap/basic-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/basic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 20, 1, 60, 30, 60, 1), nrow=3, ncol=3), diff --git a/auto-docs/chart-types/heatmap/custom-colorscale/r/code.txt b/auto-docs/chart-types/heatmap/custom-colorscale/r/code.txt index 2b63d4383be5..c6c918029521 100644 --- a/auto-docs/chart-types/heatmap/custom-colorscale/r/code.txt +++ b/auto-docs/chart-types/heatmap/custom-colorscale/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/auto-docs/chart-types/heatmap/labelled-heatmap/r/code.txt b/auto-docs/chart-types/heatmap/labelled-heatmap/r/code.txt index 19907f8af0de..062b27446ceb 100644 --- a/auto-docs/chart-types/heatmap/labelled-heatmap/r/code.txt +++ b/auto-docs/chart-types/heatmap/labelled-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 50, 1, 20, 1, 60, 80, 30, 30, 60, 1, -10, 20), nrow=3, ncol=5), diff --git a/auto-docs/chart-types/histogram/basic-histogram/r/code.txt b/auto-docs/chart-types/histogram/basic-histogram/r/code.txt index 16f8fdcfdc0f..f34c8f437fa0 100644 --- a/auto-docs/chart-types/histogram/basic-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram/basic-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) x = rnorm(500) +py <- plotly() data <- list( list( x = x, diff --git a/auto-docs/chart-types/histogram/horizontal-histogram/r/code.txt b/auto-docs/chart-types/histogram/horizontal-histogram/r/code.txt index b40c5a965670..bd9816e7d0f5 100644 --- a/auto-docs/chart-types/histogram/horizontal-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram/horizontal-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) y = rnorm(500) +py <- plotly() data <- list( list( y = y, diff --git a/auto-docs/chart-types/histogram/overlaid-histogram/r/code.txt b/auto-docs/chart-types/histogram/overlaid-histogram/r/code.txt index e3f1c0e9895f..a58e0f7f8bc3 100644 --- a/auto-docs/chart-types/histogram/overlaid-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram/overlaid-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, opacity = 0.75, diff --git a/auto-docs/chart-types/histogram/stacked-histogram/r/code.txt b/auto-docs/chart-types/histogram/stacked-histogram/r/code.txt index 89693c7078c8..fd0b0d6417eb 100644 --- a/auto-docs/chart-types/histogram/stacked-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram/stacked-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, type = "histogram" diff --git a/auto-docs/chart-types/histogram/style-histogram/r/code.txt b/auto-docs/chart-types/histogram/style-histogram/r/code.txt index 6621149796d0..be34b4e92560 100644 --- a/auto-docs/chart-types/histogram/style-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram/style-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, histnorm = "count", diff --git a/auto-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt b/auto-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt index b83c1ce12225..d3395b7ae798 100644 --- a/auto-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt +++ b/auto-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/auto-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt b/auto-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt index df63744fa2b9..f55ee15952f4 100644 --- a/auto-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt +++ b/auto-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt @@ -11,6 +11,7 @@ y1 <- runif(50) + 1.0 x <- c(x0, x1) y <- c(y0, y1) +py <- plotly() trace1 <- list( x = x0, y = y0, diff --git a/auto-docs/chart-types/histogram2d/2d-histogram/r/code.txt b/auto-docs/chart-types/histogram2d/2d-histogram/r/code.txt index 87e50d3eb1b6..f7a88f5de012 100644 --- a/auto-docs/chart-types/histogram2d/2d-histogram/r/code.txt +++ b/auto-docs/chart-types/histogram2d/2d-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/auto-docs/chart-types/line_and_scatter/basic-line/r/code.txt b/auto-docs/chart-types/line_and_scatter/basic-line/r/code.txt index 1a44c5d8f484..703a785c4ea2 100644 --- a/auto-docs/chart-types/line_and_scatter/basic-line/r/code.txt +++ b/auto-docs/chart-types/line_and_scatter/basic-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/chart-types/line_and_scatter/line-scatter/r/code.txt b/auto-docs/chart-types/line_and_scatter/line-scatter/r/code.txt index 2030afe7b2d8..580fa887e300 100644 --- a/auto-docs/chart-types/line_and_scatter/line-scatter/r/code.txt +++ b/auto-docs/chart-types/line_and_scatter/line-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/chart-types/line_and_scatter/line-shapes/r/code.txt b/auto-docs/chart-types/line_and_scatter/line-shapes/r/code.txt index 51cff36bf9e7..95265022f55d 100644 --- a/auto-docs/chart-types/line_and_scatter/line-shapes/r/code.txt +++ b/auto-docs/chart-types/line_and_scatter/line-shapes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4, 5), y = c(1, 3, 2, 3, 1), diff --git a/auto-docs/chart-types/line_and_scatter/line-style/r/code.txt b/auto-docs/chart-types/line_and_scatter/line-style/r/code.txt index f7eb2e95e18e..dcc64ba77ac7 100644 --- a/auto-docs/chart-types/line_and_scatter/line-style/r/code.txt +++ b/auto-docs/chart-types/line_and_scatter/line-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(52698, 43117), y = c(53, 31), diff --git a/auto-docs/chart-types/log/plotly-log-axes/r/code.txt b/auto-docs/chart-types/log/plotly-log-axes/r/code.txt index 19e86cc8c744..821166148b40 100644 --- a/auto-docs/chart-types/log/plotly-log-axes/r/code.txt +++ b/auto-docs/chart-types/log/plotly-log-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/chart-types/mixed/bar-line/r/code.txt b/auto-docs/chart-types/mixed/bar-line/r/code.txt index 797f24f4891b..8078c19484e2 100644 --- a/auto-docs/chart-types/mixed/bar-line/r/code.txt +++ b/auto-docs/chart-types/mixed/bar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5), y = c(1.5, 1, 1.3, 0.7, 0.8, 0.9), diff --git a/auto-docs/chart-types/mixed/contour-scatter/r/code.txt b/auto-docs/chart-types/mixed/contour-scatter/r/code.txt index 59eaccb75f81..5af949624527 100644 --- a/auto-docs/chart-types/mixed/contour-scatter/r/code.txt +++ b/auto-docs/chart-types/mixed/contour-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( z = matrix(c(1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.0, 0.734693877551, 0.510204081633, 0.326530612245, 0.183673469388, 0.0816326530612, 0.0204081632653, 0.0, 0.0204081632653, 0.0816326530612, 0.183673469388, 0.326530612245, 0.510204081633, 0.734693877551, 1.0, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5), nrow=15, ncol=15), x = c(-1.0, -0.857142857143, -0.714285714286, -0.571428571429, -0.428571428571, -0.285714285714, -0.142857142857, 0.0, 0.142857142857, 0.285714285714, 0.428571428571, 0.571428571429, 0.714285714286, 0.857142857143, 1.0), diff --git a/auto-docs/chart-types/polar/polar-area-chart/r/code.txt b/auto-docs/chart-types/polar/polar-area-chart/r/code.txt index 2b2b9f51c184..7ee5cf4c18b7 100644 --- a/auto-docs/chart-types/polar/polar-area-chart/r/code.txt +++ b/auto-docs/chart-types/polar/polar-area-chart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(77.5, 72.5, 70.0, 45.0, 22.5, 42.5, 40.0, 62.5), t = c("North", "N-E", "East", "S-E", "South", "S-W", "West", "N-W"), diff --git a/auto-docs/chart-types/polar/polar-line/r/code.txt b/auto-docs/chart-types/polar/polar-line/r/code.txt index dee2b74f388f..09e4ec11eb10 100644 --- a/auto-docs/chart-types/polar/polar-line/r/code.txt +++ b/auto-docs/chart-types/polar/polar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1), t = c(0, 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, 78, 84, 90, 96, 102, 108, 114, 120, 126, 132, 138, 144, 150, 156, 162, 168, 174, 180, 186, 192, 198, 204, 210, 216, 222, 228, 234, 240, 246, 252, 258, 264, 270, 276, 282, 288, 294, 300, 306, 312, 318, 324, 330, 336, 342, 348, 354, 360), diff --git a/auto-docs/chart-types/polar/polar-scatter/r/code.txt b/auto-docs/chart-types/polar/polar-scatter/r/code.txt index a011b2df4913..bec9e1bc3b4c 100644 --- a/auto-docs/chart-types/polar/polar-scatter/r/code.txt +++ b/auto-docs/chart-types/polar/polar-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(6.80498578527, 3.38959601061, 5.38147211075, 8.05954021942, 5.31822922787, 2.98509993563, 1.96658700238, 6.76926540821, 4.07340189872, 6.50437182527, 7.556369819, 4.04745609407, 7.38666249607, 5.41362473698, 7.47071653116, 7.98211021694, 4.73781408009, 4.20645304293, 5.47860480459, 4.8245202807, 5.5996006099, 6.86679521708, 3.08567136626, 7.77181094323, 3.6877944351, 5.36035668519, 5.1404467393, 6.04544568093, 6.83392094019, 3.62076946254, 3.9894305834, 5.3118244995, 4.60821348028, 6.64058471615, 3.05518885448, 7.49256416375, 5.48507817779, 3.89779499662, 5.97624511403, 5.44706156091, 5.37703411681, 4.69080578773, 4.71164049118, 3.62991932939, 5.95766807637, 5.35712128439, 3.84923528282, 6.25050713632, 7.12224335715, 3.39940423384, 3.51055667227, 4.10099760366, 4.0963821002, 6.23358307481, 3.93948852677, 3.9254450774, 6.11813250146, 3.94045034629, 7.58301557326, 3.51320214534), t = c(-30.3529443619, -25.6114598545, -12.4252274527, 13.9613805187, -4.95093284067, -25.6922741909, 12.4687641616, -4.91376410703, -10.9673802876, 30.8141940549, 2.47495943114, 17.9755437524, 0.771130593362, 6.13748848563, -14.451963574, 28.1845341129, 12.538680066, -8.98323033713, 5.23128516476, -64.4890025358, 11.3574866818, 3.45407479151, 13.9243466131, -25.3640020468, -16.818006386, -10.2600510306, -13.2121341256, 2.5793388653, 8.71757496585, -10.6754987192, -2.92636601252, 25.1958807548, 40.5903293216, -9.12143363019, -24.2973623813, -3.17694450569, 10.8504984192, -31.3320597474, 4.84956746221, 15.0482769541, 3.29510469926, -6.19709187313, -8.77857413578, 29.5491741194, -5.13744879288, 23.0268604879, -6.63481657837, 2.75501499186, 21.7332501137, -24.8169949601, -7.83054706253, 28.3257962102, 12.3009774678, -21.56315724, -19.3355162838, 26.1464431708, -1.70607120268, 16.071723695, 2.05326630285, -5.09791161233), diff --git a/auto-docs/chart-types/time-series/date-axes/r/code.txt b/auto-docs/chart-types/time-series/date-axes/r/code.txt index 3c33be6592da..42125bb1cb55 100644 --- a/auto-docs/chart-types/time-series/date-axes/r/code.txt +++ b/auto-docs/chart-types/time-series/date-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("2013-10-04 22:23:00", "2013-11-04 22:23:00", "2013-12-04 22:23:00"), diff --git a/auto-docs/file-settings/fileopt/append/r/code.txt b/auto-docs/file-settings/fileopt/append/r/code.txt index 395c266e008a..039d4df23394 100644 --- a/auto-docs/file-settings/fileopt/append/r/code.txt +++ b/auto-docs/file-settings/fileopt/append/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/file-settings/fileopt/extend/r/code.txt b/auto-docs/file-settings/fileopt/extend/r/code.txt index 5fa4dc592a8c..910a75bbcc77 100644 --- a/auto-docs/file-settings/fileopt/extend/r/code.txt +++ b/auto-docs/file-settings/fileopt/extend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/file-settings/fileopt/new-graph/r/code.txt b/auto-docs/file-settings/fileopt/new-graph/r/code.txt index 31e9b50829ab..5ddfaa4bc061 100644 --- a/auto-docs/file-settings/fileopt/new-graph/r/code.txt +++ b/auto-docs/file-settings/fileopt/new-graph/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/file-settings/fileopt/overwrite/r/code.txt b/auto-docs/file-settings/fileopt/overwrite/r/code.txt index 569d686baf1d..6cf62c3dcce0 100644 --- a/auto-docs/file-settings/fileopt/overwrite/r/code.txt +++ b/auto-docs/file-settings/fileopt/overwrite/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/file-settings/privacy/privacy-false/r/code.txt b/auto-docs/file-settings/privacy/privacy-false/r/code.txt index 329bcc04f93e..43bc1db04b92 100644 --- a/auto-docs/file-settings/privacy/privacy-false/r/code.txt +++ b/auto-docs/file-settings/privacy/privacy-false/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/auto-docs/file-settings/privacy/privacy-true/r/code.txt b/auto-docs/file-settings/privacy/privacy-true/r/code.txt index 8d5711c782b2..e181a2eba749 100644 --- a/auto-docs/file-settings/privacy/privacy-true/r/code.txt +++ b/auto-docs/file-settings/privacy/privacy-true/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/auto-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt b/auto-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt index 46b6159e405a..94f70b803f2c 100644 --- a/auto-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt +++ b/auto-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/auto-docs/get-requests-and-images/iframes/iframes/r/code.txt b/auto-docs/get-requests-and-images/iframes/iframes/r/code.txt index 3fd27ce49e03..c508cfb57a28 100644 --- a/auto-docs/get-requests-and-images/iframes/iframes/r/code.txt +++ b/auto-docs/get-requests-and-images/iframes/iframes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/auto-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt b/auto-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt index 6dc07b46097c..f47f6a20be68 100644 --- a/auto-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt +++ b/auto-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/auto-docs/layout/annotations/hover-chart-basic/r/code.txt b/auto-docs/layout/annotations/hover-chart-basic/r/code.txt index de5c58afb9b7..f94deed65df8 100644 --- a/auto-docs/layout/annotations/hover-chart-basic/r/code.txt +++ b/auto-docs/layout/annotations/hover-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/auto-docs/layout/annotations/multiple-annotation/r/code.txt b/auto-docs/layout/annotations/multiple-annotation/r/code.txt index 3fb7eee83ba3..cd822a91f923 100644 --- a/auto-docs/layout/annotations/multiple-annotation/r/code.txt +++ b/auto-docs/layout/annotations/multiple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/auto-docs/layout/annotations/simple-annotation/r/code.txt b/auto-docs/layout/annotations/simple-annotation/r/code.txt index e2c672c56f56..f2b830ccf64b 100644 --- a/auto-docs/layout/annotations/simple-annotation/r/code.txt +++ b/auto-docs/layout/annotations/simple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/auto-docs/layout/annotations/style-annotation/r/code.txt b/auto-docs/layout/annotations/style-annotation/r/code.txt index 3c83564d3fc3..69c0654ac67a 100644 --- a/auto-docs/layout/annotations/style-annotation/r/code.txt +++ b/auto-docs/layout/annotations/style-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/auto-docs/layout/annotations/text-chart-basic/r/code.txt b/auto-docs/layout/annotations/text-chart-basic/r/code.txt index 00187a98546e..e29526b22c88 100644 --- a/auto-docs/layout/annotations/text-chart-basic/r/code.txt +++ b/auto-docs/layout/annotations/text-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/auto-docs/layout/annotations/text-chart-styling/r/code.txt b/auto-docs/layout/annotations/text-chart-styling/r/code.txt index 30561f0e994f..b67a1d5e909e 100644 --- a/auto-docs/layout/annotations/text-chart-styling/r/code.txt +++ b/auto-docs/layout/annotations/text-chart-styling/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/auto-docs/layout/axes/axes-booleans/r/code.txt b/auto-docs/layout/axes/axes-booleans/r/code.txt index 3584da2d9f0a..282ead95d858 100644 --- a/auto-docs/layout/axes/axes-booleans/r/code.txt +++ b/auto-docs/layout/axes/axes-booleans/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/axes/axes-labels/r/code.txt b/auto-docs/layout/axes/axes-labels/r/code.txt index 769b720eac3e..1c2c661c998b 100644 --- a/auto-docs/layout/axes/axes-labels/r/code.txt +++ b/auto-docs/layout/axes/axes-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/axes/axes-lines/r/code.txt b/auto-docs/layout/axes/axes-lines/r/code.txt index a940821abd46..032b16e29fa2 100644 --- a/auto-docs/layout/axes/axes-lines/r/code.txt +++ b/auto-docs/layout/axes/axes-lines/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/axes/axes-range-manual/r/code.txt b/auto-docs/layout/axes/axes-range-manual/r/code.txt index eba81260be80..9e8d0a230024 100644 --- a/auto-docs/layout/axes/axes-range-manual/r/code.txt +++ b/auto-docs/layout/axes/axes-range-manual/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/axes/axes-range-mode/r/code.txt b/auto-docs/layout/axes/axes-range-mode/r/code.txt index 71b5bf396fef..fb76f08edcb2 100644 --- a/auto-docs/layout/axes/axes-range-mode/r/code.txt +++ b/auto-docs/layout/axes/axes-range-mode/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(2, 4, 6), diff --git a/auto-docs/layout/axes/axes-range-type/r/code.txt b/auto-docs/layout/axes/axes-range-type/r/code.txt index ab68681deae3..9d2c741aba5b 100644 --- a/auto-docs/layout/axes/axes-range-type/r/code.txt +++ b/auto-docs/layout/axes/axes-range-type/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/axes/axes-reversed/r/code.txt b/auto-docs/layout/axes/axes-reversed/r/code.txt index 6344bffc7055..929e34061fd7 100644 --- a/auto-docs/layout/axes/axes-reversed/r/code.txt +++ b/auto-docs/layout/axes/axes-reversed/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2), diff --git a/auto-docs/layout/axes/axes-ticks/r/code.txt b/auto-docs/layout/axes/axes-ticks/r/code.txt index 2686d1737203..9ba8bd0b9fbe 100644 --- a/auto-docs/layout/axes/axes-ticks/r/code.txt +++ b/auto-docs/layout/axes/axes-ticks/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/auto-docs/layout/font/global-font/r/code.txt b/auto-docs/layout/font/global-font/r/code.txt index 6fd7d16122f1..0ef1a1109a97 100644 --- a/auto-docs/layout/font/global-font/r/code.txt +++ b/auto-docs/layout/font/global-font/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/auto-docs/layout/labels/styling-names/r/code.txt b/auto-docs/layout/labels/styling-names/r/code.txt index 76877706844a..13f30930b9a1 100644 --- a/auto-docs/layout/labels/styling-names/r/code.txt +++ b/auto-docs/layout/labels/styling-names/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/auto-docs/layout/latex/latex/r/code.txt b/auto-docs/layout/latex/latex/r/code.txt index e237096ccf08..11c3de6bb00b 100644 --- a/auto-docs/layout/latex/latex/r/code.txt +++ b/auto-docs/layout/latex/latex/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/auto-docs/layout/legends/legend-inside/r/code.txt b/auto-docs/layout/legends/legend-inside/r/code.txt index 4437c98bd7a9..d35b407ff8a9 100644 --- a/auto-docs/layout/legends/legend-inside/r/code.txt +++ b/auto-docs/layout/legends/legend-inside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/auto-docs/layout/legends/legend-labels/r/code.txt b/auto-docs/layout/legends/legend-labels/r/code.txt index a69245acdcb5..4d3af4e33826 100644 --- a/auto-docs/layout/legends/legend-labels/r/code.txt +++ b/auto-docs/layout/legends/legend-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/auto-docs/layout/legends/legend-outside/r/code.txt b/auto-docs/layout/legends/legend-outside/r/code.txt index 4ad5c7bc6bf3..131b6305de9c 100644 --- a/auto-docs/layout/legends/legend-outside/r/code.txt +++ b/auto-docs/layout/legends/legend-outside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/auto-docs/layout/legends/legend-style/r/code.txt b/auto-docs/layout/legends/legend-style/r/code.txt index 817791eb5fdc..995041d3c617 100644 --- a/auto-docs/layout/legends/legend-style/r/code.txt +++ b/auto-docs/layout/legends/legend-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/auto-docs/layout/legends/legend-visibility/r/code.txt b/auto-docs/layout/legends/legend-visibility/r/code.txt index b2114ab037b0..de0af73b3abe 100644 --- a/auto-docs/layout/legends/legend-visibility/r/code.txt +++ b/auto-docs/layout/legends/legend-visibility/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/auto-docs/layout/legends/show-legend/r/code.txt b/auto-docs/layout/legends/show-legend/r/code.txt index b807401c7fff..376f3a5ecffb 100644 --- a/auto-docs/layout/legends/show-legend/r/code.txt +++ b/auto-docs/layout/legends/show-legend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 2, 3), diff --git a/auto-docs/layout/sizing/size-margins/r/code.txt b/auto-docs/layout/sizing/size-margins/r/code.txt index e6236de6d2be..dbac85917ce4 100644 --- a/auto-docs/layout/sizing/size-margins/r/code.txt +++ b/auto-docs/layout/sizing/size-margins/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/auto-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt b/auto-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt index 1b4ec5fbae1c..9a82a36f78a9 100644 --- a/auto-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 3, 2), diff --git a/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt b/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt index 25e22ab12bbc..d93a6b9876d6 100644 --- a/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(40, 50, 60), diff --git a/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt b/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt index 338bd02d23b4..6e4c9fe84d16 100644 --- a/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt index 481b49cc0628..65c51726a1d5 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt index a81c5d3f6d6b..345e8a9b3026 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt index b0c5c3c20c11..b59739297a2c 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(2, 3, 4), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt index 70d95456be6f..baacbafa4477 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt index 570b4003ba93..6b185129f6d1 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/auto-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt b/auto-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt index 0112c069fa03..57f62948309b 100644 --- a/auto-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt +++ b/auto-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/published/api-docs/chart-types/3d-line/random-walk/r/code.txt b/published/api-docs/chart-types/3d-line/random-walk/r/code.txt index 3dc18c0bf53f..a3283845571a 100644 --- a/published/api-docs/chart-types/3d-line/random-walk/r/code.txt +++ b/published/api-docs/chart-types/3d-line/random-walk/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.014460360111, 0.420723053511, 0.471955637602, -1.5980850775, -1.1696928974, 0.62887815642, 1.64225480141, 1.84538844321, 2.39903055756, 2.74061873532, 2.98184534361, 3.63482281441, 3.51947216482, 3.24422002592, 1.97987531822, 2.49306912443, 1.98065348142, 2.49148828382, 1.8166301311, -0.418444162232, -1.91452615762, -1.26261858994, -0.702841491138, -2.53578213432, -2.96566072736, -5.06110427809, -7.00637040896, -6.9990237396, -8.80043516671, -8.71239917157, -10.4880913229, -14.0237638556, -14.3444267254, -12.0425575011, -10.8147720387, -9.77322085369, -7.8871343368, -10.1779694809, -7.7922357105, -4.06012871996, -3.25503609007, -2.98098865248, -1.1460800781, -4.7132235257, -5.96126803183, -6.08422139999, -2.67777205929, -4.22903304342, -4.01470370535, -5.4925628554, -3.41315115276, -4.09417736042, -5.92604468977, -7.0398214854, -4.54137742868, -4.48795563261, -3.70646317414, -4.33965125791, -4.76111378599, -3.34964004567, -2.79516815968, -0.985062514936, -1.19713635343, -3.14305435084, -4.26844060776, -3.35551475326, -2.97635400821, -3.11226810057, -5.00517291984, -4.45828762509, -2.92964495631, -3.0340518455, -2.63137123131, -0.5984251984, 1.46882692707, 1.91813591611, 0.931131009822, -0.198698414513, -3.10258584158, -5.10707707985, -5.53978453609, -5.87190440655, -6.15266139896, -6.09909315047, -3.56047669739, -3.55761346254, -1.23993200533, 0.474795919986, -1.02959575087, -1.24291855948, -1.31426952875, -2.32409070416, -2.74719528672, 0.285902173824, 3.46346174555, 5.55064318821, 7.93131324422, 7.99242651171, 8.5373199465, 11.0752351805, 10.3205319282, 11.7581891849, 13.4949527524, 14.402257039, 14.3341961315, 16.7118900516, 14.2627254109, 16.5382962436, 15.3067781388, 18.1656461106, 17.0995160962, 15.934693484, 12.360748197, 12.4371219166, 13.5501064722, 13.2089378056, 14.1279104195, 13.4566914737, 15.9390080651, 15.2023626211, 12.443013371, 11.6235738652, 12.3093408538, 13.413332176, 13.3378554542, 12.7324527487, 10.9583926979, 12.4770860368, 10.3856928769, 11.2769203911, 10.9252342885, 10.5648842903, 9.90341705159, 8.90109222607, 8.74410691403, 5.62013558101, 5.75894407649, 7.14620387683, 7.82192882076, 9.99752533649, 11.4669502774, 10.3036227351, 10.6353641791, 14.7873630054, 14.6815788314, 17.4222005324, 15.9305759257, 16.4283318184, 17.5594396448, 17.8371814833, 16.6537129297, 12.9698129546, 8.22890747877, 10.4446077726, 13.148096571, 16.5755720498, 17.0970366987, 18.4260467093, 17.8427544622, 16.153890924, 16.1188692931, 17.0701110598, 16.5592444246, 16.7801876574, 18.7058755511, 16.8994733969, 15.093160324, 17.6321434315, 13.7980907919, 10.9898205761, 11.30276208, 9.37855259325, 10.9117452673, 11.0812344068, 12.8525922512, 10.7657134117, 11.555475122, 8.96571434472, 5.60051748344, 6.89258971926, 6.41484884007, 5.87972395348, 8.33839027511, 10.9814037915, 11.6656886194, 9.902573022, 8.96599982974, 9.70357715902, 9.47267497888, 7.59562651098, 8.05171507272, 6.81324160259, 5.93272558092, 5.66885758889, 8.38838033493, 4.29354010421, 4.72704863187, 7.2565249243, 7.97067463359, 6.38361598112, 5.68639720468, 2.3657444534, 1.70934714165, 2.45720993286, 2.03355212971, -0.174752482635, -2.38494583162, -3.61461123073, -5.76496371563, -7.50254742778, -9.2956270284, -9.36776589712, -5.91491283109, -8.43918270326, -11.0162806727, -10.4725899139, -11.2769921424, -10.5641008534, -11.9928147849, -12.7483073835, -14.7672001844, -13.4777929449, -15.7901116746, -14.5569502867, -16.4933826324, -19.358021726, -18.9508511213, -18.0968256136, -16.0255273907, -19.0290483393, -19.3290168721, -18.4769531356, -19.225163488, -23.0562321371, -24.2830335385, -23.438117191, -23.6555178343, -20.2726489546, -19.455048731, -19.7863053144, -18.6545983156, -19.3574121043, -19.2048630105, -16.5631387925, -15.9213347995, -13.1730323144, -11.2452962616, -12.1456072698, -9.42917902507, -9.75066084596, -12.4902089244, -10.76325461, -10.2495453882, -10.0696692325, -7.83101325354, -9.68160249681, -11.2012611972, -9.37769680478, -11.3548260447, -9.56939528372, -7.55818751635, -7.94327560797, -4.51860599279, -5.96428843721, -7.43356147407, -5.53530146882, -5.1413890716, -5.9311125606, -7.23379839661, -4.92435468262, -6.20244740005, -7.56491772354, -6.43501630667, -7.36860703403, -9.544850133, -9.35905877848, -10.7724736225, -10.1929460888, -10.2769806516, -11.5945844717, -10.2076146177, -9.17566745132, -6.44234561378, -3.03685959579, 0.108979069684, 1.63292321945, -3.08231707893, -3.99824601089, -4.76766751779, -3.92895570577, -5.07233023067, -8.06734947554, -8.50264105061, -6.53794408326, -10.9236159279, -9.30379256484, -10.6467278331, -8.18200271162, -10.059796806, -13.0293717991, -9.35950632056, -9.4789239713, -8.54771091302, -6.87012462088, -8.06314781495, -6.81596908504, -3.64375134679, -2.73147927876, -0.969365998405, 0.046563582321, -1.98724358604, -2.29256165664, -4.43869105617, -3.44517225471, -5.05223966562, -5.70299749891, -4.72847971208, -5.37093764623, -8.65020440945, -10.6837253481, -10.1912707497, -8.08829638699, -7.35358781352, -10.5409366475, -9.59489645073, -11.125325334, -11.7185324629, -9.09013732852, -9.53073643867, -8.2904173021, -7.45330020383, -11.3149293215, -16.3884225385, -18.1348641881, -18.3769467479, -17.1871943902, -15.3328226006, -17.2201521411, -17.6087543443, -15.6965494364, -15.8888438242, -20.0427030899, -23.5741499961, -19.9267862136, -21.7932428801, -23.7805433321, -25.2903769751, -25.8224052919, -24.0756715863, -25.1160211799, -25.546393164, -26.5906593435, -28.3738626728, -27.212679408, -27.8648258452, -26.5382940526, -25.586916026, -23.9564109112, -24.8999843293, -24.5346644423, -25.2946855379, -27.0004062596, -26.6711396325, -25.7663475401, -23.6294743054, -22.2400241472, -23.4733888841, -22.0949183054, -23.7355531844, -23.9509775377, -21.3666238956, -21.0093678628, -22.5848073055, -23.0656215594, -23.2985810682, -24.9971474878, -25.6633129801, -23.0545809277, -22.4892842952, -22.0735508018, -20.7213650517, -17.2799752137, -18.7207128821, -17.1134175191, -17.3409263049, -16.8129416381, -15.0749359741, -15.8271086115, -14.8564727297, -15.8419171177, -16.001723019, -14.7008670014, -15.16605393, -16.5309096861, -17.1568547726, -15.8705096954, -15.0024494448, -15.7021808293, -12.2844657768, -10.5479018293, -7.4518005957, -10.5802392826, -10.4006493629, -11.6842892572, -13.5834689025, -13.0607161531, -12.4155448759, -11.4505012147, -10.3850909339, -11.2515723444, -9.55434784734, -7.43312830104, -2.16593821075, -4.08221762842, -3.73195393908, -1.32326575066, -3.36692537518, -0.991913066176, -3.42123571217, -1.02113081403, 2.74183254031, 4.60885625505, 5.1861551236, 7.94967179126, 7.23625922783, 11.4668733809, 12.9839283711, 13.6676413556, 12.7973009454, 13.1099156282, 12.09218766, 11.5220142187, 11.1301441484, 11.8974589099, 12.6259500047, 12.5506560285, 11.7623224739, 11.9614908808, 11.0550734881, 10.7542274336, 11.4893880995, 12.6656611233, 11.9535123108, 13.1726500228, 12.7314023273, 11.4541551565, 13.5044145125, 14.659728697, 11.3050455557, 14.062830264, 11.6768006716, 14.205718455, 13.2378021907, 13.4086026846, 14.4872875275, 12.9146726617, 12.4278865741, 13.2699726471, 13.326369081, 17.7321012457, 16.1246193103, 17.2657086042, 15.8107330738, 19.1422205396, 20.0189257722, 20.6044386727, 21.7737473969, 21.8620350915, 23.4052117833, 24.4199787578, 25.7428708104, 26.0596029916, 29.900994098, 30.8273076541, 29.2632766369, 33.977461361, 32.9119469068, 36.9031371045, 36.6210092539, 37.3810650386, 37.3800860511, 35.8506871095, 34.5116207281, 31.8895747896, 28.6998961332, 27.2500469629, 26.3289359688, 27.0121527705, 27.0073442404, 27.0392676401, 25.5561594425, 23.8864018552, 22.9447401451, 22.4172756724, 24.8788043801, 25.785845786, 28.6473894815, 26.7868658329, 27.5716168017, 26.4848733333, 26.5473856292, 25.0235839332, 22.9507844486, 22.3705473521, 23.0130013465, 24.5364341706, 26.1916301396, 28.1858461289, 30.1234486307, 32.5482323589, 31.2720236008, 34.5838642411, 35.644628907, 38.5257176675, 42.4925301959, 41.0921638938, 40.5893719849, 39.9537576988, 41.5217578144, 41.4516919132, 40.9703271571, 43.8515189499, 40.7185932407, 40.0531803268, 43.6235911876, 45.0562420092, 44.5143791877, 45.0235896159, 43.1257801982, 43.3970785006, 43.1575387646, 44.267676731, 43.2642346276, 42.2388280464, 45.4752424723, 43.6610022886, 44.6357649311, 45.8362684079, 42.7975292245, 43.2518617821, 41.4902799952, 43.5055420864, 42.3654159831, 44.9633016211, 46.8406823939, 47.8887328253, 47.9668184741, 48.9315527199, 52.0774477511, 50.4074982543, 49.3129414837, 53.6993364348, 54.1705941421, 54.5423200842, 56.7860194537, 57.1697614709, 56.1456841836, 57.7825365701, 54.5700332444, 54.2747855578, 55.0148321021, 56.3828996237, 56.4979510016, 55.5551435977, 58.6687455234, 59.7987737712, 59.490021811, 57.7925471809, 57.7848243747, 58.1126777348, 59.2771454495, 60.3714657896, 60.4654095288, 62.0979812011, 64.0445832126, 62.3265390894, 64.433462931, 66.0708752918, 66.8132448713, 64.919562555, 66.8318835583, 66.6807507547, 66.3618170889, 64.7141243477, 68.0190617941, 67.1748720444, 66.7790297365, 67.1344583348, 68.7205666699, 66.8746665317, 65.4228818483, 63.6824943346, 63.2110711395, 61.4630477416, 60.160529121, 60.0023262306, 61.308739689, 63.1511086518, 63.9968569346, 63.4103923724, 62.8785884775, 63.1801833899, 65.6496168924, 66.8742131604, 69.4065817654, 66.9407261063, 66.348872735, 67.8490003057, 66.3591373994, 61.5285102571, 60.0786185511, 55.6865152346, 55.4261810103, 59.3586831537, 58.5617655876, 59.3370454932, 59.8693996196, 58.4997380382, 61.3595077562, 60.6908718815, 56.0713399861, 58.9818262092, 56.6953229396, 55.9019733387, 56.7590598976, 57.0977619898, 54.7502581374, 56.4088301793, 56.3319197665, 56.5191730601, 57.7448195729, 57.1951254613, 57.4723658916, 60.7836321755, 59.5657474523, 63.3232262653, 63.2017233682, 65.0418743014, 61.8925706021, 63.8624216121, 64.4870835027, 66.3342804835, 70.5746462219, 69.5412971747, 66.1308154526, 65.072105087, 63.9830876463, 61.425255881, 60.7530095384, 61.3581366493, 60.3132497969, 60.7165011718, 60.2314953019, 61.1103637904, 62.4995182621, 63.6216438761, 64.5448830092, 63.7572127674, 63.8412024403, 63.2765181115, 63.6584882487, 65.9013307744, 64.8794091133, 62.3599178175, 59.0226125922, 60.7843513319, 62.556626775, 62.3464276, 62.6287127393, 62.7824361713, 61.9148039496, 59.6383012348, 59.1349526478, 57.6856738612, 58.3342304827, 57.2040584005, 55.9491561977, 56.8243075432, 55.0884209903, 56.8794368898, 55.285452174, 58.0693251387, 59.7783520447, 62.5440804306, 63.1427439828, 63.2173713084, 65.5492712044, 66.3009604696, 66.6940375158, 67.8726403748, 66.771771401, 69.8100758199, 70.4313785817, 69.6078541068, 68.1961598081, 69.5945761468, 69.7547279655, 71.737612621, 72.4832271444, 70.6844975053, 73.2479102143, 74.2757903207, 74.0251073728, 72.6113826391, 73.7521518798, 74.51406016, 74.9694116435, 72.2454743118, 71.1529155199, 72.087158784, 72.77217393, 71.778467844, 71.7533884196, 72.736839194, 72.9313807389, 72.3826989006, 75.869437254, 77.6021138202, 76.6294127673, 79.0019216484, 81.4762500799, 84.2385393944, 85.8238219283, 85.5760074495, 80.6270824484, 84.7759731016, 84.0918935393, 81.4937948004, 86.2164901735, 83.1733890063, 83.4503710474, 82.469403447, 80.4361206696, 79.2584155092, 80.0119982236, 78.9468764208, 79.171276713, 77.2525971309, 76.8162765189, 74.2080827849, 75.0750644022, 70.4276889275, 68.889748712, 68.2728662039, 71.2782704572, 69.4696507855, 69.5264757893, 68.8814630763, 68.5369706541, 67.6833912747, 68.7605061811, 71.1359403938, 70.6514105765, 68.1477343287, 67.0681859241, 67.0143174695, 67.3309641758, 68.051288646, 67.2024340697, 67.522050559, 67.7768475243, 65.9401471412, 66.1606463793, 66.9394316429, 68.3787264063, 70.1164009085, 71.5875038748, 69.4863500194, 69.503932177, 68.4593671173, 69.7260909554, 70.3114451756, 68.9902131352, 68.1104721958, 69.6990612438, 73.4661064448, 71.2599777213, 69.8595185982, 69.8563665114, 69.1884587717, 70.6731408565, 74.1189893226, 72.6613288594, 70.601515339, 67.5954381813, 64.8042814989, 64.368869946, 65.030008523, 65.0750925331, 65.2120176045, 67.0617269418, 69.5072301416, 70.0417127449, 73.219968293, 74.4577736319, 78.6334179825, 78.4998247775, 79.4984869678, 78.2933075197, 77.8802690836, 82.1025258923, 84.2673838315, 84.5024079994, 87.9125780504, 84.9027605109, 83.4489526179, 83.6203632289, 86.0516726291, 82.9342348231, 80.5382639536, 79.4315811918, 79.4709527024, 77.833266341, 72.9443818607, 71.8695966992, 75.0071259156, 72.3356105012, 74.8382695529, 73.9867068264, 74.1502448275, 73.3961146984, 74.6866475558, 76.1647130381, 81.3792454538, 83.0898140881, 83.5703481672, 83.3619488417, 79.8434495299, 79.9798284671, 78.7834261893, 80.2016337124, 80.0854233355, 79.5858995036, 82.9467070041, 81.0584297251, 82.3406042543, 82.3497075558, 82.02318963, 83.4218032879, 81.7436225133, 80.6308856437, 81.8953039976, 82.5536304317, 83.8170600513, 82.285337025, 83.445632418, 81.6442593082, 80.8701149169, 82.2632316989, 81.8132870898, 83.3743074098, 83.5245415036, 80.8755582912, 82.641331334, 84.2105682984, 84.5059549198, 82.8742303999, 83.4868755931, 87.0114564693, 85.0548085735, 84.6732648307, 85.3988840053, 86.398073196, 87.635826975, 85.125332009, 86.7850600206, 88.7834352317, 88.7121604182, 90.4957720327, 93.2530966351, 93.7006763997, 95.9122515356, 90.6071562219, 89.6360388581, 89.7689351168, 90.508488805, 90.8024094231, 91.3521511706, 90.8740843537, 90.6114494675, 90.378597497, 90.4905410862, 91.8700449357, 92.0920913333, 91.3769153169, 92.9084047541, 91.9801147605, 92.2725572176, 96.2282955953, 97.6011351014, 96.3048425226, 92.0017330229, 93.6998482244, 92.1516547087, 90.4886979463, 88.7565861076, 87.1598017971, 82.6225983227, 81.0225331869, 82.0096206011, 79.7153256246, 79.2710505653, 80.7829985936, 79.3561148892, 77.4492923931, 77.210016984, 77.5214035384, 77.9476673686, 80.5921028916, 80.4612388252, 79.9060554572, 80.1382417279, 80.9408844523, 80.3270430752, 81.9091714899, 83.4775154585, 82.4026664316, 79.5633067904, 80.5511571044, 80.0485082617, 83.8785852927, 84.0499914594, 82.1064077627, 82.6537411793, 83.8663351885, 80.5428108202, 82.8996714899, 85.6714275061, 86.7391232939, 84.7512994856, 84.7123969168, 81.1873842526, 80.2613181049, 81.3452681394, 80.8831808646, 82.1562199058, 83.6822931961, 85.2977827713, 85.3698398712, 82.9174494353, 80.7415153155, 82.9815591522, 83.7999967628, 85.932085419, 89.1889236698, 88.1228474501, 87.8773812519, 89.5473733898, 86.8021469904, 84.5604303088, 83.7426210713, 82.2049861386, 83.6368939144, 82.2237844715, 81.8154448647, 81.3624534674, 82.867351418, 84.3284800652, 81.3763481066, 82.9182259427, 80.672995694, 80.297248479, 84.7274219803, 85.6342701532, 82.6644946146, 83.9627659672, 83.9236946689, 83.9318005501, 85.3685800687, 86.0838994658, 86.5992794351, 86.1049833089, 86.75811886, 86.7870200065, 87.8954686811, 87.8070648794, 90.0322693794, 87.4410457048, 86.1615654814, 83.9933370833, 86.9096744723, 86.4147198163, 86.4025383343, 88.4553477356, 87.6466679167, 88.3482345117, 86.0620340473, 84.6692035945, 84.6585094628, 82.8138595718, 82.6674980887, 83.341210921, 81.8268587004, 81.8221647291, 81.1626053843, 81.0605562215, 81.4263206798, 83.2503682057, 83.7745917531, 83.4576028874, 83.2552141865), y = c(-0.700740641367, -4.22733500259, -3.34519351254, -5.24047112859, -4.32950676893, -1.73642938603, -2.3381318465, -1.30013798663, -2.34259102965, -4.7097973579, -4.23048596248, -4.10616597806, -1.13721249399, 1.74712441174, 1.80643215496, -0.124705468256, 0.102956881674, 2.64455174559, 7.09865480876, 7.73096240707, 5.28471390777, 5.51769873795, 7.12683622781, 4.50019074477, 2.52413981475, 3.64347006815, 3.61278891617, 6.51152605854, 5.48328245565, 5.40856991004, 8.64836165268, 5.91334066238, 7.16087183589, 3.81874739194, 5.91445517137, 2.73910572933, 3.4407373475, 1.95976785907, 1.56912431386, 1.82004530701, 2.30859612784, 4.71190833401, 4.96312665689, 3.87900776269, 3.6593098265, 1.45670185071, 3.88182449209, 5.39948443233, 3.96718200593, 1.9488183581, 3.9479819188, 7.83451461542, 8.56589803804, 7.7310518376, 8.31775522172, 9.97283206773, 13.2463670971, 10.9945336731, 12.2495484244, 14.0415730809, 16.6293019839, 15.0291460903, 13.0824559956, 10.5367290223, 9.64205800185, 11.0593758696, 10.7153014807, 11.6048402682, 13.2993655519, 14.269770172, 11.8779394773, 10.2044199848, 11.9941296665, 11.6086286077, 10.8771148302, 12.1471584567, 13.7470205419, 13.1859361609, 9.99738017586, 10.8165553423, 13.316755317, 13.7152634092, 12.2107000853, 15.0443797447, 14.6645775769, 12.6720842816, 12.2765703434, 11.5865592883, 15.0386241033, 14.8086388877, 14.38172374, 15.972652947, 11.9502172712, 14.8274167915, 13.8000108549, 12.5763980744, 13.0507246596, 12.8988381066, 11.3192324574, 11.4972312402, 13.2576588091, 11.7783077974, 11.8074163343, 11.1902078172, 9.8321075529, 10.4190490585, 12.1367497976, 10.7340548561, 9.4353144921, 9.84572680661, 11.8166301711, 13.1902267237, 16.531929775, 14.5160183021, 13.2067683804, 16.0587565885, 16.6589947384, 17.775075397, 16.7175319908, 15.8155358994, 15.2291513455, 18.1548696074, 18.8402892211, 19.5398583822, 21.3314002847, 23.7686875282, 20.5097221456, 19.963715331, 19.0940279119, 23.7959290405, 23.731710376, 23.8037280612, 22.168392284, 25.4801344554, 25.1081602361, 23.5406661947, 24.0235635704, 24.4342082776, 24.5569892583, 26.4305318007, 25.4583993882, 25.5850406421, 27.5063348569, 27.1283228702, 27.6272503917, 28.7066009336, 25.2119681238, 21.6129141224, 21.6667734971, 20.2669203931, 20.8963156826, 21.6112416379, 21.0532124933, 21.0271501084, 23.5926488619, 23.7113539633, 20.5972953923, 22.193048598, 22.5631229594, 22.3670798207, 22.7059183118, 19.5075149221, 19.5547584336, 20.9416508807, 23.1327764914, 25.8377240693, 27.4547762178, 29.824991361, 29.2119719658, 30.0751029748, 28.8911085742, 30.3106725789, 30.9537801787, 30.6979288799, 33.6101241413, 34.7156933038, 32.6152141304, 29.9390499933, 28.8718605516, 28.4642004692, 31.0870109898, 30.8146949434, 31.7952399659, 26.6652408612, 27.733688094, 32.4214525586, 31.5027043162, 30.381276834, 30.3311599706, 30.5754512353, 29.4973907107, 31.4015561745, 32.4306783155, 31.8700452621, 30.0377180911, 27.775609339, 26.6830458681, 29.4868611888, 27.850203162, 27.6808277266, 27.949305082, 28.0050732116, 28.3579290815, 27.1917571537, 26.1306135526, 27.9902039763, 26.1612151859, 29.0764431829, 31.621314499, 31.5604653763, 33.6175696154, 34.8852254255, 32.8592301026, 35.5803975575, 33.6883478249, 33.7598123075, 31.4246185388, 32.2457728668, 32.0553366374, 32.1852216477, 33.7094450635, 37.3336470163, 37.5001204632, 36.217875068, 34.4166574493, 35.7019209552, 33.0631107621, 36.7830479701, 34.3503104018, 32.4182960734, 33.0874837273, 31.6697229812, 31.5067589649, 33.5265854996, 33.260232581, 31.9815176406, 34.6105557252, 34.3388886128, 34.0368793254, 33.6522919004, 37.6217247333, 38.1669514235, 40.4074781547, 38.3615992404, 36.1629611723, 35.9671510871, 38.1361290612, 35.8922649915, 38.1512572094, 36.5074675872, 34.4116714257, 31.111860568, 32.5383729834, 35.2397798857, 35.9621849496, 37.5523842005, 39.0982258029, 36.2376156354, 33.5426655784, 33.4427675666, 32.1796879463, 30.8483901618, 28.9933318391, 29.0362960255, 29.083610239, 29.4490072648, 32.1292923777, 31.8902730065, 29.3961270134, 31.9836195384, 31.6268345271, 30.1327992644, 29.2216379993, 29.6910120974, 29.675504607, 31.0756789149, 32.0882607374, 35.0711908, 36.2767191403, 33.9766510411, 32.0225494181, 34.4973538692, 34.5773374195, 37.4277541103, 35.504596674, 35.9273889243, 36.5458670633, 36.0655211794, 35.0428648999, 37.0379878754, 35.0061792353, 34.7827095055, 35.760669295, 36.0640632276, 38.4837054196, 36.2773643104, 36.1001789797, 36.0073696909, 37.3077181, 38.5705229883, 37.4042295093, 37.4460198924, 35.2902469539, 35.601462242, 34.2983513601, 34.8451171091, 35.4879083312, 35.7167921169, 36.490065193, 36.8182577334, 40.4488942714, 41.9675069345, 40.4959269289, 38.5710510681, 39.1212421814, 40.3298431263, 40.0574197111, 40.1668906257, 38.9630904754, 42.9121381512, 43.8760216992, 47.8844760906, 49.672509939, 48.1353811579, 50.7479445394, 54.4067440874, 55.3450281215, 52.1811636149, 48.8631989788, 50.5817919321, 52.8849774277, 53.4643860136, 51.6473538987, 48.9965418284, 46.2631850528, 45.3368321015, 48.2830767987, 48.227357545, 49.516915907, 49.2653158104, 47.6360181359, 50.1431325636, 51.1987588188, 48.9833528519, 51.7966301722, 49.8599379486, 50.5195405746, 49.4937293472, 46.6827494083, 43.1872880239, 41.6743498113, 39.7400824276, 39.7163473301, 39.3089980528, 39.7604110371, 39.7244365155, 39.5095813604, 42.381926836, 40.9419824164, 37.7290971952, 39.2191189819, 40.2914154466, 38.6446692128, 40.0703253249, 38.5069541771, 36.7938469257, 34.3614107684, 35.9538803102, 35.500839439, 34.3653931908, 32.8158290408, 29.2222936842, 30.7686890105, 28.4040666168, 28.5312536795, 26.1965284108, 22.4664646236, 21.3013679647, 19.9829463221, 17.5881209976, 19.6186456516, 17.666502843, 20.3321325922, 19.6052143049, 21.1606141981, 21.226544152, 22.1047296409, 19.8847370899, 17.6545975117, 20.4855890392, 20.7811131318, 23.9645490672, 23.9022683678, 22.076111249, 22.1327357741, 21.5358094603, 20.5454301939, 20.8815304134, 19.5545852842, 18.9487489556, 19.9804235995, 20.9552664912, 20.9991734474, 23.0159732477, 19.645716366, 18.7469848157, 22.773372402, 21.6180201526, 16.5619591882, 16.0826932042, 15.9095629564, 15.4177152362, 17.1511852596, 16.7861675454, 14.6804803501, 17.5389058006, 18.9998899394, 16.3309567446, 16.7445589308, 17.8108075583, 18.0530705829, 18.3260094143, 17.6218193885, 17.628553479, 17.5990205773, 19.9746041709, 19.9943389266, 19.260144183, 20.4791083201, 18.9969208525, 19.4108668078, 18.4259319455, 14.7542145805, 13.9133361325, 15.0420822945, 15.6969235741, 15.1917155805, 14.5554948706, 14.1340096552, 14.2588080213, 15.8725326603, 15.7762382525, 16.3447980848, 14.5692199212, 16.5449929368, 18.233346642, 16.2822191871, 17.1302810015, 16.180456143, 17.6190658156, 17.0400574771, 17.0901759052, 20.1365140701, 20.0968112049, 20.1638651692, 18.5973309814, 18.3838546297, 18.8788272297, 17.5883413035, 17.6763630617, 18.8841176922, 16.4960327806, 20.2475159766, 17.9811059961, 19.0199083998, 20.9844282471, 20.4532805028, 22.451920476, 26.8731608968, 25.5172148275, 28.2824425852, 32.1307085325, 31.2733341042, 34.296973307, 32.7665124741, 30.7742970573, 29.3627066827, 33.8068234405, 33.6282257154, 35.1264609407, 34.0133957295, 36.207499146, 35.8304873756, 33.2039114864, 35.5103705367, 36.840122754, 36.2922703013, 38.407097006, 37.3893274262, 37.5890915846, 36.3775631146, 34.5262331866, 31.7814694834, 26.8532069525, 25.4313270347, 25.3925322804, 30.201410772, 28.5309914324, 30.6139417189, 32.7009242984, 31.7929754749, 31.6160635543, 33.0725106145, 35.6071433922, 37.2381371048, 39.7718933248, 40.6215854061, 43.5802635305, 46.8671846643, 44.7361812229, 44.9218496807, 42.5555334128, 38.9724393267, 38.3208281754, 38.3228697221, 34.1742511636, 36.3028928898, 36.8538353131, 35.0982488485, 34.6325983125, 35.4730294559, 36.4374616557, 36.7406967586, 37.253370556, 35.0144023181, 34.7703415116, 32.3564340407, 31.319200939, 27.8411907354, 30.1206135734, 32.165068159, 33.200585906, 36.3110337077, 38.3523053131, 41.0245234881, 44.0176399777, 48.1018712827, 48.6413481561, 46.3792118443, 48.720885009, 48.1651024841, 46.9311889525, 49.2704955987, 48.7819561313, 52.2185796397, 51.8831607765, 55.2371552195, 55.9413926763, 53.6517496057, 54.4772953217, 54.2748921377, 51.848752617, 51.3608680751, 52.4865507734, 52.7636179337, 52.1726890096, 55.3672096376, 56.0972976478, 54.4637483461, 53.6133703098, 53.1712985541, 54.0265425641, 55.7634565489, 54.5096769969, 55.8926032539, 58.0694995448, 56.0534469645, 54.9102995782, 55.8481369293, 55.9720353986, 57.1619054552, 57.8337308384, 57.261471799, 54.5651324505, 54.8487785441, 53.3555991929, 53.8467519794, 51.81255424, 53.3303021639, 53.9344080818, 52.8830548737, 52.69287293, 51.744189314, 50.7609764404, 49.7335987815, 49.6569398989, 49.6938423712, 48.6514842993, 48.8778956164, 45.9099100841, 46.5975962591, 47.9418625841, 46.7127570376, 46.0396229346, 46.670646749, 50.4428817305, 53.094488002, 57.1518572862, 54.2922383885, 52.1426976397, 51.1399077416, 49.8859092241, 51.3027303967, 51.4069892835, 54.2460519984, 52.7325361079, 53.1686555354, 57.5415858633, 58.0711760017, 60.2641434129, 59.5190444897, 60.6810033156, 58.6183119592, 59.9264633604, 61.3128284876, 58.7140573568, 59.3065514253, 60.4961468039, 58.2816946134, 58.5064439032, 59.585595486, 62.8181050404, 60.8438065681, 59.905363601, 61.458224663, 62.6463256602, 64.3433756259, 64.7761315044, 65.9823533761, 67.9171601341, 64.528432919, 64.1376257686, 65.7718805393, 65.3221164152, 65.3230211651, 63.3273775829, 65.0911693371, 65.126061715, 62.7102452675, 60.847373958, 61.4991410393, 62.432284537, 62.1398030232, 60.8136911433, 60.2559561398, 59.0151333726, 59.8615606151, 56.396068951, 56.8863654071, 58.8782086435, 58.2483313497, 55.6489213181, 55.7191011049, 50.9012183084, 50.8439548996, 49.8376594489, 49.4873065723, 48.4471858245, 50.5612103333, 51.5151020609, 52.9467558619, 54.6413888108, 54.0813529211, 54.5480233494, 56.0669110967, 58.1829640752, 59.6616610095, 60.1568237094, 59.2945429911, 60.5660700305, 57.4948310868, 61.293441506, 60.2266959515, 59.3574992038, 58.1270997967, 55.4882036932, 56.9587217291, 58.3641382398, 55.2394997046, 58.1812156491, 60.7135183312, 63.6496432431, 62.3672861501, 63.9529979124, 67.0465929116, 66.6977751528, 68.5222314146, 68.7038354795, 67.0455156956, 68.4271912486, 69.3039685181, 73.0303791664, 72.0227502463, 72.7424528094, 74.7226267021, 78.2809707848, 78.0702074907, 77.3926222174, 78.5477133283, 77.2777665593, 77.7758244404, 77.7198051373, 82.0069690036, 81.9654877981, 81.4670173169, 81.859762936, 82.1404788566, 81.5444729019, 80.5662916968, 82.2062620166, 81.8018008036, 82.1231001906, 80.3520169868, 80.7056042369, 80.7908196452, 80.3123859573, 81.7481281556, 80.5166896617, 80.1535777549, 83.6768136477, 80.6828687483, 82.7557975977, 83.3451475631, 83.2705088883, 82.1674892945, 80.6846709471, 79.9601986432, 81.0161075769, 82.0119798897, 80.0582990579, 81.0563236049, 81.8780614569, 82.9730408312, 82.4736935282, 85.1259021459, 84.9951099718, 86.3350015799, 89.0801788625, 91.1618770961, 92.0245812291, 94.9099153677, 93.8119943765, 93.6088503301, 95.8466004165, 99.8482695865, 100.38147662, 101.917547766, 102.047441065, 100.220468206, 100.623967374, 100.388544515, 102.958306608, 103.205290748, 105.00650426, 105.014336077, 105.410987873, 105.775481044, 107.763394618, 107.678309938, 106.943756839, 108.619593916, 108.763371838, 109.75021844, 110.650073292, 110.574149081, 108.873326265, 109.323247052, 106.088962552, 104.070390529, 105.777122704, 108.108730226, 111.25955063, 113.636501082, 113.716543809, 111.310604446, 107.444630975, 106.66884291, 105.449898824, 103.875445848, 100.161488187, 98.8995295179, 100.328992852, 98.9014877286, 98.382443123, 97.7004225982, 97.902597891, 95.2516621866, 95.0091319337, 98.4128875076, 98.6493974041, 100.200722685, 97.4620362515, 100.497215393, 100.164009774, 100.668133029, 100.831253785, 99.4347053374, 97.4694190789, 94.4923714117, 93.6346465981, 97.1940586901, 99.2745506798, 100.259419403, 100.381714307, 102.318822862, 104.923174657, 105.262017439, 104.89535123, 102.724932504, 106.885434515, 107.296568113, 109.677372477, 110.244997574, 112.972280061, 113.770689702, 112.447973781, 111.929817938, 109.683851439, 109.729777899, 107.543621393, 107.720007956, 108.383666809, 109.884759957, 109.451061005, 107.119968211, 110.880869888, 109.671317908, 111.685571, 112.068129699, 112.238443359, 110.373235439, 107.13981872, 108.460255422, 107.852363793, 107.962763192, 105.434793208, 104.31450059, 105.659450933, 105.209314833, 101.225949442, 101.38626022, 101.72557437, 99.9749693299, 98.4249757103, 97.0726429857, 98.0850669196, 99.4273482715, 96.7433242896, 95.5238646249, 94.1215445115, 95.2690448375, 94.1455902179, 94.5973552822, 91.4508210957, 91.2633566343, 90.1397536743, 90.4380280046, 88.7336234702, 87.7229250192, 88.5849568842, 89.1040602154, 89.4868187862, 87.5479588909, 85.5565688084, 83.8967949143, 80.3271561616, 81.5367721746, 82.0298796131, 82.9367820762, 82.3484956442, 87.0882571274, 87.664675965, 88.6844548417, 88.7573432478, 89.0599003612, 89.4110912413, 87.9541540988, 86.4281991775, 89.5501094016, 89.6336680743, 90.6144708375, 92.7357008268, 94.668797149, 95.4885615438, 94.8313569272, 91.7990584827, 91.9975438029, 94.3027038624, 93.6946814421, 95.4648550995, 96.4435168654, 97.6794207989, 96.6941401676, 96.6412968985, 97.1394201533, 101.778969087, 100.575470447, 102.247049226, 97.6661633661, 98.0712180542, 94.9227695074, 94.6177145991, 94.2624268664, 94.2742431827, 94.6822975593, 98.1888671577, 96.4703330933, 94.7959354647, 97.0898539043, 98.0912343676, 98.4246615228, 98.6251339784, 99.1031270327, 101.237821491, 100.539437022, 101.143722621, 103.171131881, 102.642090109, 99.9188358045, 103.427464292, 102.194604795, 100.241009447, 97.8488669343, 97.7099690515, 95.4514887557, 93.4573210777, 95.0153902399, 95.0912622925, 96.8290883409, 97.0865910729, 98.4342438514, 99.0261941878, 98.0914537679, 96.4118630687, 96.2441449337, 96.7250885356, 97.8263633513, 102.078578894, 102.358153173, 101.260322329, 100.253639556, 100.09962594, 96.4704670312, 93.3844772478, 93.4465866379, 91.9877303052, 95.1081306581, 96.2118417964, 97.8692485043, 95.6187344165, 94.5624422428, 92.6951390502, 94.7674810825, 93.8314145597, 92.7782697925, 93.3318849959, 92.1822359831, 92.5449501278, 91.4621320935, 89.1184249619, 87.6884074041, 87.5479230861, 88.6184233703, 89.8936065288, 88.3976997364, 87.6289445027, 88.1619767514, 86.9260956198, 86.8496457434, 86.8352328661, 89.4041620719, 88.8870714697, 87.2628431943, 83.4868902306, 82.0681940604, 81.9235987646, 79.9072468464, 79.720871665, 80.7452985326, 80.5317605669, 81.6294487468, 81.0016427656, 79.7308619627, 77.7413311474, 79.5356548694, 75.2984617463, 72.8950525578, 73.8448490243, 73.0749368338, 73.6608636764, 70.3327246889, 72.4464412351, 70.2435433491, 67.5560806982, 67.0133581711, 69.5200988351, 70.5016600707, 69.6441177446, 68.8142210831, 70.9338888156, 67.84331135), diff --git a/published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt b/published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt index f726df55dc5b..d397c9d02be3 100644 --- a/published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt +++ b/published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.858927762914, 0.759678101763, 1.6178351592, 1.87830282065, 0.809847170863, 0.268555760283, 2.30810416239, 0.282888011561, 1.75225768912, -0.0858584825427, -0.664926809221, -0.548288732801, 0.935236191463, -1.02421230779, 0.644847152488, 0.0793568349027, 0.376719868063, 0.462240513173, 0.973028103151, -0.114269985428, -0.033940830122, 0.811377010177, 0.173216762098, 1.13050378279, 0.553484661867, 0.440805181912, 0.148990837935, -0.493219257424, -0.40049507589, 0.624356936003, -1.34714271255, -1.33109047124, 0.580407752205, 1.31228189798, 1.16625104479, 0.372976659017, 0.33595979347, -0.791263889586, 2.95679346521, -1.44635853127, 0.802371733213, 2.69594639721, -1.80577115012, -0.585443782182, 1.74147234306, 0.0551660441537, 0.218995819792, 1.56944606413, -0.947713487167, 0.21531704968, 0.283274664607, -1.03433101051, 0.427567525355, -0.29651815918, 1.71666047058, -0.0124001672318, 1.25319441867, -0.94507428328, 3.09647680347, -0.287215190821, 1.45119951375, 1.69922212558, 2.69850672147, -0.0289175063451, 1.21716676273, 2.46646810578, -0.112577515009, 2.38520630018, -0.894226360843, 1.38400031789, -0.769002241532, 1.92561814496, -0.296718019513, -0.718227769059, 0.208753284183, 2.52782757368, 1.9361555668, -0.754003559785, 2.14063096306, 0.779847993597, 0.502973381133, 0.798184138778, -0.401231296439, -0.758368669985, 0.44767244853, -0.188431184199, 1.79497692012, -0.625306719407, -0.615724277639, -2.06735998972, 1.06474596869, -0.128866941481, -0.452517179795, 0.0200862867444, 0.421379325457, -1.0878312666, 3.09022738748, 0.0277330763081, -1.59553907708, 3.02447398417, 0.742938898095, -0.0669009525229, 1.11353510686, 0.349691325914, 1.27464565235, -0.849660878806, -0.718772836336, 1.4081636604, -0.753321894364, 2.51796096719, 0.623461242752, 2.47835521332, -1.53642964244, 0.159871420819, -0.395698796269, -1.11679091882, 0.448245168587, 1.55502024702, -0.343749743664, 0.724058499487, -0.686090692568, 1.32581077832, 1.25616394504, -0.484964890584, -0.460271614238, -0.841487231275, -1.36820594572, 0.90824794356, 0.67051351088, 0.0212121330424, -1.12267184074, 2.52453987516, 0.0849019587581, 1.7420758675, -1.0027007829, 1.9055764672, -2.14654088662, -1.52908707279, -0.640644116837, 1.67643856705, 2.25602889401, 1.83134219276, -1.72010278768, 2.74926371156, -1.74782046385, 2.00838277274, 2.77375902631, -0.809602500716, 0.444810361123, -0.862546878298, 1.9793213189, -0.0161110137557, -0.567182783683, -0.0148935369382, 1.29136015936, -0.447459511967, 2.01203302064, 3.65266094596, 3.51134603014, -2.60770981104, 2.24846069441, 0.966890489218, -0.880918847259, 1.56450901864, 3.23166864465, -1.18467635833, -1.64698877553, 1.0999706466, 1.37462800435, 0.0355155515869, 1.68461213782, 2.80665024521, 0.934728277386, 0.102742523087, -0.142481480764, -0.984400134993, 2.5408834026, -2.64514400656, 0.193597356785, -1.58222850849, 3.09908565915, 3.5367959438, 2.82880122941, 2.71306112901, 1.517531762, -1.60549123973, 2.06582826664, 0.415256545358, 0.802958397668, -1.83345209613, 2.89468274141, 1.08320823732, 1.10851585661, 2.35824916881, -0.0895465416277, 2.07564212248, -0.540300516929, -2.51315675561, 2.56087015306, -1.68477549995, 0.159617997414, -0.0096568387549, 2.38189315442, -1.77047179409, 0.823566144949, 2.19725973561, -2.30700971811, -2.68543507278, -2.09356427203, -1.62280421582, 3.5241757433, 0.982110745145, -1.44340169645, -3.1226208118, -1.79323527952, 2.37436121305, 1.41047281102, 3.94967038564, 0.890115902236, 1.29209752987, 0.157511695483, 2.03596315641, -0.239538147332, 0.667456763767, 1.46034222522, 1.42065240797, 2.40161812211, 2.81953536735, 3.1390491576, -0.809424460922, -0.613515342979, -2.37597124604, -0.102454450897, 1.10278080375, 1.35979036965, 1.43984057107, -1.32602471093, 0.232247238328, 2.22467629273, 1.32827158852, -0.592266211766, -2.2764609507, 0.377205738192, 0.353227718086, 1.93656584033, 1.9508653414, 1.38500252215, 2.73544615079, 1.1370189711, 1.87643818509, 0.935931377767, 0.147656457965, 0.707402783465, -2.27034360469, -0.21549529712, 1.84701270869, -1.59166018736, -0.0899279120141, -1.76780153178, 1.63174609695, -0.928495296123, 3.19960649446, 2.33011909541, 2.39706138327, 1.01785296718, 0.658242617297, 2.66337911939, -0.813082076212, -1.43347515326, -1.81743262746, -1.23249869238, 1.70358645138, 2.34830652544, -0.0312840792134, 0.556217873043, -2.09254676742, 2.20147446573, 2.26118757695, -0.13608553051, -1.17785812512, 3.00970271063, -2.38857976504, 1.60700925067, -0.31031752125, -0.0530433912159, -1.92633563006, -0.792793130711, 0.294658223896, -1.07807475309, 1.77597120332, 2.30471864914, 0.735157921792, 0.30693398648, 3.00091538111, -0.371353401071, -2.71001705707, -0.341155396452, 0.522613457871, -1.93085965936, 2.79478499215, -0.313871029869, 2.12051092648, 3.00141389588, -0.00535802781989, -2.0777556239, 0.717521153879, -1.96895226957, -0.123500384528, 3.82298949539, 2.64457625817, 0.851122568224, -0.433454261117, 1.32732171987, 2.92422971474, 1.60461821114, -1.57943427664, -0.471902204405, -1.71156258393, 3.66543091282, -0.79395254324, 2.77030702295, 3.92417977108, 0.178819511546, 0.627177838003, -0.107267457054, 1.03713811579, 0.852699587768, -0.710137602566, 2.59665240922, 3.51028489298, -0.0302576844334, -1.57247826785, -0.268406153014, -0.238958380149, 0.386329291232, 2.75650827998, 2.65374593439, 3.32308579008, 2.63394725262, -2.31611284957, 0.792368481101, 1.75250198315, -2.0863833566, -0.580824210252, -2.37313764374, 3.15809501972, 0.119166412194, -0.408202532592, -1.40792875754, 1.73369421215, 0.853135858155, 1.76013699958, -0.470156083617, 1.60540076601, 1.91131704998, 0.800832273894, 0.877989562347, 1.02142060122, 0.775024681003, -1.03816091377, -0.67240219194, -2.08830184156, 2.07126969944, 0.589118614708, -2.43246352324, -1.775012952, 0.338603801466, -1.36587825694, -1.01785435861, -0.251202362196, 0.240488465005, 3.37427125017, -0.427744032382, -0.0160438693411, -2.12360820093, -0.0136300160675, 1.6457583931, -0.398113568909, 2.53618579496, 1.99732502068, 3.03757893274, -1.542951805, 3.29032020554, 0.408597217183, -0.784512643074, 1.92727780511, 1.53237207726, -1.21123169572, -0.533099191238, -0.648573260417, -0.413723569224, 1.70961621052, -0.438637351355, 1.28189816388, -1.00815357379, -0.355421335745, 2.31287621579, 1.04410395208, 0.712592911641, -0.706727456723, -1.8960033809, 1.67320401337, 1.80477328126, -0.24666442478, -0.16108368822, -1.56370587204, 2.06107198416, -0.195931176216, 0.177288395826, -1.20729352235, 0.294135054063, 1.09730702538, 0.203291908383, -0.965609543176, 3.29553773891, -2.74479491047, -1.53148234693, 0.182945314599, 2.79105526804, 3.00847199565, 0.371686924352, -1.4676453197, -1.36196230158, -2.25640972442, -1.62081764515, 0.819163569299, -1.87813351684, 3.64231404007, -1.81342504306, -2.67452608479, -3.09528194535, -2.43224150927, 2.33231557534, 0.926829077971, -1.7157590476, -0.346085084905, -0.976704966679, 0.174122242602, -0.709571668723, -0.814946854616, -1.18937177368, 3.22661237692, 1.76487935387, 4.02168707708, 1.54253760561, 3.0684272825, 1.0766193676, 4.15039042142, -3.89394265607, -0.556788955049, 1.13104626799, -1.55159845843, -0.198247541327, -2.76365241834, -0.0437864059995, -1.1073471829, -2.22224941621, 2.18238487631, -1.88335356177, -1.44496819666, 1.15761562632, 0.601653653672, -1.52132522619, 3.72553746998, 3.34108341777, -1.76822827956, 2.77883375288, -1.83153667401, -1.99139499711, 1.97110727621, 3.61045236073, 1.78405333363, -3.07193793839, 3.59599391471, 2.86251718553, 0.756925211083, 3.43366242359, -0.713059647626, 3.34974067292, 1.06337642201, 0.0538352092257, -1.18727079658, -2.58573940196, 3.50750797235, -4.19551857748, 0.866834312384, 4.30363965594, 4.42541330197, 3.61456171231, -1.65607835843, 3.66914469514, -0.972301726054, 0.599171933545, 2.67894428534, 5.10664252733, -3.14997643882, 1.19941589947, -0.879386256104, -0.0259763360274, 4.09510806754, 3.43126239346, -1.18332293012, -3.11943368535, -0.643549187597, 0.123823429761, -2.77618764727, -2.08034348596, -1.12432451465, 0.799946742559, 0.638328163648, -1.29251792259, -2.0542306177, 3.22065702648, -2.46356134508, 3.37201979384, 2.50438240253, 3.97282056193, 2.71881280561, -2.9158864435, -3.28019303156, -3.10078035913, -0.734835442796, 0.959373739046, 1.1559574549, 2.39594583166, 3.13623943927, 3.37614503798, 2.75058031051, 1.50860950621, 1.46241227783, 3.45922400833, 4.72631615213, -3.43100652587, -1.72221955634, -0.975194108385, 4.20553757114, -2.62125819173, -1.13312733822, 1.88730868047, 1.6541632978, -2.59610704346, 1.15081366305, -1.03630719384, 3.45788622168, 0.639681868146, 2.82020884316, 2.37564446769, 3.27115765369, -1.26343773125, 1.45473962263, 0.00286176428154, 3.27535731623, -1.17140282966, 3.09924196837, 3.03267877809, 1.78511499261, -0.778420535471, -0.134379090833, 2.63877606224, 0.18277247683, -0.499556478565, 2.5813620685, 4.31823094167, 2.36684231859, 4.69734629954, 0.946046667237, 2.79465226142, 2.35736099073, 2.45848802124, 2.68120416047, 4.69362553102, 0.638104883716, 3.53346501409, -1.44606032139, -2.56104725937, 0.576801496142, 1.89699102685, -1.6347767405, -1.77764899257, -0.561879823945, 1.86177406036, 1.63059355365, 3.26898808078, 3.3389060153, -1.34368099274, -0.758128145199, -1.53955573605, -1.5992941923, 1.45428245865, 2.2232530871, 1.45384089708, -1.25036293191, 1.88168443914, 2.69946860476, -0.465826890784, 2.62221137577, 3.22855398135, 2.50436997995, 2.51680081341, 1.49805627454, 1.53685767869, -1.06190548994, 3.09158772759, 3.83825570337, 3.01739920313, 2.70321852027, -0.85718483251, 3.00647974554, -0.924208904843, 3.53032679291, 0.947653719512, 3.39073210706, -1.73332260474, -0.625987415303, 0.185971453854, 3.58225086672, 2.43555668298, 2.24681830569, 3.10745658206, -0.439852447281, 1.43443295631, -0.602383078451, 1.88437057044, 3.00661254036, 4.30151619719, 1.88411811149, 0.150312286689, -3.27525815778, 2.67269037181, -0.263319377466, -1.97676943299, 1.70079582215, 1.2141806404, 2.77435948268, -1.51565303988, 5.00882394354, 2.91914631481, 0.457616187688, -0.209673742902, 4.43503073188, 1.19247934425, -0.456937585971, -2.07779156963, 0.380014366574, -1.36371948682, 4.52062607666, -2.69784942812, -1.69672924589, 1.87215121045, 4.223311628, 0.410468836593, 3.79334797798, 3.24742241822, 4.01385774235, -1.90429254872, 1.42196218064, -0.0471062840955, 0.449089781812, -1.29162743202, 2.01299388237, -2.86555061708, 1.10082849539, 0.354190595237, 2.04126976047, -0.104602014704, 4.49224046065, 2.48638342595, 1.19547671213, 3.12986698547, 0.846866021451, -0.497774446696, 0.063062926305, -0.15960487312, 0.25714897901, 0.0292483892514, 3.09038076845, 3.51875485458, 0.327628239814, 4.7135527499, -2.57824908233, 1.73197959972, 2.68889806146, -2.86993925102, -2.97131945271, -1.24845796036, 2.74591831895, 1.93856886144, -0.046903689675, -2.5991560384, 0.386753042481, 2.90890220201, -3.597770169, -3.245774372, 3.14940672678, -2.14693412708, 1.87480014828, 2.20562206425, -2.43906562979, 4.73708106607, 0.0309644739696, 3.87143205026, 2.72726582774, 1.8514373677, 3.15180199391, 2.62604087016, -3.76009831969, -2.38328428959, -0.877221152294, -1.48383897363, 1.75965659589, 2.96591035733, 0.313303279724, -2.83574504618, 0.0800642694519, 3.89167665324, 1.3664003396, -1.71124623126, 3.56450068027, 2.4155653456, -1.43528702514, 3.22765930743, 2.38873811316, 2.02046011943, -1.19882933864, 2.6406229992, -3.2089185479, 2.95026663271, -3.63471156089, -0.649521388966, 1.6117139495, -2.72401626101, -1.96593960914, 2.95105213714, 3.64012858366, 1.54231069852, 3.73179413064, -3.34481308024, -2.22253695946, 1.99122616076, 0.353287297963, -2.79890068692, -1.57167851523, 3.07573913687, 3.4117374699, 0.610616324035, 2.83773059793, -2.19347305082, 0.397884857293, -0.974986607405, 3.24993538791, -0.940966176035, 4.80741215787, 2.82353674993, 4.71588788786, -3.12876280414, 1.43073266825, -0.203993415234, 0.28026234191, -1.55925520286, 4.9552108066, 0.352842398051, -2.49854848981, -0.132552008728, 3.34892003862, 3.05787364212, -1.63091690016, -0.184162785943, 2.68858103873, -1.01947817658, 1.0048399553, 5.22021824018, -0.39720547266, -1.06126498685, -1.9202336148, 0.811020545502, 3.20457894589, -1.33436117346, -1.98105017508, 2.15422964012, 0.451933250755, 4.34961179361, 3.26326396146, 1.17833104348, -3.51756161678, -0.288732549541, 0.893291484464, 3.30353990004, -2.5809991132, 4.09410011471, -1.98888457952, -4.05687907192, -1.18836640137, 1.305382615, 1.65696996364, 1.78966738959, 3.22097538395, 0.755757112515, -0.739925658487, -0.567695467429, 0.848485462153, 1.15101462962, -2.71239439449, 2.86664632354, 0.488249645374, 0.840652578165, -1.42297525428, -0.0755520122848, 5.17287437449, -0.553138434327, -2.64199082737, 0.180841391438, 2.4632414642, -0.232470420282, 4.97254523671, 0.0810415357898, -0.140018194457, 2.56562591725, 0.495424299718, 0.312675639707, 1.93012951594, -2.55568382821, 2.70514247648, -2.79877255855, 4.98854819708, 3.46584615796, -3.06454651661, -0.853701409499, -2.71091365291, -3.57037359194, 3.47088456285, 2.1418569755, -2.68047005472, 3.42043757672, -3.26604803727, 5.33485694131, -0.239895117086, 3.86668928799, 1.24405788081, 1.74723638513, 4.62206564375, -2.38010220025, 2.27356996649, -2.97287257056, -1.4089170725, 1.65998739322, -1.39009119576, 0.768328122511, -1.27493995859, 4.94251197134, 3.98512179771, -0.421039544483, -2.10169947094, 4.55426363574, -0.3367959076, -2.45387540477, 0.843639703699, 3.81233632447, -2.57883266647, -1.3074357814, -0.920415603475, 2.6887645862, -2.76330018616, -2.30186128816, -1.27577642285, -2.19398840759, -0.225242794663, -3.14661318937, 4.15105124753, 0.686238095301, -4.17498322472, -2.39059448319, 0.414929579683, 2.28813450043, 1.83083442469, 0.889450770708, 3.74095175878, -1.94875735935, -4.09874879026, -3.84327926312, 0.74483574938, 3.51170974605, -1.40472903196, 3.07073768303, 3.22055365466, 0.833381130627, 3.39980309861, -0.847013048474, 3.05119077118, -3.12787881198, -0.760331290229, 2.61407497301, -2.38893710234, -3.5566008536, 1.12853805186, -1.47864285073, -0.0767897548524, 4.39411971208, -1.68671668554, -2.66519872519, -2.91712822838, -3.96703065969, 0.488548858866, 2.1308958141, 4.40421079018, -2.54831394444, 2.23456494882, 0.334495725258, 3.99170719064, 0.376688898215, 3.05311987133, -2.261655463, 0.533432111175, -0.384993258895, 1.63706552778, -3.58766606769, -1.23545000999, -2.72899361933, 4.23120961538, -1.32779512678, 2.60724223257, -2.32247877958, 3.31602718913, 2.46547035899, 0.822486751233, -0.0912452696003, -1.14762193636, -2.03760232, -0.196450065178, -0.424021897756, 0.141686829758, -2.05886457452, 1.20232620207, 1.77289886522, 0.760238632869, -0.470403534897, 1.77288860806, -0.699140309353, 1.53081692396, -2.22262482935, 1.61991359828), y = c(0.121607854144, 1.67084933716, 0.671663712413, 0.985942302305, -0.115243084349, 1.33798679839, -0.179934882508, 0.540179686408, 0.21604728214, -0.0302080518868, 0.919135827055, -0.528565328027, 1.83941068702, 1.04539009448, -1.44498718643, 0.561038457617, 0.650872400394, 0.263067896694, -0.0170236540958, -1.08098614985, -1.35846617243, 0.448653432745, -1.21301578164, 0.941622525938, 1.18752171196, 1.07214906289, 0.219255727314, -0.239453747229, -0.988446275058, 0.133817727241, 1.65448647859, 1.27120897034, -1.08102680178, -0.419799996933, -0.447175179695, 0.118451435332, -0.0223066375921, -0.425602183962, -0.411493590312, -0.719385329248, 0.362414702244, 0.743830525207, 2.8060588424, -1.57681491722, 1.97829504919, -0.485791255905, -0.471516165045, -0.970200509502, 0.144654488986, -1.15546801186, -0.798790321471, 1.07185451408, -1.69763724423, -0.369829035766, -2.05203667702, -0.42144791923, 2.43864496915, -0.458928693116, 0.465013834345, 1.77172437663, -0.724872420252, 2.17648511143, -0.353001037496, 1.5056927257, 2.22417953478, 0.160718378447, 2.31296740201, -0.447060221904, -1.66314923766, 0.668404078716, 0.0834804524138, 0.134054278172, -1.64041151051, -0.0446653430143, -1.85302061002, -0.055267065248, 0.433094145689, 0.207978848661, -1.14878803813, -1.45781494301, -0.064439571961, -1.0163306583, 0.798775792381, 0.00880232461799, -0.211813436686, 1.82388983829, -1.16030310811, 0.810521891093, -2.16242603901, 1.1679034155, 1.9541641911, 0.652116107186, -0.834781733259, 0.415037109363, -0.778352628036, 2.44136516868, 0.657706277588, 1.62865475296, -0.238519154745, 0.151130784619, -1.68728669985, 1.97688496932, -1.47585838602, 0.860510349359, 0.896068671547, 0.920159889825, 1.89972094697, 2.56584041836, -0.688163345777, -0.178416173435, 0.177540044816, -1.83550919258, 0.884131037009, -1.1069093154, 2.49564687297, 2.41780844678, 1.6496380009, 0.0939622419912, 2.3674353785, -0.562816442402, -0.787860985582, 1.92558886265, 0.656021607091, -0.415843909164, -0.317129135628, 1.3631950381, -0.561539085395, 2.86731519479, 3.17567905078, -1.3687919662, -1.32323208155, 2.54590081887, 2.12704387311, 1.12044858175, 0.252462895574, 1.94890491532, 1.57490305238, -0.0473029127911, 1.77634018005, 0.128497826721, -1.88517818924, -0.717504553502, 1.28840309825, 0.383652831292, 2.25590690211, 0.93223429849, -0.0341076218033, -1.01054577672, 1.50987358635, 0.746585134349, 0.307968671762, 1.23058758593, 1.9692652804, 0.248744359861, -1.2084380369, -0.225550866237, -1.5861365356, 2.16296568286, 2.03894981964, -0.895558123918, 1.15146418484, 2.64278967201, 1.35264518502, 1.18194665116, 0.53094746942, 3.01937676225, 1.68529523835, 1.33819808265, -2.8331143038, -2.57705116854, 2.32021306219, 0.175279649202, -0.356185819119, -1.9591778066, 1.13065086752, -1.56935798452, 3.1670421582, 1.61896699201, 1.09263462668, 0.0482791434793, -0.350494810271, 0.0014084887222, -0.742278663661, -2.17862596787, -2.62161932028, 3.11618531322, 2.37950117147, -0.718568795178, -1.29239491705, 1.90269085083, 0.12419299627, 3.1817054745, -1.79084188798, -0.00462248910356, -0.292003601142, -2.33411285703, 1.8311289033, -0.659019026481, -3.06465418494, -1.72699833877, 0.623895997609, 0.964604682688, -1.17267297316, 1.36606191851, -2.5124610889, -2.24661973089, 0.103155493127, -0.706910194866, 0.919144647415, -1.32474679696, 1.33655407411, -1.80523805391, -1.88725081372, -0.924335768255, 2.79661974102, -3.21111800615, -1.88948492699, 0.304624750915, 3.71094541791, -2.00950950061, -0.569909561044, 1.15500957578, -1.79929518892, 2.48204111604, 2.26863592193, -0.973650233129, 1.952552287, -2.29577767969, 0.54210133198, 1.11547757976, -0.696655045387, 2.06145649187, -2.46119701793, 3.80634954725, -1.07600155641, 0.438317176631, -2.66662681909, 0.873893505871, 1.88148221713, -1.68666320243, -2.93082701082, -0.66587836813, -0.379505158541, 0.923318537067, 2.29127874359, 0.143183237746, 1.5905466156, -0.899888623163, 2.05130329338, -0.671698081452, -1.68016137097, -3.23663705689, 3.46482661893, -0.197924380248, 2.48635224049, -1.27706830948, -1.28252313085, -0.471692805744, 2.41892543964, 2.65313689305, 3.03822264522, 2.7242866612, -0.714929697407, 3.33362854335, -2.30934959692, -1.83310803594, 0.765825046604, 1.86259136352, 1.84340126199, 0.066928876837, 2.58835725059, 0.190521212875, 2.10942396499, 1.91229271706, 1.19828956083, 1.24679013862, 0.611546344321, 2.34548242529, 0.995190558349, 1.96577773161, -2.08974327291, 2.07238661862, 2.91018803325, 0.364974818825, -0.983223879366, 2.05418544356, 2.56109756947, -1.70757036807, 3.15973882953, -2.45912545626, -0.224478489789, -2.44498720845, -1.44215962978, 0.78959450184, 2.53080365101, -0.363200536383, -2.0753814119, -1.91070443665, 2.73339279506, 2.46060731393, 2.86090597158, -1.84630750687, 0.903615083582, -1.40826192436, 0.549334826511, -1.65220301956, -1.29777869193, -1.08696456287, 1.82185920613, 1.81559912519, 3.18556676071, 3.43458671581, 2.5690208932, -0.962265759914, 0.763622195497, -0.617644824792, -2.65494681174, 2.38536559688, -1.55543225673, 3.5992319811, -1.03227842968, 1.50274924648, -2.32315771578, 1.96034349421, -1.00897889333, -1.47073716306, -1.98275657497, 0.691212401727, 0.34270071436, -1.05852250263, 1.62763182045, -0.70047452051, -0.64995078965, 0.907541495228, -3.08961344428, -0.957046919508, -1.63436385841, 1.37542935641, 2.13160573026, 2.09713579492, -0.178963130461, 3.7808023883, -1.69045693671, -1.81839436406, -1.89257982843, -0.335618158888, 2.87002044082, 2.78471161827, -0.351428520244, -1.35791203113, -2.14537756089, -1.19683659192, -1.63746796568, 2.74364053422, 1.03484792337, 2.18180306044, 0.103485002054, 3.82422430167, 1.00929131385, 3.49727764311, 4.28613749522, -0.817613992786, -0.880418143716, 3.85273647076, -0.00618117695497, -1.1888154935, 1.73515143721, 3.34958074347, 1.1879464924, -1.71189363197, -2.54022218359, -0.13431048668, -1.52101048407, -1.58730504014, 1.24472758876, -0.338289617649, -0.874442018513, 2.07223932264, 1.72051207809, -2.12536681066, 0.295206108648, 0.293117689872, -1.06857498222, 2.19877611094, -1.81418769029, 0.285760393454, 3.27697504568, 0.666653546717, 2.66071291844, 0.695046743423, -0.789747986515, 0.547695081954, -0.639106617318, 1.66996189547, -0.629234432994, -0.23834034469, 2.15542769909, -2.53070914088, -2.02262128572, -2.57856825145, 1.41017653116, -0.773581576526, 1.22098816689, -1.58524778003, 2.73188138203, 0.831344514018, -0.584843587996, -1.29173408505, 3.49757369264, 2.10743762122, 0.602034298414, 0.314697478713, -0.400916910382, -2.70485284498, 0.439331098993, 0.807039541332, -1.39485511653, -0.524608002137, 3.03590359965, 0.0093547861141, -1.49087213401, -0.361708387287, 2.24556831163, 1.32734504569, 0.983899591459, -2.77267035972, -2.49144692929, -0.999979895567, -0.138972802474, -0.258032068016, 1.32169276629, 0.262406415489, 0.948879731237, -1.3906201365, -0.74762566112, -2.79167189741, -0.993087136886, -0.902882610722, 4.03671196038, 0.375339630687, 3.23270001679, 3.2220328974, -1.65049579195, 2.71718050756, -2.84561345561, 2.24437960675, 1.92110887802, -0.135949482463, 0.969329080061, 3.40310909301, 2.27056309586, 0.287019140639, -3.92371251739, -0.613027649653, 4.63530437357, -3.03691654758, 3.7290773576, 3.32652482933, 2.19424902473, 3.34983950668, 0.362817105536, 0.937644553495, 3.27851469419, -0.753358489457, -0.727707123599, -1.82244545634, 1.88706752142, 0.4973006872, -2.4282196345, -3.57722926778, -0.894645900311, 2.86251747702, 2.7669723099, 2.66070031333, 2.99494562263, 3.58284381583, -2.44132359243, -1.60823244437, 4.20987914726, -3.1306850209, -1.97107428152, -0.932311705628, 2.73009698728, 1.59870247997, 0.19311438639, -3.77549186608, 0.648456103525, 0.19512704998, -1.52111388192, 1.85768194125, 2.26564997362, 4.88431193817, -3.3106544245, 2.62459772853, 0.069296213103, -2.06085193189, 2.18708474125, -2.43226165837, 2.95059187962, 1.6460456297, 3.51819671076, 3.72943541849, 2.86285798827, 3.23625293425, -2.16838870657, 0.45327716894, 2.88747261513, -3.04184428594, -1.42037816925, 2.48466476347, 0.507623391179, -0.319005680045, -2.38903579485, 2.70985012877, -1.97937944782, 2.88348295059, 2.56273024991, 0.695070536066, 0.303954419046, -1.74464617628, 0.67091254462, 2.80163249281, -2.19841138132, 1.38679057717, -3.92173917478, -0.558198708566, 2.12103973008, 4.33330137606, 1.46791551249, -0.753515998053, -1.01264727217, 1.44487408365, -0.622023210952, 3.6554034387, -2.46987845989, 2.90565474881, 1.64405216979, -0.544825497445, 3.31155737483, 0.0169021173894, -0.276520606989, 0.846162518059, -3.34829191959, -0.628786779293, 1.95080928741, -1.57551180474, -2.05251867595, 1.67514739912, 2.58462562798, -2.0558097119, -1.64641872793, 2.87672578958, -1.77128152813, 2.43068052395, 1.22266020633, 3.87716255777, 2.64604125185, 4.87667907736, -0.504560787152, -4.24451984003, 1.08596790207, 1.4620580663, 0.0820969928967, -0.0275864508729, 2.74256756408, 1.31098950432, -3.38661928623, 3.04282516092, 3.15222031252, 0.938879155635, -0.6335720686, -0.621117028802, -0.525375647076, -0.558126656454, 2.09189005781, -2.62306311351, 4.54944655202, 2.57757848221, 0.683620641343, 3.77784520018, 2.44466027538, 3.85192842572, -1.20363077732, -0.031170467206, 2.91170643197, -1.5297903712, 0.47102647727, 3.0499989123, -0.64708758323, 3.55171960681, -1.46289714211, -2.25888931902, -0.298758088429, -0.872198140117, 3.79007745699, 3.18920633663, 3.19376269711, 1.02108062855, -2.45049413694, 4.04590997874, 2.85071526397, 2.76251046217, 1.03634488219, 1.57933287976, 3.73012130127, 2.46094137504, 2.25734240088, -0.831436705632, -0.729740367769, -0.927130321135, -4.22337915816, 3.88814647998, 2.29541764351, -0.388799340839, 2.84351797784, 3.64596708004, 1.45411725279, 0.729678778858, 3.91079356251, -3.00241658157, 3.95021606505, -3.34657532873, -2.51463115457, 3.15002744496, 0.45889369707, -0.525120024936, 4.7048517062, -1.4432624123, -0.148889600414, 2.85939190951, 4.85780195185, -4.17511071059, 3.38411400271, 1.1075676825, 3.26237689907, 0.878111925584, -1.41552344964, -3.08270987167, 4.27867965084, 0.410610098969, -2.39902329281, 3.19205750317, 1.32299783959, 3.45666991208, -1.83125735979, 0.099271997232, -0.806466305994, -0.766210518842, 4.77198806046, 1.30314573108, -3.48272099798, 1.5335374746, 0.289421719969, 0.804861901663, 2.00252924034, 3.13152099914, 4.83297593915, 1.44038424807, 3.30941865486, -3.87367098374, 2.70339219681, 2.22028008944, 4.22295753737, 0.534301786928, 1.37133154995, -1.2036954636, 0.483074819481, 4.28027976877, 0.572397285073, 4.58383664771, 3.35540744581, 1.79749541626, -1.4991794488, -3.09687473587, 0.807227312823, 1.5062322928, 2.40325240992, 1.14547800212, 0.0466001419489, 3.237473284, -2.06181068528, 0.0403678177779, -2.69559776458, -2.04781416022, 1.18762584977, -1.97106128261, -2.24423610216, 3.49291188911, -0.275531621896, 4.0838136761, 1.58879039841, -0.775837025422, -0.794811987219, -0.517636225882, 0.511060173337, 0.93516735872, -0.0990338703974, 1.19890835086, 1.41309766327, -3.97061024016, 0.0898869027245, -1.04147456174, -2.39853783716, 1.98072633203, -2.6897612745, 2.06860375824, 3.71613764059, -2.78091622317, -1.96246989454, 4.88462462942, -2.45747094755, -3.91528037882, 2.11465423656, -2.07248473641, -0.53221327981, 3.98671332582, 4.82734673233, 4.66633570953, -1.68118224522, -0.457808793946, 1.51059520262, -1.98686969621, -1.61383725104, 4.0353200723, 0.802342231662, -2.95394558654, -0.0449895867233, 0.459878001801, 3.66990855098, -3.08437410064, 1.02121946308, -2.19449096315, 2.51305522906, 0.707811391663, -1.35871775798, 4.54906223313, 1.20460936587, 4.07379796852, 1.7235968393, 1.56533250359, 2.18814303658, 2.45487961784, -0.575724606107, 2.96545054235, -3.67099884214, 2.51242739647, -3.03943805729, 4.26374450536, 2.52120581706, -0.446953220829, 2.74594656254, -1.08293970514, 1.63654780736, -0.809812659437, 1.84476846452, -2.79219306354, -3.26053483042, 3.47432677713, -1.2224782126, -1.0892799674, -2.491241097, 1.7183533287, -2.98126449713, -0.872857817996, 0.792367206197, 2.7369490873, 4.37658292646, 1.34983597988, 3.06321911481, 4.36159802641, 0.151298090907, -0.583547405996, 3.32520204194, 3.94157059584, -0.566033708164, 1.70987813843, 4.04046420835, 4.40178151817, 2.47645649564, 3.22617204062, 2.55300433663, -1.14876824354, 1.24099402005, -0.501838007371, -2.15117053508, 1.37046375286, -0.394539839471, 3.47078760836, 1.68510598522, 1.46665432482, -1.66759281879, 3.14813284502, -2.69651205193, 3.22185336291, 1.86009959765, -2.37130457724, -3.739422063, 3.34909140766, 3.73453462414, 2.21246314169, -2.3418258197, -2.49216835089, 3.59744160687, -0.218876979998, 1.05607698819, 1.90898929982, -1.06501287706, 1.73034273392, 3.17206464858, 0.548205011961, 3.53892331784, 2.96362034509, -1.49124343255, 1.41607917491, 1.54911376141, 3.00313909702, -2.31995443697, 4.071719803, 3.58259723555, 2.35198746539, 1.65145143655, -0.548535047384, -0.254091263446, -0.0720228196517, 1.29201223324, -0.0838480553573, 0.343210130505, -3.01255059507, -2.05562878556, -1.53259999404, -2.15692124072, 0.769769077393, 1.71456813051, 1.29163122718, 0.301343421628, 4.24309644164, 0.335769114692, -4.30616929733, 1.31560783864, 1.05766080757, -0.37508205115, 1.48606207225, -0.355299585784, -2.31251305215, 0.346650567467, 0.748478884534, 0.594598301046, -2.73527603644, -1.4407262667, -0.717418442303, -2.03042015581, 3.72959178971, -0.168629385404, 1.67695866427, -1.50951330707, -3.54411000166, 2.29796061702, -0.0814058504927, -1.37135620095, -0.671215916855, -1.34090093101, -0.493347300277, 1.05428488077, -0.400449287458, 3.68584786982, 0.77527866322, 2.54592679455, 0.743377350722, 4.83908723893, 1.15485643352, 2.82969262574, -3.16438123743, -2.61651584047, -3.39350598009, -2.16905660938, 2.48992274585, 3.15640932997, 2.13230359296, 0.693529521205, 3.94717131009, 0.6734715982, 0.0225067418109, -0.261518256972, 3.40041873479, 2.34424102281, 2.8342932616, 0.918540278944, 3.98005402422, -0.385692323103, -2.4602077064, -2.33847358675, 2.94436912602, -1.65625728757, 0.5925775848, -1.35320802106, 0.11954012745, -0.0289756364643, 3.72075823961, 0.376181733787, 3.02085783287, 2.30504581286, 0.40908892533, -3.25940588031, 2.54793312026, -0.914592624221, 3.0192954182, 5.33497496733, -0.351297413737, 4.12697161654, 0.898976282488, 2.25027996096, 2.50367000659, -0.538810085533, 3.50181395434, -0.193121531684, -3.38428133063, -2.93081554241, -1.88367363938, 4.80643294125, 0.215757649249, 0.634013225995, -0.635834474133, -1.46403780153, -3.0931203374, -3.74503199648, 1.23037569327, 3.11931414173, 0.705759216663, -3.45954184381, -2.46630377667, -3.41246174104, -2.46898758813, -1.78950443066, -1.80116629275, -0.870152865968, -0.353916491529, 2.83889679237, -0.828160399074, -0.722566038156, -3.13706894078), diff --git a/published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt b/published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt index 3d60f78a91e4..5ccb9fe81768 100644 --- a/published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt +++ b/published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(27.80985, 49.61936, 83.08067, 116.6632, 130.414, 150.7206, 220.1871, 156.1536, 148.6416, 203.7845, 206.0386, 107.1618, 68.36975, 45.3359, 49.96142, 21.89279, 17.02552, 11.74317, 14.75226, 13.6671, 5.677561, 3.31234, 1.156517, -0.147662, 27.71966, 48.55022, 65.21374, 95.27666, 116.9964, 133.9056, 152.3412, 151.934, 160.1139, 179.5327, 147.6184, 170.3943, 121.8194, 52.58537, 33.08871, 38.40972, 44.24843, 69.5786, 4.019351, 3.050024, 3.039719, 2.996142, 2.967954, 1.999594, 30.4267, 33.47752, 44.80953, 62.47495, 77.43523, 104.2153, 102.7393, 137.0004, 186.0706, 219.3173, 181.7615, 120.9154, 143.1835, 82.40501, 48.47132, 74.71461, 60.0909, 7.073525, 6.089851, 6.53745, 6.666096, 7.306965, 5.73684, 3.625628, 16.66549, 30.1086, 39.96952, 44.12225, 59.57512, 77.56929, 106.8925, 166.5539, 175.2381, 185.2815, 154.5056, 83.0433, 62.61732, 62.33167, 60.55916, 55.92124, 15.17284, 8.248324, 36.68087, 61.93413, 20.26867, 68.58819, 46.49812, 0.2360095, 8.815617, 18.3516, 8.658275, 27.5859, 48.62691, 60.18013, 91.3286, 145.7109, 116.0653, 106.2662, 68.69447, 53.10596, 37.92797, 47.95942, 47.42691, 69.20731, 44.95468, 29.17197, 17.91674, 16.25515, 14.65559, 17.26048, 31.22245, 46.71704, 6.628881, 10.41339, 24.81939, 26.08952, 30.1605, 52.30802, 64.71007, 76.30823, 84.63686, 99.4324, 62.52132, 46.81647, 55.76606, 82.4099, 140.2647, 81.26501, 56.45756, 30.42164, 17.28782, 8.302431, 2.981626, 2.698536, 5.886086, 5.268358, 21.83975, 6.63927, 18.97085, 32.89204, 43.15014, 62.86014, 104.6657, 130.2294, 114.8494, 106.9873, 61.89647, 55.55682, 86.80986, 89.27802, 122.4221, 123.9698, 109.0952, 98.41956, 77.61374, 32.49031, 14.67344, 7.370775, 0.03711011, 0.6423392, 53.34303, 26.79797, 6.63927, 10.88787, 17.2044, 56.18116, 79.70141, 90.8453, 98.27675, 80.87243, 74.7931, 75.54661, 73.4373, 74.11694, 68.1749, 46.24076, 39.93857, 31.21653, 36.88335, 40.02525, 117.4297, 12.70328, 1.729771, 0, 25.66785, 63.05717, 22.1414, 17.074, 41.74483, 60.27227, 81.42432, 114.444, 102.3234, 101.7878, 111.031, 119.2309, 114.0777, 110.5296, 59.19355, 42.47175, 14.63598, 6.944074, 6.944075, 27.74936, 0, 0, 0.09449376, 0.07732264, 12.827, 69.20554, 46.76293, 13.96517, 33.88744, 61.82613, 84.74799, 121.122, 145.2741, 153.1797, 204.786, 227.9242, 236.3038, 228.3655, 79.34425, 25.93483, 6.944074, 6.944074, 6.944075, 7.553681, 0, 0, 0, 0, 0, 68.66396, 59.0435, 33.35762, 47.45282, 57.8355, 78.91689, 107.8275, 168.0053, 130.9597, 212.5541, 165.8122, 210.2429, 181.1713, 189.7617, 137.3378, 84.65395, 8.677168, 6.956576, 8.468093, 0, 0, 0, 0, 0, 95.17499, 80.03818, 59.89862, 39.58476, 50.28058, 63.81641, 80.61302, 66.37824, 198.7651, 244.3467, 294.2474, 264.3517, 176.4082, 60.21857, 77.41475, 53.16981, 56.16393, 6.949235, 7.531059, 3.780177, 0, 0, 0, 0, 134.9879, 130.3696, 96.86325, 75.70494, 58.86466, 57.20374, 55.18837, 78.128, 108.5582, 154.3774, 319.1686, 372.8826, 275.4655, 130.2632, 54.93822, 25.49719, 8.047439, 8.084393, 5.115252, 5.678269, 0, 0, 0, 0, 48.08919, 142.5558, 140.3777, 154.7261, 87.9361, 58.11092, 52.83869, 67.14822, 83.66798, 118.9242, 150.0681, 272.9709, 341.1366, 238.664, 190.2, 116.8943, 91.48672, 14.0157, 42.29277, 5.115252, 0, 0, 0, 0, 54.1941, 146.3839, 99.48143, 96.19411, 102.9473, 76.14089, 57.7844, 47.0402, 64.36799, 84.23767, 162.7181, 121.3275, 213.1646, 328.482, 285.4489, 283.8319, 212.815, 164.549, 92.29631, 7.244015, 1.167, 0, 0, 0, 6.919659, 195.1709, 132.5253, 135.2341, 89.85069, 89.45549, 60.29967, 50.33806, 39.17583, 59.06854, 74.52159, 84.93402, 187.1219, 123.9673, 103.7027, 128.986, 165.1283, 249.7054, 95.39966, 10.00284, 2.39255, 0, 0, 0, 21.73871, 123.1339, 176.7414, 158.2698, 137.235, 105.3089, 86.63255, 53.11591, 29.03865, 30.40539, 39.04902, 49.23405, 63.27853, 111.4215, 101.1956, 40.00962, 59.84565, 74.51253, 17.06316, 2.435141, 2.287471, -0.0003636982, 0, 0, 0, 62.04672, 136.3122, 201.7952, 168.1343, 95.2046, 58.90624, 46.94091, 49.27053, 37.10416, 17.97011, 30.93697, 33.39257, 44.03077, 55.64542, 78.22423, 14.42782, 9.954997, 7.768213, 13.0254, 21.73166, 2.156372, 0.5317867, 0, 0, 79.62993, 139.6978, 173.167, 192.8718, 196.3499, 144.6611, 106.5424, 57.16653, 41.16107, 32.12764, 13.8566, 10.91772, 12.07177, 22.38254, 24.72105, 6.803666, 4.200841, 16.46857, 15.70744, 33.96221, 7.575688, -0.04880907, 0, 0, 33.2664, 57.53643, 167.2241, 196.4833, 194.7966, 182.1884, 119.6961, 73.02113, 48.36549, 33.74652, 26.2379, 16.3578, 6.811293, 6.63927, 6.639271, 8.468093, 6.194273, 3.591233, 3.81486, 8.600739, 5.21889, 0, 0, 0, 29.77937, 54.97282, 144.7995, 207.4904, 165.3432, 171.4047, 174.9216, 100.2733, 61.46441, 50.19171, 26.08209, 17.18218, 8.468093, 6.63927, 6.334467, 6.334467, 5.666687, 4.272203, 0, 0, 0, 0, 0, 0, 31.409, 132.7418, 185.5796, 121.8299, 185.3841, 160.6566, 116.1478, 118.1078, 141.7946, 65.56351, 48.84066, 23.13864, 18.12932, 10.28531, 6.029663, 6.044627, 5.694764, 3.739085, 3.896037, 0, 0, 0, 0, 0, 19.58994, 42.30355, 96.26777, 187.1207, 179.6626, 221.3898, 154.2617, 142.1604, 148.5737, 67.17937, 40.69044, 39.74512, 26.10166, 14.48469, 8.65873, 3.896037, 3.571392, 3.896037, 3.896037, 3.896037, 1.077756, 0, 0.001229679, 3.008948, 5.909858, 33.50574, 104.3341, 152.2165, 198.1988, 191.841, 228.7349, 168.1041, 144.2759, 110.7436, 57.65214, 42.63504, 27.91891, 15.41052, 8.056102, 3.90283, 3.879774, 3.936718, 3.968634, 0.1236256, 3.985531, -0.1835741, 0, 5.626141, 7.676256, 63.16226, 45.99762, 79.56688, 227.311, 203.9287, 172.5618, 177.1462, 140.4554, 123.9905, 110.346, 65.12319, 34.31887, 24.5278, 9.561069, 3.334991, 5.590495, 5.487353, 5.909499, 5.868994, 5.833817, 3.568177), nrow=25, ncol=24), diff --git a/published/api-docs/chart-types/area/basic-area/r/code.txt b/published/api-docs/chart-types/area/basic-area/r/code.txt index 3ae346e10a4a..ebc17d08b457 100644 --- a/published/api-docs/chart-types/area/basic-area/r/code.txt +++ b/published/api-docs/chart-types/area/basic-area/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(0, 2, 3, 5), diff --git a/published/api-docs/chart-types/bar/bar-marker-array/r/code.txt b/published/api-docs/chart-types/bar/bar-marker-array/r/code.txt index 0c84678fcd07..6375d02a0043 100644 --- a/published/api-docs/chart-types/bar/bar-marker-array/r/code.txt +++ b/published/api-docs/chart-types/bar/bar-marker-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt b/published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt index 2073be9da9b1..71c9134ce296 100644 --- a/published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt +++ b/published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("Liam", "Sophie", "Jacob", "Mia", "William", "Olivia"), diff --git a/published/api-docs/chart-types/bar/basic-bar/r/code.txt b/published/api-docs/chart-types/bar/basic-bar/r/code.txt index ed521060ac71..ed25bd16f014 100644 --- a/published/api-docs/chart-types/bar/basic-bar/r/code.txt +++ b/published/api-docs/chart-types/bar/basic-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("giraffes", "orangutans", "monkeys"), diff --git a/published/api-docs/chart-types/bar/grouped-bar/r/code.txt b/published/api-docs/chart-types/bar/grouped-bar/r/code.txt index 7c4eca258a37..e9fb77014572 100644 --- a/published/api-docs/chart-types/bar/grouped-bar/r/code.txt +++ b/published/api-docs/chart-types/bar/grouped-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/published/api-docs/chart-types/bar/stacked-bar/r/code.txt b/published/api-docs/chart-types/bar/stacked-bar/r/code.txt index bb49a20f31a1..34a0214360f1 100644 --- a/published/api-docs/chart-types/bar/stacked-bar/r/code.txt +++ b/published/api-docs/chart-types/bar/stacked-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/published/api-docs/chart-types/bar/style-bar/r/code.txt b/published/api-docs/chart-types/bar/style-bar/r/code.txt index 7efaf6683eaf..eb878042a4c5 100644 --- a/published/api-docs/chart-types/bar/style-bar/r/code.txt +++ b/published/api-docs/chart-types/bar/style-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012), y = c(219, 146, 112, 127, 124, 180, 236, 207, 236, 263, 350, 430, 474, 526, 488, 537, 500, 439), diff --git a/published/api-docs/chart-types/box/basic-box-plot/r/code.txt b/published/api-docs/chart-types/box/basic-box-plot/r/code.txt index a3acdbafdd01..268e1e2edc10 100644 --- a/published/api-docs/chart-types/box/basic-box-plot/r/code.txt +++ b/published/api-docs/chart-types/box/basic-box-plot/r/code.txt @@ -6,6 +6,7 @@ library(plotly) y0 = rnorm(50) y1 = rnorm(50)+1 +py <- plotly() trace1 <- list( y = y0, type = "box" diff --git a/published/api-docs/chart-types/box/box-grouped/r/code.txt b/published/api-docs/chart-types/box/box-grouped/r/code.txt index 01c7285fb847..055455abc45a 100644 --- a/published/api-docs/chart-types/box/box-grouped/r/code.txt +++ b/published/api-docs/chart-types/box/box-grouped/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- c('day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2') +py <- plotly() trace1 <- list( y = c(0.2, 0.2, 0.6, 1.0, 0.5, 0.4, 0.2, 0.7, 0.9, 0.1, 0.5, 0.3), x = x, diff --git a/published/api-docs/chart-types/box/box-plot-jitter/r/code.txt b/published/api-docs/chart-types/box/box-plot-jitter/r/code.txt index d01d723600e8..e585158a1358 100644 --- a/published/api-docs/chart-types/box/box-plot-jitter/r/code.txt +++ b/published/api-docs/chart-types/box/box-plot-jitter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( y = c(0, 1, 1, 2, 3, 5, 8, 13, 21), diff --git a/published/api-docs/chart-types/bubble/bubblechart/r/code.txt b/published/api-docs/chart-types/bubble/bubblechart/r/code.txt index 788e0672c945..4cf4686ca1b9 100644 --- a/published/api-docs/chart-types/bubble/bubblechart/r/code.txt +++ b/published/api-docs/chart-types/bubble/bubblechart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 11, 12, 13), diff --git a/published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt b/published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt index f294bfd085df..5a64252c0421 100644 --- a/published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt +++ b/published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt @@ -7,6 +7,7 @@ t = seq(-1, 1.2, length=2000) x = t^3+0.3*rnorm(2000) y = t^6+0.3*rnorm(2000) +py <- plotly() trace1 <- list( x = x, y = y, diff --git a/published/api-docs/chart-types/contour/simple-contour/r/code.txt b/published/api-docs/chart-types/contour/simple-contour/r/code.txt index 9e95a534a2cd..d267989d3a56 100644 --- a/published/api-docs/chart-types/contour/simple-contour/r/code.txt +++ b/published/api-docs/chart-types/contour/simple-contour/r/code.txt @@ -14,6 +14,7 @@ for(i in 1:size) { } } +py <- plotly() data <- list( list( z = z, diff --git a/published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt b/published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt index 6375be038947..01faffb09992 100644 --- a/published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt +++ b/published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt b/published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt index 9cd8b125bb51..106eba71ad4a 100644 --- a/published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt +++ b/published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt b/published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt index eb0179e11f36..162b04c0efd6 100644 --- a/published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt +++ b/published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt b/published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt index e6c81cfc760e..6d148a57ea82 100644 --- a/published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt +++ b/published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("Trial 1", "Trial 2", "Trial 3"), y = c(3, 6, 4), diff --git a/published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt b/published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt index b244c81d654f..959da9b587cd 100644 --- a/published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt +++ b/published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt b/published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt index 073b5b9b4fad..ef746e5ab889 100644 --- a/published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt +++ b/published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt @@ -13,6 +13,7 @@ sincx <- sinc(x_theo) x <- c(-3.8, -3.03, -1.91, -1.46, -0.89, -0.24, -0.0, 0.41, 0.89, 1.01, 1.91, 2.28, 2.79, 3.56) y <- c(-0.02, 0.04, -0.01, -0.27, 0.36, 0.75, 1.03, 0.65, 0.28, 0.02, -0.11, 0.16, 0.04, -0.15) +py <- plotly() trace1 <- list( x = x_theo, y = sincx, diff --git a/published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt b/published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt index 2d6c0dd91c2c..f67e50986251 100644 --- a/published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt +++ b/published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt index b14567d3d9f1..4d85575b38a7 100644 --- a/published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt index 9d99e18c4b61..4adf1b1d4a7b 100644 --- a/published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt index fe19b1addcb7..03417d419530 100644 --- a/published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt index 9bd294abb42c..79d0309ceb68 100644 --- a/published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt index b5dda60755f3..54b91d26baf6 100644 --- a/published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt index c42a7febe1e7..fb37156ae440 100644 --- a/published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt index 4a4bb0d21f8a..0ad343464a70 100644 --- a/published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt index 3c6170f7905e..33ab5d51ffde 100644 --- a/published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt index a315d2a50629..52057263af60 100644 --- a/published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt index 31c220f7a6e5..56ee6351c277 100644 --- a/published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt index ee10d3aa51ca..5a2c17b2f2fc 100644 --- a/published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt index 0008ea868ce3..28d354d49a49 100644 --- a/published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt index 8b48db0bd7f4..7d51bf43d636 100644 --- a/published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt index 44a0539d2108..709eaf3f0077 100644 --- a/published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 20, 1, 60, 30, 60, 1), nrow=3, ncol=3), diff --git a/published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt b/published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt index 2b63d4383be5..c6c918029521 100644 --- a/published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt +++ b/published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt b/published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt index 19907f8af0de..062b27446ceb 100644 --- a/published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt +++ b/published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 50, 1, 20, 1, 60, 80, 30, 30, 60, 1, -10, 20), nrow=3, ncol=5), diff --git a/published/api-docs/chart-types/histogram/basic-histogram/r/code.txt b/published/api-docs/chart-types/histogram/basic-histogram/r/code.txt index 16f8fdcfdc0f..f34c8f437fa0 100644 --- a/published/api-docs/chart-types/histogram/basic-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram/basic-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) x = rnorm(500) +py <- plotly() data <- list( list( x = x, diff --git a/published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt b/published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt index b40c5a965670..bd9816e7d0f5 100644 --- a/published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) y = rnorm(500) +py <- plotly() data <- list( list( y = y, diff --git a/published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt b/published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt index e3f1c0e9895f..a58e0f7f8bc3 100644 --- a/published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, opacity = 0.75, diff --git a/published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt b/published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt index 89693c7078c8..fd0b0d6417eb 100644 --- a/published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, type = "histogram" diff --git a/published/api-docs/chart-types/histogram/style-histogram/r/code.txt b/published/api-docs/chart-types/histogram/style-histogram/r/code.txt index 6621149796d0..be34b4e92560 100644 --- a/published/api-docs/chart-types/histogram/style-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram/style-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, histnorm = "count", diff --git a/published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt b/published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt index b83c1ce12225..d3395b7ae798 100644 --- a/published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt +++ b/published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt b/published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt index df63744fa2b9..f55ee15952f4 100644 --- a/published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt +++ b/published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt @@ -11,6 +11,7 @@ y1 <- runif(50) + 1.0 x <- c(x0, x1) y <- c(y0, y1) +py <- plotly() trace1 <- list( x = x0, y = y0, diff --git a/published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt b/published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt index 87e50d3eb1b6..f7a88f5de012 100644 --- a/published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt +++ b/published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt b/published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt index 1a44c5d8f484..703a785c4ea2 100644 --- a/published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt +++ b/published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt b/published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt index 2030afe7b2d8..580fa887e300 100644 --- a/published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt +++ b/published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt b/published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt index 51cff36bf9e7..95265022f55d 100644 --- a/published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt +++ b/published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4, 5), y = c(1, 3, 2, 3, 1), diff --git a/published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt b/published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt index f7eb2e95e18e..dcc64ba77ac7 100644 --- a/published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt +++ b/published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(52698, 43117), y = c(53, 31), diff --git a/published/api-docs/chart-types/log/plotly-log-axes/r/code.txt b/published/api-docs/chart-types/log/plotly-log-axes/r/code.txt index 19e86cc8c744..821166148b40 100644 --- a/published/api-docs/chart-types/log/plotly-log-axes/r/code.txt +++ b/published/api-docs/chart-types/log/plotly-log-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/chart-types/mixed/bar-line/r/code.txt b/published/api-docs/chart-types/mixed/bar-line/r/code.txt index 797f24f4891b..8078c19484e2 100644 --- a/published/api-docs/chart-types/mixed/bar-line/r/code.txt +++ b/published/api-docs/chart-types/mixed/bar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5), y = c(1.5, 1, 1.3, 0.7, 0.8, 0.9), diff --git a/published/api-docs/chart-types/mixed/contour-scatter/r/code.txt b/published/api-docs/chart-types/mixed/contour-scatter/r/code.txt index 59eaccb75f81..5af949624527 100644 --- a/published/api-docs/chart-types/mixed/contour-scatter/r/code.txt +++ b/published/api-docs/chart-types/mixed/contour-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( z = matrix(c(1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.0, 0.734693877551, 0.510204081633, 0.326530612245, 0.183673469388, 0.0816326530612, 0.0204081632653, 0.0, 0.0204081632653, 0.0816326530612, 0.183673469388, 0.326530612245, 0.510204081633, 0.734693877551, 1.0, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5), nrow=15, ncol=15), x = c(-1.0, -0.857142857143, -0.714285714286, -0.571428571429, -0.428571428571, -0.285714285714, -0.142857142857, 0.0, 0.142857142857, 0.285714285714, 0.428571428571, 0.571428571429, 0.714285714286, 0.857142857143, 1.0), diff --git a/published/api-docs/chart-types/polar/polar-area-chart/r/code.txt b/published/api-docs/chart-types/polar/polar-area-chart/r/code.txt index 2b2b9f51c184..7ee5cf4c18b7 100644 --- a/published/api-docs/chart-types/polar/polar-area-chart/r/code.txt +++ b/published/api-docs/chart-types/polar/polar-area-chart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(77.5, 72.5, 70.0, 45.0, 22.5, 42.5, 40.0, 62.5), t = c("North", "N-E", "East", "S-E", "South", "S-W", "West", "N-W"), diff --git a/published/api-docs/chart-types/polar/polar-line/r/code.txt b/published/api-docs/chart-types/polar/polar-line/r/code.txt index dee2b74f388f..09e4ec11eb10 100644 --- a/published/api-docs/chart-types/polar/polar-line/r/code.txt +++ b/published/api-docs/chart-types/polar/polar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1), t = c(0, 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, 78, 84, 90, 96, 102, 108, 114, 120, 126, 132, 138, 144, 150, 156, 162, 168, 174, 180, 186, 192, 198, 204, 210, 216, 222, 228, 234, 240, 246, 252, 258, 264, 270, 276, 282, 288, 294, 300, 306, 312, 318, 324, 330, 336, 342, 348, 354, 360), diff --git a/published/api-docs/chart-types/polar/polar-scatter/r/code.txt b/published/api-docs/chart-types/polar/polar-scatter/r/code.txt index a011b2df4913..bec9e1bc3b4c 100644 --- a/published/api-docs/chart-types/polar/polar-scatter/r/code.txt +++ b/published/api-docs/chart-types/polar/polar-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(6.80498578527, 3.38959601061, 5.38147211075, 8.05954021942, 5.31822922787, 2.98509993563, 1.96658700238, 6.76926540821, 4.07340189872, 6.50437182527, 7.556369819, 4.04745609407, 7.38666249607, 5.41362473698, 7.47071653116, 7.98211021694, 4.73781408009, 4.20645304293, 5.47860480459, 4.8245202807, 5.5996006099, 6.86679521708, 3.08567136626, 7.77181094323, 3.6877944351, 5.36035668519, 5.1404467393, 6.04544568093, 6.83392094019, 3.62076946254, 3.9894305834, 5.3118244995, 4.60821348028, 6.64058471615, 3.05518885448, 7.49256416375, 5.48507817779, 3.89779499662, 5.97624511403, 5.44706156091, 5.37703411681, 4.69080578773, 4.71164049118, 3.62991932939, 5.95766807637, 5.35712128439, 3.84923528282, 6.25050713632, 7.12224335715, 3.39940423384, 3.51055667227, 4.10099760366, 4.0963821002, 6.23358307481, 3.93948852677, 3.9254450774, 6.11813250146, 3.94045034629, 7.58301557326, 3.51320214534), t = c(-30.3529443619, -25.6114598545, -12.4252274527, 13.9613805187, -4.95093284067, -25.6922741909, 12.4687641616, -4.91376410703, -10.9673802876, 30.8141940549, 2.47495943114, 17.9755437524, 0.771130593362, 6.13748848563, -14.451963574, 28.1845341129, 12.538680066, -8.98323033713, 5.23128516476, -64.4890025358, 11.3574866818, 3.45407479151, 13.9243466131, -25.3640020468, -16.818006386, -10.2600510306, -13.2121341256, 2.5793388653, 8.71757496585, -10.6754987192, -2.92636601252, 25.1958807548, 40.5903293216, -9.12143363019, -24.2973623813, -3.17694450569, 10.8504984192, -31.3320597474, 4.84956746221, 15.0482769541, 3.29510469926, -6.19709187313, -8.77857413578, 29.5491741194, -5.13744879288, 23.0268604879, -6.63481657837, 2.75501499186, 21.7332501137, -24.8169949601, -7.83054706253, 28.3257962102, 12.3009774678, -21.56315724, -19.3355162838, 26.1464431708, -1.70607120268, 16.071723695, 2.05326630285, -5.09791161233), diff --git a/published/api-docs/chart-types/time-series/date-axes/r/code.txt b/published/api-docs/chart-types/time-series/date-axes/r/code.txt index 3c33be6592da..42125bb1cb55 100644 --- a/published/api-docs/chart-types/time-series/date-axes/r/code.txt +++ b/published/api-docs/chart-types/time-series/date-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("2013-10-04 22:23:00", "2013-11-04 22:23:00", "2013-12-04 22:23:00"), diff --git a/published/api-docs/file-settings/fileopt/append/r/code.txt b/published/api-docs/file-settings/fileopt/append/r/code.txt index 395c266e008a..039d4df23394 100644 --- a/published/api-docs/file-settings/fileopt/append/r/code.txt +++ b/published/api-docs/file-settings/fileopt/append/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/file-settings/fileopt/extend/r/code.txt b/published/api-docs/file-settings/fileopt/extend/r/code.txt index 5fa4dc592a8c..910a75bbcc77 100644 --- a/published/api-docs/file-settings/fileopt/extend/r/code.txt +++ b/published/api-docs/file-settings/fileopt/extend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/file-settings/fileopt/new-graph/r/code.txt b/published/api-docs/file-settings/fileopt/new-graph/r/code.txt index 31e9b50829ab..5ddfaa4bc061 100644 --- a/published/api-docs/file-settings/fileopt/new-graph/r/code.txt +++ b/published/api-docs/file-settings/fileopt/new-graph/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/file-settings/fileopt/overwrite/r/code.txt b/published/api-docs/file-settings/fileopt/overwrite/r/code.txt index 569d686baf1d..6cf62c3dcce0 100644 --- a/published/api-docs/file-settings/fileopt/overwrite/r/code.txt +++ b/published/api-docs/file-settings/fileopt/overwrite/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/file-settings/privacy/privacy-false/r/code.txt b/published/api-docs/file-settings/privacy/privacy-false/r/code.txt index 329bcc04f93e..43bc1db04b92 100644 --- a/published/api-docs/file-settings/privacy/privacy-false/r/code.txt +++ b/published/api-docs/file-settings/privacy/privacy-false/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/published/api-docs/file-settings/privacy/privacy-true/r/code.txt b/published/api-docs/file-settings/privacy/privacy-true/r/code.txt index 8d5711c782b2..e181a2eba749 100644 --- a/published/api-docs/file-settings/privacy/privacy-true/r/code.txt +++ b/published/api-docs/file-settings/privacy/privacy-true/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt b/published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt index 46b6159e405a..94f70b803f2c 100644 --- a/published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt +++ b/published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt b/published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt index 3fd27ce49e03..c508cfb57a28 100644 --- a/published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt +++ b/published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt b/published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt index 6dc07b46097c..f47f6a20be68 100644 --- a/published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt +++ b/published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/published/api-docs/layout/annotations/hover-chart-basic/r/code.txt b/published/api-docs/layout/annotations/hover-chart-basic/r/code.txt index de5c58afb9b7..f94deed65df8 100644 --- a/published/api-docs/layout/annotations/hover-chart-basic/r/code.txt +++ b/published/api-docs/layout/annotations/hover-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/published/api-docs/layout/annotations/multiple-annotation/r/code.txt b/published/api-docs/layout/annotations/multiple-annotation/r/code.txt index 3fb7eee83ba3..cd822a91f923 100644 --- a/published/api-docs/layout/annotations/multiple-annotation/r/code.txt +++ b/published/api-docs/layout/annotations/multiple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/published/api-docs/layout/annotations/simple-annotation/r/code.txt b/published/api-docs/layout/annotations/simple-annotation/r/code.txt index e2c672c56f56..f2b830ccf64b 100644 --- a/published/api-docs/layout/annotations/simple-annotation/r/code.txt +++ b/published/api-docs/layout/annotations/simple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/published/api-docs/layout/annotations/style-annotation/r/code.txt b/published/api-docs/layout/annotations/style-annotation/r/code.txt index 3c83564d3fc3..69c0654ac67a 100644 --- a/published/api-docs/layout/annotations/style-annotation/r/code.txt +++ b/published/api-docs/layout/annotations/style-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/published/api-docs/layout/annotations/text-chart-basic/r/code.txt b/published/api-docs/layout/annotations/text-chart-basic/r/code.txt index 00187a98546e..e29526b22c88 100644 --- a/published/api-docs/layout/annotations/text-chart-basic/r/code.txt +++ b/published/api-docs/layout/annotations/text-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/published/api-docs/layout/annotations/text-chart-styling/r/code.txt b/published/api-docs/layout/annotations/text-chart-styling/r/code.txt index 30561f0e994f..b67a1d5e909e 100644 --- a/published/api-docs/layout/annotations/text-chart-styling/r/code.txt +++ b/published/api-docs/layout/annotations/text-chart-styling/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/published/api-docs/layout/axes/axes-booleans/r/code.txt b/published/api-docs/layout/axes/axes-booleans/r/code.txt index 3584da2d9f0a..282ead95d858 100644 --- a/published/api-docs/layout/axes/axes-booleans/r/code.txt +++ b/published/api-docs/layout/axes/axes-booleans/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/axes/axes-labels/r/code.txt b/published/api-docs/layout/axes/axes-labels/r/code.txt index 769b720eac3e..1c2c661c998b 100644 --- a/published/api-docs/layout/axes/axes-labels/r/code.txt +++ b/published/api-docs/layout/axes/axes-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/axes/axes-lines/r/code.txt b/published/api-docs/layout/axes/axes-lines/r/code.txt index a940821abd46..032b16e29fa2 100644 --- a/published/api-docs/layout/axes/axes-lines/r/code.txt +++ b/published/api-docs/layout/axes/axes-lines/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/axes/axes-range-manual/r/code.txt b/published/api-docs/layout/axes/axes-range-manual/r/code.txt index eba81260be80..9e8d0a230024 100644 --- a/published/api-docs/layout/axes/axes-range-manual/r/code.txt +++ b/published/api-docs/layout/axes/axes-range-manual/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/axes/axes-range-mode/r/code.txt b/published/api-docs/layout/axes/axes-range-mode/r/code.txt index 71b5bf396fef..fb76f08edcb2 100644 --- a/published/api-docs/layout/axes/axes-range-mode/r/code.txt +++ b/published/api-docs/layout/axes/axes-range-mode/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(2, 4, 6), diff --git a/published/api-docs/layout/axes/axes-range-type/r/code.txt b/published/api-docs/layout/axes/axes-range-type/r/code.txt index ab68681deae3..9d2c741aba5b 100644 --- a/published/api-docs/layout/axes/axes-range-type/r/code.txt +++ b/published/api-docs/layout/axes/axes-range-type/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/axes/axes-reversed/r/code.txt b/published/api-docs/layout/axes/axes-reversed/r/code.txt index 6344bffc7055..929e34061fd7 100644 --- a/published/api-docs/layout/axes/axes-reversed/r/code.txt +++ b/published/api-docs/layout/axes/axes-reversed/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2), diff --git a/published/api-docs/layout/axes/axes-ticks/r/code.txt b/published/api-docs/layout/axes/axes-ticks/r/code.txt index 2686d1737203..9ba8bd0b9fbe 100644 --- a/published/api-docs/layout/axes/axes-ticks/r/code.txt +++ b/published/api-docs/layout/axes/axes-ticks/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/published/api-docs/layout/font/global-font/r/code.txt b/published/api-docs/layout/font/global-font/r/code.txt index 6fd7d16122f1..0ef1a1109a97 100644 --- a/published/api-docs/layout/font/global-font/r/code.txt +++ b/published/api-docs/layout/font/global-font/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/published/api-docs/layout/labels/styling-names/r/code.txt b/published/api-docs/layout/labels/styling-names/r/code.txt index 76877706844a..13f30930b9a1 100644 --- a/published/api-docs/layout/labels/styling-names/r/code.txt +++ b/published/api-docs/layout/labels/styling-names/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/published/api-docs/layout/latex/latex/r/code.txt b/published/api-docs/layout/latex/latex/r/code.txt index e237096ccf08..11c3de6bb00b 100644 --- a/published/api-docs/layout/latex/latex/r/code.txt +++ b/published/api-docs/layout/latex/latex/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/published/api-docs/layout/legends/legend-inside/r/code.txt b/published/api-docs/layout/legends/legend-inside/r/code.txt index 4437c98bd7a9..d35b407ff8a9 100644 --- a/published/api-docs/layout/legends/legend-inside/r/code.txt +++ b/published/api-docs/layout/legends/legend-inside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/published/api-docs/layout/legends/legend-labels/r/code.txt b/published/api-docs/layout/legends/legend-labels/r/code.txt index a69245acdcb5..4d3af4e33826 100644 --- a/published/api-docs/layout/legends/legend-labels/r/code.txt +++ b/published/api-docs/layout/legends/legend-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/published/api-docs/layout/legends/legend-outside/r/code.txt b/published/api-docs/layout/legends/legend-outside/r/code.txt index 4ad5c7bc6bf3..131b6305de9c 100644 --- a/published/api-docs/layout/legends/legend-outside/r/code.txt +++ b/published/api-docs/layout/legends/legend-outside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/published/api-docs/layout/legends/legend-style/r/code.txt b/published/api-docs/layout/legends/legend-style/r/code.txt index 817791eb5fdc..995041d3c617 100644 --- a/published/api-docs/layout/legends/legend-style/r/code.txt +++ b/published/api-docs/layout/legends/legend-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/published/api-docs/layout/legends/legend-visibility/r/code.txt b/published/api-docs/layout/legends/legend-visibility/r/code.txt index b2114ab037b0..de0af73b3abe 100644 --- a/published/api-docs/layout/legends/legend-visibility/r/code.txt +++ b/published/api-docs/layout/legends/legend-visibility/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/published/api-docs/layout/legends/show-legend/r/code.txt b/published/api-docs/layout/legends/show-legend/r/code.txt index b807401c7fff..376f3a5ecffb 100644 --- a/published/api-docs/layout/legends/show-legend/r/code.txt +++ b/published/api-docs/layout/legends/show-legend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 2, 3), diff --git a/published/api-docs/layout/sizing/size-margins/r/code.txt b/published/api-docs/layout/sizing/size-margins/r/code.txt index e6236de6d2be..dbac85917ce4 100644 --- a/published/api-docs/layout/sizing/size-margins/r/code.txt +++ b/published/api-docs/layout/sizing/size-margins/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt index 1b4ec5fbae1c..9a82a36f78a9 100644 --- a/published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 3, 2), diff --git a/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt index 25e22ab12bbc..d93a6b9876d6 100644 --- a/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(40, 50, 60), diff --git a/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt index 338bd02d23b4..6e4c9fe84d16 100644 --- a/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt index 481b49cc0628..65c51726a1d5 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt index a81c5d3f6d6b..345e8a9b3026 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt index b0c5c3c20c11..b59739297a2c 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(2, 3, 4), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt index 70d95456be6f..baacbafa4477 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt index 570b4003ba93..6b185129f6d1 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt b/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt index 0112c069fa03..57f62948309b 100644 --- a/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt +++ b/published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/published/api-docs/references/plotly_js.json b/published/api-docs/references/plotly_js.json index 9ad84a4a8739..f402114a0ed9 100644 --- a/published/api-docs/references/plotly_js.json +++ b/published/api-docs/references/plotly_js.json @@ -1745,6 +1745,7 @@ "url": "https://plot.ly/~PlotBot/199" } ], + "description": "Data sets with many correlated fields are too big to display all at once. This demo shows how to let the user change the X and Y data, and demonstrates correlated hover info across plots.", "has_thumbnail": false, "id": "high-dimension-data-subsection-placeholder", "name": "High Dimension Data", @@ -1765,6 +1766,7 @@ "url": "https://plot.ly/~PlotBot/200" } ], + "description": "Live updating plots can still be zoomed, panned, and autoscaled. Monitor and adjust your equipment or model in real time.", "has_thumbnail": false, "id": "streaming-data-subsection-placeholder", "name": "Streaming Data", @@ -1785,6 +1787,7 @@ "url": "https://plot.ly/~PlotBot/198" } ], + "description": "Learn to implement a range bar, as an alternate way of zooming in and out on a plot. Use click events to dynamically annotate the plot.", "has_thumbnail": false, "id": "range-slider-subsection-placeholder", "name": "Range Slider", @@ -1805,6 +1808,7 @@ "url": "https://plot.ly/~PlotBot/201" } ], + "description": "Update any aspect of a plot\u2019s appearance on the fly with one simple command.", "has_thumbnail": false, "id": "style-controls-subsection-placeholder", "name": "Style Controls", diff --git a/test-published/api-docs/chart-types/3d-line/random-walk/r/code.txt b/test-published/api-docs/chart-types/3d-line/random-walk/r/code.txt index 3dc18c0bf53f..a3283845571a 100644 --- a/test-published/api-docs/chart-types/3d-line/random-walk/r/code.txt +++ b/test-published/api-docs/chart-types/3d-line/random-walk/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.014460360111, 0.420723053511, 0.471955637602, -1.5980850775, -1.1696928974, 0.62887815642, 1.64225480141, 1.84538844321, 2.39903055756, 2.74061873532, 2.98184534361, 3.63482281441, 3.51947216482, 3.24422002592, 1.97987531822, 2.49306912443, 1.98065348142, 2.49148828382, 1.8166301311, -0.418444162232, -1.91452615762, -1.26261858994, -0.702841491138, -2.53578213432, -2.96566072736, -5.06110427809, -7.00637040896, -6.9990237396, -8.80043516671, -8.71239917157, -10.4880913229, -14.0237638556, -14.3444267254, -12.0425575011, -10.8147720387, -9.77322085369, -7.8871343368, -10.1779694809, -7.7922357105, -4.06012871996, -3.25503609007, -2.98098865248, -1.1460800781, -4.7132235257, -5.96126803183, -6.08422139999, -2.67777205929, -4.22903304342, -4.01470370535, -5.4925628554, -3.41315115276, -4.09417736042, -5.92604468977, -7.0398214854, -4.54137742868, -4.48795563261, -3.70646317414, -4.33965125791, -4.76111378599, -3.34964004567, -2.79516815968, -0.985062514936, -1.19713635343, -3.14305435084, -4.26844060776, -3.35551475326, -2.97635400821, -3.11226810057, -5.00517291984, -4.45828762509, -2.92964495631, -3.0340518455, -2.63137123131, -0.5984251984, 1.46882692707, 1.91813591611, 0.931131009822, -0.198698414513, -3.10258584158, -5.10707707985, -5.53978453609, -5.87190440655, -6.15266139896, -6.09909315047, -3.56047669739, -3.55761346254, -1.23993200533, 0.474795919986, -1.02959575087, -1.24291855948, -1.31426952875, -2.32409070416, -2.74719528672, 0.285902173824, 3.46346174555, 5.55064318821, 7.93131324422, 7.99242651171, 8.5373199465, 11.0752351805, 10.3205319282, 11.7581891849, 13.4949527524, 14.402257039, 14.3341961315, 16.7118900516, 14.2627254109, 16.5382962436, 15.3067781388, 18.1656461106, 17.0995160962, 15.934693484, 12.360748197, 12.4371219166, 13.5501064722, 13.2089378056, 14.1279104195, 13.4566914737, 15.9390080651, 15.2023626211, 12.443013371, 11.6235738652, 12.3093408538, 13.413332176, 13.3378554542, 12.7324527487, 10.9583926979, 12.4770860368, 10.3856928769, 11.2769203911, 10.9252342885, 10.5648842903, 9.90341705159, 8.90109222607, 8.74410691403, 5.62013558101, 5.75894407649, 7.14620387683, 7.82192882076, 9.99752533649, 11.4669502774, 10.3036227351, 10.6353641791, 14.7873630054, 14.6815788314, 17.4222005324, 15.9305759257, 16.4283318184, 17.5594396448, 17.8371814833, 16.6537129297, 12.9698129546, 8.22890747877, 10.4446077726, 13.148096571, 16.5755720498, 17.0970366987, 18.4260467093, 17.8427544622, 16.153890924, 16.1188692931, 17.0701110598, 16.5592444246, 16.7801876574, 18.7058755511, 16.8994733969, 15.093160324, 17.6321434315, 13.7980907919, 10.9898205761, 11.30276208, 9.37855259325, 10.9117452673, 11.0812344068, 12.8525922512, 10.7657134117, 11.555475122, 8.96571434472, 5.60051748344, 6.89258971926, 6.41484884007, 5.87972395348, 8.33839027511, 10.9814037915, 11.6656886194, 9.902573022, 8.96599982974, 9.70357715902, 9.47267497888, 7.59562651098, 8.05171507272, 6.81324160259, 5.93272558092, 5.66885758889, 8.38838033493, 4.29354010421, 4.72704863187, 7.2565249243, 7.97067463359, 6.38361598112, 5.68639720468, 2.3657444534, 1.70934714165, 2.45720993286, 2.03355212971, -0.174752482635, -2.38494583162, -3.61461123073, -5.76496371563, -7.50254742778, -9.2956270284, -9.36776589712, -5.91491283109, -8.43918270326, -11.0162806727, -10.4725899139, -11.2769921424, -10.5641008534, -11.9928147849, -12.7483073835, -14.7672001844, -13.4777929449, -15.7901116746, -14.5569502867, -16.4933826324, -19.358021726, -18.9508511213, -18.0968256136, -16.0255273907, -19.0290483393, -19.3290168721, -18.4769531356, -19.225163488, -23.0562321371, -24.2830335385, -23.438117191, -23.6555178343, -20.2726489546, -19.455048731, -19.7863053144, -18.6545983156, -19.3574121043, -19.2048630105, -16.5631387925, -15.9213347995, -13.1730323144, -11.2452962616, -12.1456072698, -9.42917902507, -9.75066084596, -12.4902089244, -10.76325461, -10.2495453882, -10.0696692325, -7.83101325354, -9.68160249681, -11.2012611972, -9.37769680478, -11.3548260447, -9.56939528372, -7.55818751635, -7.94327560797, -4.51860599279, -5.96428843721, -7.43356147407, -5.53530146882, -5.1413890716, -5.9311125606, -7.23379839661, -4.92435468262, -6.20244740005, -7.56491772354, -6.43501630667, -7.36860703403, -9.544850133, -9.35905877848, -10.7724736225, -10.1929460888, -10.2769806516, -11.5945844717, -10.2076146177, -9.17566745132, -6.44234561378, -3.03685959579, 0.108979069684, 1.63292321945, -3.08231707893, -3.99824601089, -4.76766751779, -3.92895570577, -5.07233023067, -8.06734947554, -8.50264105061, -6.53794408326, -10.9236159279, -9.30379256484, -10.6467278331, -8.18200271162, -10.059796806, -13.0293717991, -9.35950632056, -9.4789239713, -8.54771091302, -6.87012462088, -8.06314781495, -6.81596908504, -3.64375134679, -2.73147927876, -0.969365998405, 0.046563582321, -1.98724358604, -2.29256165664, -4.43869105617, -3.44517225471, -5.05223966562, -5.70299749891, -4.72847971208, -5.37093764623, -8.65020440945, -10.6837253481, -10.1912707497, -8.08829638699, -7.35358781352, -10.5409366475, -9.59489645073, -11.125325334, -11.7185324629, -9.09013732852, -9.53073643867, -8.2904173021, -7.45330020383, -11.3149293215, -16.3884225385, -18.1348641881, -18.3769467479, -17.1871943902, -15.3328226006, -17.2201521411, -17.6087543443, -15.6965494364, -15.8888438242, -20.0427030899, -23.5741499961, -19.9267862136, -21.7932428801, -23.7805433321, -25.2903769751, -25.8224052919, -24.0756715863, -25.1160211799, -25.546393164, -26.5906593435, -28.3738626728, -27.212679408, -27.8648258452, -26.5382940526, -25.586916026, -23.9564109112, -24.8999843293, -24.5346644423, -25.2946855379, -27.0004062596, -26.6711396325, -25.7663475401, -23.6294743054, -22.2400241472, -23.4733888841, -22.0949183054, -23.7355531844, -23.9509775377, -21.3666238956, -21.0093678628, -22.5848073055, -23.0656215594, -23.2985810682, -24.9971474878, -25.6633129801, -23.0545809277, -22.4892842952, -22.0735508018, -20.7213650517, -17.2799752137, -18.7207128821, -17.1134175191, -17.3409263049, -16.8129416381, -15.0749359741, -15.8271086115, -14.8564727297, -15.8419171177, -16.001723019, -14.7008670014, -15.16605393, -16.5309096861, -17.1568547726, -15.8705096954, -15.0024494448, -15.7021808293, -12.2844657768, -10.5479018293, -7.4518005957, -10.5802392826, -10.4006493629, -11.6842892572, -13.5834689025, -13.0607161531, -12.4155448759, -11.4505012147, -10.3850909339, -11.2515723444, -9.55434784734, -7.43312830104, -2.16593821075, -4.08221762842, -3.73195393908, -1.32326575066, -3.36692537518, -0.991913066176, -3.42123571217, -1.02113081403, 2.74183254031, 4.60885625505, 5.1861551236, 7.94967179126, 7.23625922783, 11.4668733809, 12.9839283711, 13.6676413556, 12.7973009454, 13.1099156282, 12.09218766, 11.5220142187, 11.1301441484, 11.8974589099, 12.6259500047, 12.5506560285, 11.7623224739, 11.9614908808, 11.0550734881, 10.7542274336, 11.4893880995, 12.6656611233, 11.9535123108, 13.1726500228, 12.7314023273, 11.4541551565, 13.5044145125, 14.659728697, 11.3050455557, 14.062830264, 11.6768006716, 14.205718455, 13.2378021907, 13.4086026846, 14.4872875275, 12.9146726617, 12.4278865741, 13.2699726471, 13.326369081, 17.7321012457, 16.1246193103, 17.2657086042, 15.8107330738, 19.1422205396, 20.0189257722, 20.6044386727, 21.7737473969, 21.8620350915, 23.4052117833, 24.4199787578, 25.7428708104, 26.0596029916, 29.900994098, 30.8273076541, 29.2632766369, 33.977461361, 32.9119469068, 36.9031371045, 36.6210092539, 37.3810650386, 37.3800860511, 35.8506871095, 34.5116207281, 31.8895747896, 28.6998961332, 27.2500469629, 26.3289359688, 27.0121527705, 27.0073442404, 27.0392676401, 25.5561594425, 23.8864018552, 22.9447401451, 22.4172756724, 24.8788043801, 25.785845786, 28.6473894815, 26.7868658329, 27.5716168017, 26.4848733333, 26.5473856292, 25.0235839332, 22.9507844486, 22.3705473521, 23.0130013465, 24.5364341706, 26.1916301396, 28.1858461289, 30.1234486307, 32.5482323589, 31.2720236008, 34.5838642411, 35.644628907, 38.5257176675, 42.4925301959, 41.0921638938, 40.5893719849, 39.9537576988, 41.5217578144, 41.4516919132, 40.9703271571, 43.8515189499, 40.7185932407, 40.0531803268, 43.6235911876, 45.0562420092, 44.5143791877, 45.0235896159, 43.1257801982, 43.3970785006, 43.1575387646, 44.267676731, 43.2642346276, 42.2388280464, 45.4752424723, 43.6610022886, 44.6357649311, 45.8362684079, 42.7975292245, 43.2518617821, 41.4902799952, 43.5055420864, 42.3654159831, 44.9633016211, 46.8406823939, 47.8887328253, 47.9668184741, 48.9315527199, 52.0774477511, 50.4074982543, 49.3129414837, 53.6993364348, 54.1705941421, 54.5423200842, 56.7860194537, 57.1697614709, 56.1456841836, 57.7825365701, 54.5700332444, 54.2747855578, 55.0148321021, 56.3828996237, 56.4979510016, 55.5551435977, 58.6687455234, 59.7987737712, 59.490021811, 57.7925471809, 57.7848243747, 58.1126777348, 59.2771454495, 60.3714657896, 60.4654095288, 62.0979812011, 64.0445832126, 62.3265390894, 64.433462931, 66.0708752918, 66.8132448713, 64.919562555, 66.8318835583, 66.6807507547, 66.3618170889, 64.7141243477, 68.0190617941, 67.1748720444, 66.7790297365, 67.1344583348, 68.7205666699, 66.8746665317, 65.4228818483, 63.6824943346, 63.2110711395, 61.4630477416, 60.160529121, 60.0023262306, 61.308739689, 63.1511086518, 63.9968569346, 63.4103923724, 62.8785884775, 63.1801833899, 65.6496168924, 66.8742131604, 69.4065817654, 66.9407261063, 66.348872735, 67.8490003057, 66.3591373994, 61.5285102571, 60.0786185511, 55.6865152346, 55.4261810103, 59.3586831537, 58.5617655876, 59.3370454932, 59.8693996196, 58.4997380382, 61.3595077562, 60.6908718815, 56.0713399861, 58.9818262092, 56.6953229396, 55.9019733387, 56.7590598976, 57.0977619898, 54.7502581374, 56.4088301793, 56.3319197665, 56.5191730601, 57.7448195729, 57.1951254613, 57.4723658916, 60.7836321755, 59.5657474523, 63.3232262653, 63.2017233682, 65.0418743014, 61.8925706021, 63.8624216121, 64.4870835027, 66.3342804835, 70.5746462219, 69.5412971747, 66.1308154526, 65.072105087, 63.9830876463, 61.425255881, 60.7530095384, 61.3581366493, 60.3132497969, 60.7165011718, 60.2314953019, 61.1103637904, 62.4995182621, 63.6216438761, 64.5448830092, 63.7572127674, 63.8412024403, 63.2765181115, 63.6584882487, 65.9013307744, 64.8794091133, 62.3599178175, 59.0226125922, 60.7843513319, 62.556626775, 62.3464276, 62.6287127393, 62.7824361713, 61.9148039496, 59.6383012348, 59.1349526478, 57.6856738612, 58.3342304827, 57.2040584005, 55.9491561977, 56.8243075432, 55.0884209903, 56.8794368898, 55.285452174, 58.0693251387, 59.7783520447, 62.5440804306, 63.1427439828, 63.2173713084, 65.5492712044, 66.3009604696, 66.6940375158, 67.8726403748, 66.771771401, 69.8100758199, 70.4313785817, 69.6078541068, 68.1961598081, 69.5945761468, 69.7547279655, 71.737612621, 72.4832271444, 70.6844975053, 73.2479102143, 74.2757903207, 74.0251073728, 72.6113826391, 73.7521518798, 74.51406016, 74.9694116435, 72.2454743118, 71.1529155199, 72.087158784, 72.77217393, 71.778467844, 71.7533884196, 72.736839194, 72.9313807389, 72.3826989006, 75.869437254, 77.6021138202, 76.6294127673, 79.0019216484, 81.4762500799, 84.2385393944, 85.8238219283, 85.5760074495, 80.6270824484, 84.7759731016, 84.0918935393, 81.4937948004, 86.2164901735, 83.1733890063, 83.4503710474, 82.469403447, 80.4361206696, 79.2584155092, 80.0119982236, 78.9468764208, 79.171276713, 77.2525971309, 76.8162765189, 74.2080827849, 75.0750644022, 70.4276889275, 68.889748712, 68.2728662039, 71.2782704572, 69.4696507855, 69.5264757893, 68.8814630763, 68.5369706541, 67.6833912747, 68.7605061811, 71.1359403938, 70.6514105765, 68.1477343287, 67.0681859241, 67.0143174695, 67.3309641758, 68.051288646, 67.2024340697, 67.522050559, 67.7768475243, 65.9401471412, 66.1606463793, 66.9394316429, 68.3787264063, 70.1164009085, 71.5875038748, 69.4863500194, 69.503932177, 68.4593671173, 69.7260909554, 70.3114451756, 68.9902131352, 68.1104721958, 69.6990612438, 73.4661064448, 71.2599777213, 69.8595185982, 69.8563665114, 69.1884587717, 70.6731408565, 74.1189893226, 72.6613288594, 70.601515339, 67.5954381813, 64.8042814989, 64.368869946, 65.030008523, 65.0750925331, 65.2120176045, 67.0617269418, 69.5072301416, 70.0417127449, 73.219968293, 74.4577736319, 78.6334179825, 78.4998247775, 79.4984869678, 78.2933075197, 77.8802690836, 82.1025258923, 84.2673838315, 84.5024079994, 87.9125780504, 84.9027605109, 83.4489526179, 83.6203632289, 86.0516726291, 82.9342348231, 80.5382639536, 79.4315811918, 79.4709527024, 77.833266341, 72.9443818607, 71.8695966992, 75.0071259156, 72.3356105012, 74.8382695529, 73.9867068264, 74.1502448275, 73.3961146984, 74.6866475558, 76.1647130381, 81.3792454538, 83.0898140881, 83.5703481672, 83.3619488417, 79.8434495299, 79.9798284671, 78.7834261893, 80.2016337124, 80.0854233355, 79.5858995036, 82.9467070041, 81.0584297251, 82.3406042543, 82.3497075558, 82.02318963, 83.4218032879, 81.7436225133, 80.6308856437, 81.8953039976, 82.5536304317, 83.8170600513, 82.285337025, 83.445632418, 81.6442593082, 80.8701149169, 82.2632316989, 81.8132870898, 83.3743074098, 83.5245415036, 80.8755582912, 82.641331334, 84.2105682984, 84.5059549198, 82.8742303999, 83.4868755931, 87.0114564693, 85.0548085735, 84.6732648307, 85.3988840053, 86.398073196, 87.635826975, 85.125332009, 86.7850600206, 88.7834352317, 88.7121604182, 90.4957720327, 93.2530966351, 93.7006763997, 95.9122515356, 90.6071562219, 89.6360388581, 89.7689351168, 90.508488805, 90.8024094231, 91.3521511706, 90.8740843537, 90.6114494675, 90.378597497, 90.4905410862, 91.8700449357, 92.0920913333, 91.3769153169, 92.9084047541, 91.9801147605, 92.2725572176, 96.2282955953, 97.6011351014, 96.3048425226, 92.0017330229, 93.6998482244, 92.1516547087, 90.4886979463, 88.7565861076, 87.1598017971, 82.6225983227, 81.0225331869, 82.0096206011, 79.7153256246, 79.2710505653, 80.7829985936, 79.3561148892, 77.4492923931, 77.210016984, 77.5214035384, 77.9476673686, 80.5921028916, 80.4612388252, 79.9060554572, 80.1382417279, 80.9408844523, 80.3270430752, 81.9091714899, 83.4775154585, 82.4026664316, 79.5633067904, 80.5511571044, 80.0485082617, 83.8785852927, 84.0499914594, 82.1064077627, 82.6537411793, 83.8663351885, 80.5428108202, 82.8996714899, 85.6714275061, 86.7391232939, 84.7512994856, 84.7123969168, 81.1873842526, 80.2613181049, 81.3452681394, 80.8831808646, 82.1562199058, 83.6822931961, 85.2977827713, 85.3698398712, 82.9174494353, 80.7415153155, 82.9815591522, 83.7999967628, 85.932085419, 89.1889236698, 88.1228474501, 87.8773812519, 89.5473733898, 86.8021469904, 84.5604303088, 83.7426210713, 82.2049861386, 83.6368939144, 82.2237844715, 81.8154448647, 81.3624534674, 82.867351418, 84.3284800652, 81.3763481066, 82.9182259427, 80.672995694, 80.297248479, 84.7274219803, 85.6342701532, 82.6644946146, 83.9627659672, 83.9236946689, 83.9318005501, 85.3685800687, 86.0838994658, 86.5992794351, 86.1049833089, 86.75811886, 86.7870200065, 87.8954686811, 87.8070648794, 90.0322693794, 87.4410457048, 86.1615654814, 83.9933370833, 86.9096744723, 86.4147198163, 86.4025383343, 88.4553477356, 87.6466679167, 88.3482345117, 86.0620340473, 84.6692035945, 84.6585094628, 82.8138595718, 82.6674980887, 83.341210921, 81.8268587004, 81.8221647291, 81.1626053843, 81.0605562215, 81.4263206798, 83.2503682057, 83.7745917531, 83.4576028874, 83.2552141865), y = c(-0.700740641367, -4.22733500259, -3.34519351254, -5.24047112859, -4.32950676893, -1.73642938603, -2.3381318465, -1.30013798663, -2.34259102965, -4.7097973579, -4.23048596248, -4.10616597806, -1.13721249399, 1.74712441174, 1.80643215496, -0.124705468256, 0.102956881674, 2.64455174559, 7.09865480876, 7.73096240707, 5.28471390777, 5.51769873795, 7.12683622781, 4.50019074477, 2.52413981475, 3.64347006815, 3.61278891617, 6.51152605854, 5.48328245565, 5.40856991004, 8.64836165268, 5.91334066238, 7.16087183589, 3.81874739194, 5.91445517137, 2.73910572933, 3.4407373475, 1.95976785907, 1.56912431386, 1.82004530701, 2.30859612784, 4.71190833401, 4.96312665689, 3.87900776269, 3.6593098265, 1.45670185071, 3.88182449209, 5.39948443233, 3.96718200593, 1.9488183581, 3.9479819188, 7.83451461542, 8.56589803804, 7.7310518376, 8.31775522172, 9.97283206773, 13.2463670971, 10.9945336731, 12.2495484244, 14.0415730809, 16.6293019839, 15.0291460903, 13.0824559956, 10.5367290223, 9.64205800185, 11.0593758696, 10.7153014807, 11.6048402682, 13.2993655519, 14.269770172, 11.8779394773, 10.2044199848, 11.9941296665, 11.6086286077, 10.8771148302, 12.1471584567, 13.7470205419, 13.1859361609, 9.99738017586, 10.8165553423, 13.316755317, 13.7152634092, 12.2107000853, 15.0443797447, 14.6645775769, 12.6720842816, 12.2765703434, 11.5865592883, 15.0386241033, 14.8086388877, 14.38172374, 15.972652947, 11.9502172712, 14.8274167915, 13.8000108549, 12.5763980744, 13.0507246596, 12.8988381066, 11.3192324574, 11.4972312402, 13.2576588091, 11.7783077974, 11.8074163343, 11.1902078172, 9.8321075529, 10.4190490585, 12.1367497976, 10.7340548561, 9.4353144921, 9.84572680661, 11.8166301711, 13.1902267237, 16.531929775, 14.5160183021, 13.2067683804, 16.0587565885, 16.6589947384, 17.775075397, 16.7175319908, 15.8155358994, 15.2291513455, 18.1548696074, 18.8402892211, 19.5398583822, 21.3314002847, 23.7686875282, 20.5097221456, 19.963715331, 19.0940279119, 23.7959290405, 23.731710376, 23.8037280612, 22.168392284, 25.4801344554, 25.1081602361, 23.5406661947, 24.0235635704, 24.4342082776, 24.5569892583, 26.4305318007, 25.4583993882, 25.5850406421, 27.5063348569, 27.1283228702, 27.6272503917, 28.7066009336, 25.2119681238, 21.6129141224, 21.6667734971, 20.2669203931, 20.8963156826, 21.6112416379, 21.0532124933, 21.0271501084, 23.5926488619, 23.7113539633, 20.5972953923, 22.193048598, 22.5631229594, 22.3670798207, 22.7059183118, 19.5075149221, 19.5547584336, 20.9416508807, 23.1327764914, 25.8377240693, 27.4547762178, 29.824991361, 29.2119719658, 30.0751029748, 28.8911085742, 30.3106725789, 30.9537801787, 30.6979288799, 33.6101241413, 34.7156933038, 32.6152141304, 29.9390499933, 28.8718605516, 28.4642004692, 31.0870109898, 30.8146949434, 31.7952399659, 26.6652408612, 27.733688094, 32.4214525586, 31.5027043162, 30.381276834, 30.3311599706, 30.5754512353, 29.4973907107, 31.4015561745, 32.4306783155, 31.8700452621, 30.0377180911, 27.775609339, 26.6830458681, 29.4868611888, 27.850203162, 27.6808277266, 27.949305082, 28.0050732116, 28.3579290815, 27.1917571537, 26.1306135526, 27.9902039763, 26.1612151859, 29.0764431829, 31.621314499, 31.5604653763, 33.6175696154, 34.8852254255, 32.8592301026, 35.5803975575, 33.6883478249, 33.7598123075, 31.4246185388, 32.2457728668, 32.0553366374, 32.1852216477, 33.7094450635, 37.3336470163, 37.5001204632, 36.217875068, 34.4166574493, 35.7019209552, 33.0631107621, 36.7830479701, 34.3503104018, 32.4182960734, 33.0874837273, 31.6697229812, 31.5067589649, 33.5265854996, 33.260232581, 31.9815176406, 34.6105557252, 34.3388886128, 34.0368793254, 33.6522919004, 37.6217247333, 38.1669514235, 40.4074781547, 38.3615992404, 36.1629611723, 35.9671510871, 38.1361290612, 35.8922649915, 38.1512572094, 36.5074675872, 34.4116714257, 31.111860568, 32.5383729834, 35.2397798857, 35.9621849496, 37.5523842005, 39.0982258029, 36.2376156354, 33.5426655784, 33.4427675666, 32.1796879463, 30.8483901618, 28.9933318391, 29.0362960255, 29.083610239, 29.4490072648, 32.1292923777, 31.8902730065, 29.3961270134, 31.9836195384, 31.6268345271, 30.1327992644, 29.2216379993, 29.6910120974, 29.675504607, 31.0756789149, 32.0882607374, 35.0711908, 36.2767191403, 33.9766510411, 32.0225494181, 34.4973538692, 34.5773374195, 37.4277541103, 35.504596674, 35.9273889243, 36.5458670633, 36.0655211794, 35.0428648999, 37.0379878754, 35.0061792353, 34.7827095055, 35.760669295, 36.0640632276, 38.4837054196, 36.2773643104, 36.1001789797, 36.0073696909, 37.3077181, 38.5705229883, 37.4042295093, 37.4460198924, 35.2902469539, 35.601462242, 34.2983513601, 34.8451171091, 35.4879083312, 35.7167921169, 36.490065193, 36.8182577334, 40.4488942714, 41.9675069345, 40.4959269289, 38.5710510681, 39.1212421814, 40.3298431263, 40.0574197111, 40.1668906257, 38.9630904754, 42.9121381512, 43.8760216992, 47.8844760906, 49.672509939, 48.1353811579, 50.7479445394, 54.4067440874, 55.3450281215, 52.1811636149, 48.8631989788, 50.5817919321, 52.8849774277, 53.4643860136, 51.6473538987, 48.9965418284, 46.2631850528, 45.3368321015, 48.2830767987, 48.227357545, 49.516915907, 49.2653158104, 47.6360181359, 50.1431325636, 51.1987588188, 48.9833528519, 51.7966301722, 49.8599379486, 50.5195405746, 49.4937293472, 46.6827494083, 43.1872880239, 41.6743498113, 39.7400824276, 39.7163473301, 39.3089980528, 39.7604110371, 39.7244365155, 39.5095813604, 42.381926836, 40.9419824164, 37.7290971952, 39.2191189819, 40.2914154466, 38.6446692128, 40.0703253249, 38.5069541771, 36.7938469257, 34.3614107684, 35.9538803102, 35.500839439, 34.3653931908, 32.8158290408, 29.2222936842, 30.7686890105, 28.4040666168, 28.5312536795, 26.1965284108, 22.4664646236, 21.3013679647, 19.9829463221, 17.5881209976, 19.6186456516, 17.666502843, 20.3321325922, 19.6052143049, 21.1606141981, 21.226544152, 22.1047296409, 19.8847370899, 17.6545975117, 20.4855890392, 20.7811131318, 23.9645490672, 23.9022683678, 22.076111249, 22.1327357741, 21.5358094603, 20.5454301939, 20.8815304134, 19.5545852842, 18.9487489556, 19.9804235995, 20.9552664912, 20.9991734474, 23.0159732477, 19.645716366, 18.7469848157, 22.773372402, 21.6180201526, 16.5619591882, 16.0826932042, 15.9095629564, 15.4177152362, 17.1511852596, 16.7861675454, 14.6804803501, 17.5389058006, 18.9998899394, 16.3309567446, 16.7445589308, 17.8108075583, 18.0530705829, 18.3260094143, 17.6218193885, 17.628553479, 17.5990205773, 19.9746041709, 19.9943389266, 19.260144183, 20.4791083201, 18.9969208525, 19.4108668078, 18.4259319455, 14.7542145805, 13.9133361325, 15.0420822945, 15.6969235741, 15.1917155805, 14.5554948706, 14.1340096552, 14.2588080213, 15.8725326603, 15.7762382525, 16.3447980848, 14.5692199212, 16.5449929368, 18.233346642, 16.2822191871, 17.1302810015, 16.180456143, 17.6190658156, 17.0400574771, 17.0901759052, 20.1365140701, 20.0968112049, 20.1638651692, 18.5973309814, 18.3838546297, 18.8788272297, 17.5883413035, 17.6763630617, 18.8841176922, 16.4960327806, 20.2475159766, 17.9811059961, 19.0199083998, 20.9844282471, 20.4532805028, 22.451920476, 26.8731608968, 25.5172148275, 28.2824425852, 32.1307085325, 31.2733341042, 34.296973307, 32.7665124741, 30.7742970573, 29.3627066827, 33.8068234405, 33.6282257154, 35.1264609407, 34.0133957295, 36.207499146, 35.8304873756, 33.2039114864, 35.5103705367, 36.840122754, 36.2922703013, 38.407097006, 37.3893274262, 37.5890915846, 36.3775631146, 34.5262331866, 31.7814694834, 26.8532069525, 25.4313270347, 25.3925322804, 30.201410772, 28.5309914324, 30.6139417189, 32.7009242984, 31.7929754749, 31.6160635543, 33.0725106145, 35.6071433922, 37.2381371048, 39.7718933248, 40.6215854061, 43.5802635305, 46.8671846643, 44.7361812229, 44.9218496807, 42.5555334128, 38.9724393267, 38.3208281754, 38.3228697221, 34.1742511636, 36.3028928898, 36.8538353131, 35.0982488485, 34.6325983125, 35.4730294559, 36.4374616557, 36.7406967586, 37.253370556, 35.0144023181, 34.7703415116, 32.3564340407, 31.319200939, 27.8411907354, 30.1206135734, 32.165068159, 33.200585906, 36.3110337077, 38.3523053131, 41.0245234881, 44.0176399777, 48.1018712827, 48.6413481561, 46.3792118443, 48.720885009, 48.1651024841, 46.9311889525, 49.2704955987, 48.7819561313, 52.2185796397, 51.8831607765, 55.2371552195, 55.9413926763, 53.6517496057, 54.4772953217, 54.2748921377, 51.848752617, 51.3608680751, 52.4865507734, 52.7636179337, 52.1726890096, 55.3672096376, 56.0972976478, 54.4637483461, 53.6133703098, 53.1712985541, 54.0265425641, 55.7634565489, 54.5096769969, 55.8926032539, 58.0694995448, 56.0534469645, 54.9102995782, 55.8481369293, 55.9720353986, 57.1619054552, 57.8337308384, 57.261471799, 54.5651324505, 54.8487785441, 53.3555991929, 53.8467519794, 51.81255424, 53.3303021639, 53.9344080818, 52.8830548737, 52.69287293, 51.744189314, 50.7609764404, 49.7335987815, 49.6569398989, 49.6938423712, 48.6514842993, 48.8778956164, 45.9099100841, 46.5975962591, 47.9418625841, 46.7127570376, 46.0396229346, 46.670646749, 50.4428817305, 53.094488002, 57.1518572862, 54.2922383885, 52.1426976397, 51.1399077416, 49.8859092241, 51.3027303967, 51.4069892835, 54.2460519984, 52.7325361079, 53.1686555354, 57.5415858633, 58.0711760017, 60.2641434129, 59.5190444897, 60.6810033156, 58.6183119592, 59.9264633604, 61.3128284876, 58.7140573568, 59.3065514253, 60.4961468039, 58.2816946134, 58.5064439032, 59.585595486, 62.8181050404, 60.8438065681, 59.905363601, 61.458224663, 62.6463256602, 64.3433756259, 64.7761315044, 65.9823533761, 67.9171601341, 64.528432919, 64.1376257686, 65.7718805393, 65.3221164152, 65.3230211651, 63.3273775829, 65.0911693371, 65.126061715, 62.7102452675, 60.847373958, 61.4991410393, 62.432284537, 62.1398030232, 60.8136911433, 60.2559561398, 59.0151333726, 59.8615606151, 56.396068951, 56.8863654071, 58.8782086435, 58.2483313497, 55.6489213181, 55.7191011049, 50.9012183084, 50.8439548996, 49.8376594489, 49.4873065723, 48.4471858245, 50.5612103333, 51.5151020609, 52.9467558619, 54.6413888108, 54.0813529211, 54.5480233494, 56.0669110967, 58.1829640752, 59.6616610095, 60.1568237094, 59.2945429911, 60.5660700305, 57.4948310868, 61.293441506, 60.2266959515, 59.3574992038, 58.1270997967, 55.4882036932, 56.9587217291, 58.3641382398, 55.2394997046, 58.1812156491, 60.7135183312, 63.6496432431, 62.3672861501, 63.9529979124, 67.0465929116, 66.6977751528, 68.5222314146, 68.7038354795, 67.0455156956, 68.4271912486, 69.3039685181, 73.0303791664, 72.0227502463, 72.7424528094, 74.7226267021, 78.2809707848, 78.0702074907, 77.3926222174, 78.5477133283, 77.2777665593, 77.7758244404, 77.7198051373, 82.0069690036, 81.9654877981, 81.4670173169, 81.859762936, 82.1404788566, 81.5444729019, 80.5662916968, 82.2062620166, 81.8018008036, 82.1231001906, 80.3520169868, 80.7056042369, 80.7908196452, 80.3123859573, 81.7481281556, 80.5166896617, 80.1535777549, 83.6768136477, 80.6828687483, 82.7557975977, 83.3451475631, 83.2705088883, 82.1674892945, 80.6846709471, 79.9601986432, 81.0161075769, 82.0119798897, 80.0582990579, 81.0563236049, 81.8780614569, 82.9730408312, 82.4736935282, 85.1259021459, 84.9951099718, 86.3350015799, 89.0801788625, 91.1618770961, 92.0245812291, 94.9099153677, 93.8119943765, 93.6088503301, 95.8466004165, 99.8482695865, 100.38147662, 101.917547766, 102.047441065, 100.220468206, 100.623967374, 100.388544515, 102.958306608, 103.205290748, 105.00650426, 105.014336077, 105.410987873, 105.775481044, 107.763394618, 107.678309938, 106.943756839, 108.619593916, 108.763371838, 109.75021844, 110.650073292, 110.574149081, 108.873326265, 109.323247052, 106.088962552, 104.070390529, 105.777122704, 108.108730226, 111.25955063, 113.636501082, 113.716543809, 111.310604446, 107.444630975, 106.66884291, 105.449898824, 103.875445848, 100.161488187, 98.8995295179, 100.328992852, 98.9014877286, 98.382443123, 97.7004225982, 97.902597891, 95.2516621866, 95.0091319337, 98.4128875076, 98.6493974041, 100.200722685, 97.4620362515, 100.497215393, 100.164009774, 100.668133029, 100.831253785, 99.4347053374, 97.4694190789, 94.4923714117, 93.6346465981, 97.1940586901, 99.2745506798, 100.259419403, 100.381714307, 102.318822862, 104.923174657, 105.262017439, 104.89535123, 102.724932504, 106.885434515, 107.296568113, 109.677372477, 110.244997574, 112.972280061, 113.770689702, 112.447973781, 111.929817938, 109.683851439, 109.729777899, 107.543621393, 107.720007956, 108.383666809, 109.884759957, 109.451061005, 107.119968211, 110.880869888, 109.671317908, 111.685571, 112.068129699, 112.238443359, 110.373235439, 107.13981872, 108.460255422, 107.852363793, 107.962763192, 105.434793208, 104.31450059, 105.659450933, 105.209314833, 101.225949442, 101.38626022, 101.72557437, 99.9749693299, 98.4249757103, 97.0726429857, 98.0850669196, 99.4273482715, 96.7433242896, 95.5238646249, 94.1215445115, 95.2690448375, 94.1455902179, 94.5973552822, 91.4508210957, 91.2633566343, 90.1397536743, 90.4380280046, 88.7336234702, 87.7229250192, 88.5849568842, 89.1040602154, 89.4868187862, 87.5479588909, 85.5565688084, 83.8967949143, 80.3271561616, 81.5367721746, 82.0298796131, 82.9367820762, 82.3484956442, 87.0882571274, 87.664675965, 88.6844548417, 88.7573432478, 89.0599003612, 89.4110912413, 87.9541540988, 86.4281991775, 89.5501094016, 89.6336680743, 90.6144708375, 92.7357008268, 94.668797149, 95.4885615438, 94.8313569272, 91.7990584827, 91.9975438029, 94.3027038624, 93.6946814421, 95.4648550995, 96.4435168654, 97.6794207989, 96.6941401676, 96.6412968985, 97.1394201533, 101.778969087, 100.575470447, 102.247049226, 97.6661633661, 98.0712180542, 94.9227695074, 94.6177145991, 94.2624268664, 94.2742431827, 94.6822975593, 98.1888671577, 96.4703330933, 94.7959354647, 97.0898539043, 98.0912343676, 98.4246615228, 98.6251339784, 99.1031270327, 101.237821491, 100.539437022, 101.143722621, 103.171131881, 102.642090109, 99.9188358045, 103.427464292, 102.194604795, 100.241009447, 97.8488669343, 97.7099690515, 95.4514887557, 93.4573210777, 95.0153902399, 95.0912622925, 96.8290883409, 97.0865910729, 98.4342438514, 99.0261941878, 98.0914537679, 96.4118630687, 96.2441449337, 96.7250885356, 97.8263633513, 102.078578894, 102.358153173, 101.260322329, 100.253639556, 100.09962594, 96.4704670312, 93.3844772478, 93.4465866379, 91.9877303052, 95.1081306581, 96.2118417964, 97.8692485043, 95.6187344165, 94.5624422428, 92.6951390502, 94.7674810825, 93.8314145597, 92.7782697925, 93.3318849959, 92.1822359831, 92.5449501278, 91.4621320935, 89.1184249619, 87.6884074041, 87.5479230861, 88.6184233703, 89.8936065288, 88.3976997364, 87.6289445027, 88.1619767514, 86.9260956198, 86.8496457434, 86.8352328661, 89.4041620719, 88.8870714697, 87.2628431943, 83.4868902306, 82.0681940604, 81.9235987646, 79.9072468464, 79.720871665, 80.7452985326, 80.5317605669, 81.6294487468, 81.0016427656, 79.7308619627, 77.7413311474, 79.5356548694, 75.2984617463, 72.8950525578, 73.8448490243, 73.0749368338, 73.6608636764, 70.3327246889, 72.4464412351, 70.2435433491, 67.5560806982, 67.0133581711, 69.5200988351, 70.5016600707, 69.6441177446, 68.8142210831, 70.9338888156, 67.84331135), diff --git a/test-published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt b/test-published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt index f726df55dc5b..d397c9d02be3 100644 --- a/test-published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt +++ b/test-published/api-docs/chart-types/3d-scatter/simple-3d-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(-0.858927762914, 0.759678101763, 1.6178351592, 1.87830282065, 0.809847170863, 0.268555760283, 2.30810416239, 0.282888011561, 1.75225768912, -0.0858584825427, -0.664926809221, -0.548288732801, 0.935236191463, -1.02421230779, 0.644847152488, 0.0793568349027, 0.376719868063, 0.462240513173, 0.973028103151, -0.114269985428, -0.033940830122, 0.811377010177, 0.173216762098, 1.13050378279, 0.553484661867, 0.440805181912, 0.148990837935, -0.493219257424, -0.40049507589, 0.624356936003, -1.34714271255, -1.33109047124, 0.580407752205, 1.31228189798, 1.16625104479, 0.372976659017, 0.33595979347, -0.791263889586, 2.95679346521, -1.44635853127, 0.802371733213, 2.69594639721, -1.80577115012, -0.585443782182, 1.74147234306, 0.0551660441537, 0.218995819792, 1.56944606413, -0.947713487167, 0.21531704968, 0.283274664607, -1.03433101051, 0.427567525355, -0.29651815918, 1.71666047058, -0.0124001672318, 1.25319441867, -0.94507428328, 3.09647680347, -0.287215190821, 1.45119951375, 1.69922212558, 2.69850672147, -0.0289175063451, 1.21716676273, 2.46646810578, -0.112577515009, 2.38520630018, -0.894226360843, 1.38400031789, -0.769002241532, 1.92561814496, -0.296718019513, -0.718227769059, 0.208753284183, 2.52782757368, 1.9361555668, -0.754003559785, 2.14063096306, 0.779847993597, 0.502973381133, 0.798184138778, -0.401231296439, -0.758368669985, 0.44767244853, -0.188431184199, 1.79497692012, -0.625306719407, -0.615724277639, -2.06735998972, 1.06474596869, -0.128866941481, -0.452517179795, 0.0200862867444, 0.421379325457, -1.0878312666, 3.09022738748, 0.0277330763081, -1.59553907708, 3.02447398417, 0.742938898095, -0.0669009525229, 1.11353510686, 0.349691325914, 1.27464565235, -0.849660878806, -0.718772836336, 1.4081636604, -0.753321894364, 2.51796096719, 0.623461242752, 2.47835521332, -1.53642964244, 0.159871420819, -0.395698796269, -1.11679091882, 0.448245168587, 1.55502024702, -0.343749743664, 0.724058499487, -0.686090692568, 1.32581077832, 1.25616394504, -0.484964890584, -0.460271614238, -0.841487231275, -1.36820594572, 0.90824794356, 0.67051351088, 0.0212121330424, -1.12267184074, 2.52453987516, 0.0849019587581, 1.7420758675, -1.0027007829, 1.9055764672, -2.14654088662, -1.52908707279, -0.640644116837, 1.67643856705, 2.25602889401, 1.83134219276, -1.72010278768, 2.74926371156, -1.74782046385, 2.00838277274, 2.77375902631, -0.809602500716, 0.444810361123, -0.862546878298, 1.9793213189, -0.0161110137557, -0.567182783683, -0.0148935369382, 1.29136015936, -0.447459511967, 2.01203302064, 3.65266094596, 3.51134603014, -2.60770981104, 2.24846069441, 0.966890489218, -0.880918847259, 1.56450901864, 3.23166864465, -1.18467635833, -1.64698877553, 1.0999706466, 1.37462800435, 0.0355155515869, 1.68461213782, 2.80665024521, 0.934728277386, 0.102742523087, -0.142481480764, -0.984400134993, 2.5408834026, -2.64514400656, 0.193597356785, -1.58222850849, 3.09908565915, 3.5367959438, 2.82880122941, 2.71306112901, 1.517531762, -1.60549123973, 2.06582826664, 0.415256545358, 0.802958397668, -1.83345209613, 2.89468274141, 1.08320823732, 1.10851585661, 2.35824916881, -0.0895465416277, 2.07564212248, -0.540300516929, -2.51315675561, 2.56087015306, -1.68477549995, 0.159617997414, -0.0096568387549, 2.38189315442, -1.77047179409, 0.823566144949, 2.19725973561, -2.30700971811, -2.68543507278, -2.09356427203, -1.62280421582, 3.5241757433, 0.982110745145, -1.44340169645, -3.1226208118, -1.79323527952, 2.37436121305, 1.41047281102, 3.94967038564, 0.890115902236, 1.29209752987, 0.157511695483, 2.03596315641, -0.239538147332, 0.667456763767, 1.46034222522, 1.42065240797, 2.40161812211, 2.81953536735, 3.1390491576, -0.809424460922, -0.613515342979, -2.37597124604, -0.102454450897, 1.10278080375, 1.35979036965, 1.43984057107, -1.32602471093, 0.232247238328, 2.22467629273, 1.32827158852, -0.592266211766, -2.2764609507, 0.377205738192, 0.353227718086, 1.93656584033, 1.9508653414, 1.38500252215, 2.73544615079, 1.1370189711, 1.87643818509, 0.935931377767, 0.147656457965, 0.707402783465, -2.27034360469, -0.21549529712, 1.84701270869, -1.59166018736, -0.0899279120141, -1.76780153178, 1.63174609695, -0.928495296123, 3.19960649446, 2.33011909541, 2.39706138327, 1.01785296718, 0.658242617297, 2.66337911939, -0.813082076212, -1.43347515326, -1.81743262746, -1.23249869238, 1.70358645138, 2.34830652544, -0.0312840792134, 0.556217873043, -2.09254676742, 2.20147446573, 2.26118757695, -0.13608553051, -1.17785812512, 3.00970271063, -2.38857976504, 1.60700925067, -0.31031752125, -0.0530433912159, -1.92633563006, -0.792793130711, 0.294658223896, -1.07807475309, 1.77597120332, 2.30471864914, 0.735157921792, 0.30693398648, 3.00091538111, -0.371353401071, -2.71001705707, -0.341155396452, 0.522613457871, -1.93085965936, 2.79478499215, -0.313871029869, 2.12051092648, 3.00141389588, -0.00535802781989, -2.0777556239, 0.717521153879, -1.96895226957, -0.123500384528, 3.82298949539, 2.64457625817, 0.851122568224, -0.433454261117, 1.32732171987, 2.92422971474, 1.60461821114, -1.57943427664, -0.471902204405, -1.71156258393, 3.66543091282, -0.79395254324, 2.77030702295, 3.92417977108, 0.178819511546, 0.627177838003, -0.107267457054, 1.03713811579, 0.852699587768, -0.710137602566, 2.59665240922, 3.51028489298, -0.0302576844334, -1.57247826785, -0.268406153014, -0.238958380149, 0.386329291232, 2.75650827998, 2.65374593439, 3.32308579008, 2.63394725262, -2.31611284957, 0.792368481101, 1.75250198315, -2.0863833566, -0.580824210252, -2.37313764374, 3.15809501972, 0.119166412194, -0.408202532592, -1.40792875754, 1.73369421215, 0.853135858155, 1.76013699958, -0.470156083617, 1.60540076601, 1.91131704998, 0.800832273894, 0.877989562347, 1.02142060122, 0.775024681003, -1.03816091377, -0.67240219194, -2.08830184156, 2.07126969944, 0.589118614708, -2.43246352324, -1.775012952, 0.338603801466, -1.36587825694, -1.01785435861, -0.251202362196, 0.240488465005, 3.37427125017, -0.427744032382, -0.0160438693411, -2.12360820093, -0.0136300160675, 1.6457583931, -0.398113568909, 2.53618579496, 1.99732502068, 3.03757893274, -1.542951805, 3.29032020554, 0.408597217183, -0.784512643074, 1.92727780511, 1.53237207726, -1.21123169572, -0.533099191238, -0.648573260417, -0.413723569224, 1.70961621052, -0.438637351355, 1.28189816388, -1.00815357379, -0.355421335745, 2.31287621579, 1.04410395208, 0.712592911641, -0.706727456723, -1.8960033809, 1.67320401337, 1.80477328126, -0.24666442478, -0.16108368822, -1.56370587204, 2.06107198416, -0.195931176216, 0.177288395826, -1.20729352235, 0.294135054063, 1.09730702538, 0.203291908383, -0.965609543176, 3.29553773891, -2.74479491047, -1.53148234693, 0.182945314599, 2.79105526804, 3.00847199565, 0.371686924352, -1.4676453197, -1.36196230158, -2.25640972442, -1.62081764515, 0.819163569299, -1.87813351684, 3.64231404007, -1.81342504306, -2.67452608479, -3.09528194535, -2.43224150927, 2.33231557534, 0.926829077971, -1.7157590476, -0.346085084905, -0.976704966679, 0.174122242602, -0.709571668723, -0.814946854616, -1.18937177368, 3.22661237692, 1.76487935387, 4.02168707708, 1.54253760561, 3.0684272825, 1.0766193676, 4.15039042142, -3.89394265607, -0.556788955049, 1.13104626799, -1.55159845843, -0.198247541327, -2.76365241834, -0.0437864059995, -1.1073471829, -2.22224941621, 2.18238487631, -1.88335356177, -1.44496819666, 1.15761562632, 0.601653653672, -1.52132522619, 3.72553746998, 3.34108341777, -1.76822827956, 2.77883375288, -1.83153667401, -1.99139499711, 1.97110727621, 3.61045236073, 1.78405333363, -3.07193793839, 3.59599391471, 2.86251718553, 0.756925211083, 3.43366242359, -0.713059647626, 3.34974067292, 1.06337642201, 0.0538352092257, -1.18727079658, -2.58573940196, 3.50750797235, -4.19551857748, 0.866834312384, 4.30363965594, 4.42541330197, 3.61456171231, -1.65607835843, 3.66914469514, -0.972301726054, 0.599171933545, 2.67894428534, 5.10664252733, -3.14997643882, 1.19941589947, -0.879386256104, -0.0259763360274, 4.09510806754, 3.43126239346, -1.18332293012, -3.11943368535, -0.643549187597, 0.123823429761, -2.77618764727, -2.08034348596, -1.12432451465, 0.799946742559, 0.638328163648, -1.29251792259, -2.0542306177, 3.22065702648, -2.46356134508, 3.37201979384, 2.50438240253, 3.97282056193, 2.71881280561, -2.9158864435, -3.28019303156, -3.10078035913, -0.734835442796, 0.959373739046, 1.1559574549, 2.39594583166, 3.13623943927, 3.37614503798, 2.75058031051, 1.50860950621, 1.46241227783, 3.45922400833, 4.72631615213, -3.43100652587, -1.72221955634, -0.975194108385, 4.20553757114, -2.62125819173, -1.13312733822, 1.88730868047, 1.6541632978, -2.59610704346, 1.15081366305, -1.03630719384, 3.45788622168, 0.639681868146, 2.82020884316, 2.37564446769, 3.27115765369, -1.26343773125, 1.45473962263, 0.00286176428154, 3.27535731623, -1.17140282966, 3.09924196837, 3.03267877809, 1.78511499261, -0.778420535471, -0.134379090833, 2.63877606224, 0.18277247683, -0.499556478565, 2.5813620685, 4.31823094167, 2.36684231859, 4.69734629954, 0.946046667237, 2.79465226142, 2.35736099073, 2.45848802124, 2.68120416047, 4.69362553102, 0.638104883716, 3.53346501409, -1.44606032139, -2.56104725937, 0.576801496142, 1.89699102685, -1.6347767405, -1.77764899257, -0.561879823945, 1.86177406036, 1.63059355365, 3.26898808078, 3.3389060153, -1.34368099274, -0.758128145199, -1.53955573605, -1.5992941923, 1.45428245865, 2.2232530871, 1.45384089708, -1.25036293191, 1.88168443914, 2.69946860476, -0.465826890784, 2.62221137577, 3.22855398135, 2.50436997995, 2.51680081341, 1.49805627454, 1.53685767869, -1.06190548994, 3.09158772759, 3.83825570337, 3.01739920313, 2.70321852027, -0.85718483251, 3.00647974554, -0.924208904843, 3.53032679291, 0.947653719512, 3.39073210706, -1.73332260474, -0.625987415303, 0.185971453854, 3.58225086672, 2.43555668298, 2.24681830569, 3.10745658206, -0.439852447281, 1.43443295631, -0.602383078451, 1.88437057044, 3.00661254036, 4.30151619719, 1.88411811149, 0.150312286689, -3.27525815778, 2.67269037181, -0.263319377466, -1.97676943299, 1.70079582215, 1.2141806404, 2.77435948268, -1.51565303988, 5.00882394354, 2.91914631481, 0.457616187688, -0.209673742902, 4.43503073188, 1.19247934425, -0.456937585971, -2.07779156963, 0.380014366574, -1.36371948682, 4.52062607666, -2.69784942812, -1.69672924589, 1.87215121045, 4.223311628, 0.410468836593, 3.79334797798, 3.24742241822, 4.01385774235, -1.90429254872, 1.42196218064, -0.0471062840955, 0.449089781812, -1.29162743202, 2.01299388237, -2.86555061708, 1.10082849539, 0.354190595237, 2.04126976047, -0.104602014704, 4.49224046065, 2.48638342595, 1.19547671213, 3.12986698547, 0.846866021451, -0.497774446696, 0.063062926305, -0.15960487312, 0.25714897901, 0.0292483892514, 3.09038076845, 3.51875485458, 0.327628239814, 4.7135527499, -2.57824908233, 1.73197959972, 2.68889806146, -2.86993925102, -2.97131945271, -1.24845796036, 2.74591831895, 1.93856886144, -0.046903689675, -2.5991560384, 0.386753042481, 2.90890220201, -3.597770169, -3.245774372, 3.14940672678, -2.14693412708, 1.87480014828, 2.20562206425, -2.43906562979, 4.73708106607, 0.0309644739696, 3.87143205026, 2.72726582774, 1.8514373677, 3.15180199391, 2.62604087016, -3.76009831969, -2.38328428959, -0.877221152294, -1.48383897363, 1.75965659589, 2.96591035733, 0.313303279724, -2.83574504618, 0.0800642694519, 3.89167665324, 1.3664003396, -1.71124623126, 3.56450068027, 2.4155653456, -1.43528702514, 3.22765930743, 2.38873811316, 2.02046011943, -1.19882933864, 2.6406229992, -3.2089185479, 2.95026663271, -3.63471156089, -0.649521388966, 1.6117139495, -2.72401626101, -1.96593960914, 2.95105213714, 3.64012858366, 1.54231069852, 3.73179413064, -3.34481308024, -2.22253695946, 1.99122616076, 0.353287297963, -2.79890068692, -1.57167851523, 3.07573913687, 3.4117374699, 0.610616324035, 2.83773059793, -2.19347305082, 0.397884857293, -0.974986607405, 3.24993538791, -0.940966176035, 4.80741215787, 2.82353674993, 4.71588788786, -3.12876280414, 1.43073266825, -0.203993415234, 0.28026234191, -1.55925520286, 4.9552108066, 0.352842398051, -2.49854848981, -0.132552008728, 3.34892003862, 3.05787364212, -1.63091690016, -0.184162785943, 2.68858103873, -1.01947817658, 1.0048399553, 5.22021824018, -0.39720547266, -1.06126498685, -1.9202336148, 0.811020545502, 3.20457894589, -1.33436117346, -1.98105017508, 2.15422964012, 0.451933250755, 4.34961179361, 3.26326396146, 1.17833104348, -3.51756161678, -0.288732549541, 0.893291484464, 3.30353990004, -2.5809991132, 4.09410011471, -1.98888457952, -4.05687907192, -1.18836640137, 1.305382615, 1.65696996364, 1.78966738959, 3.22097538395, 0.755757112515, -0.739925658487, -0.567695467429, 0.848485462153, 1.15101462962, -2.71239439449, 2.86664632354, 0.488249645374, 0.840652578165, -1.42297525428, -0.0755520122848, 5.17287437449, -0.553138434327, -2.64199082737, 0.180841391438, 2.4632414642, -0.232470420282, 4.97254523671, 0.0810415357898, -0.140018194457, 2.56562591725, 0.495424299718, 0.312675639707, 1.93012951594, -2.55568382821, 2.70514247648, -2.79877255855, 4.98854819708, 3.46584615796, -3.06454651661, -0.853701409499, -2.71091365291, -3.57037359194, 3.47088456285, 2.1418569755, -2.68047005472, 3.42043757672, -3.26604803727, 5.33485694131, -0.239895117086, 3.86668928799, 1.24405788081, 1.74723638513, 4.62206564375, -2.38010220025, 2.27356996649, -2.97287257056, -1.4089170725, 1.65998739322, -1.39009119576, 0.768328122511, -1.27493995859, 4.94251197134, 3.98512179771, -0.421039544483, -2.10169947094, 4.55426363574, -0.3367959076, -2.45387540477, 0.843639703699, 3.81233632447, -2.57883266647, -1.3074357814, -0.920415603475, 2.6887645862, -2.76330018616, -2.30186128816, -1.27577642285, -2.19398840759, -0.225242794663, -3.14661318937, 4.15105124753, 0.686238095301, -4.17498322472, -2.39059448319, 0.414929579683, 2.28813450043, 1.83083442469, 0.889450770708, 3.74095175878, -1.94875735935, -4.09874879026, -3.84327926312, 0.74483574938, 3.51170974605, -1.40472903196, 3.07073768303, 3.22055365466, 0.833381130627, 3.39980309861, -0.847013048474, 3.05119077118, -3.12787881198, -0.760331290229, 2.61407497301, -2.38893710234, -3.5566008536, 1.12853805186, -1.47864285073, -0.0767897548524, 4.39411971208, -1.68671668554, -2.66519872519, -2.91712822838, -3.96703065969, 0.488548858866, 2.1308958141, 4.40421079018, -2.54831394444, 2.23456494882, 0.334495725258, 3.99170719064, 0.376688898215, 3.05311987133, -2.261655463, 0.533432111175, -0.384993258895, 1.63706552778, -3.58766606769, -1.23545000999, -2.72899361933, 4.23120961538, -1.32779512678, 2.60724223257, -2.32247877958, 3.31602718913, 2.46547035899, 0.822486751233, -0.0912452696003, -1.14762193636, -2.03760232, -0.196450065178, -0.424021897756, 0.141686829758, -2.05886457452, 1.20232620207, 1.77289886522, 0.760238632869, -0.470403534897, 1.77288860806, -0.699140309353, 1.53081692396, -2.22262482935, 1.61991359828), y = c(0.121607854144, 1.67084933716, 0.671663712413, 0.985942302305, -0.115243084349, 1.33798679839, -0.179934882508, 0.540179686408, 0.21604728214, -0.0302080518868, 0.919135827055, -0.528565328027, 1.83941068702, 1.04539009448, -1.44498718643, 0.561038457617, 0.650872400394, 0.263067896694, -0.0170236540958, -1.08098614985, -1.35846617243, 0.448653432745, -1.21301578164, 0.941622525938, 1.18752171196, 1.07214906289, 0.219255727314, -0.239453747229, -0.988446275058, 0.133817727241, 1.65448647859, 1.27120897034, -1.08102680178, -0.419799996933, -0.447175179695, 0.118451435332, -0.0223066375921, -0.425602183962, -0.411493590312, -0.719385329248, 0.362414702244, 0.743830525207, 2.8060588424, -1.57681491722, 1.97829504919, -0.485791255905, -0.471516165045, -0.970200509502, 0.144654488986, -1.15546801186, -0.798790321471, 1.07185451408, -1.69763724423, -0.369829035766, -2.05203667702, -0.42144791923, 2.43864496915, -0.458928693116, 0.465013834345, 1.77172437663, -0.724872420252, 2.17648511143, -0.353001037496, 1.5056927257, 2.22417953478, 0.160718378447, 2.31296740201, -0.447060221904, -1.66314923766, 0.668404078716, 0.0834804524138, 0.134054278172, -1.64041151051, -0.0446653430143, -1.85302061002, -0.055267065248, 0.433094145689, 0.207978848661, -1.14878803813, -1.45781494301, -0.064439571961, -1.0163306583, 0.798775792381, 0.00880232461799, -0.211813436686, 1.82388983829, -1.16030310811, 0.810521891093, -2.16242603901, 1.1679034155, 1.9541641911, 0.652116107186, -0.834781733259, 0.415037109363, -0.778352628036, 2.44136516868, 0.657706277588, 1.62865475296, -0.238519154745, 0.151130784619, -1.68728669985, 1.97688496932, -1.47585838602, 0.860510349359, 0.896068671547, 0.920159889825, 1.89972094697, 2.56584041836, -0.688163345777, -0.178416173435, 0.177540044816, -1.83550919258, 0.884131037009, -1.1069093154, 2.49564687297, 2.41780844678, 1.6496380009, 0.0939622419912, 2.3674353785, -0.562816442402, -0.787860985582, 1.92558886265, 0.656021607091, -0.415843909164, -0.317129135628, 1.3631950381, -0.561539085395, 2.86731519479, 3.17567905078, -1.3687919662, -1.32323208155, 2.54590081887, 2.12704387311, 1.12044858175, 0.252462895574, 1.94890491532, 1.57490305238, -0.0473029127911, 1.77634018005, 0.128497826721, -1.88517818924, -0.717504553502, 1.28840309825, 0.383652831292, 2.25590690211, 0.93223429849, -0.0341076218033, -1.01054577672, 1.50987358635, 0.746585134349, 0.307968671762, 1.23058758593, 1.9692652804, 0.248744359861, -1.2084380369, -0.225550866237, -1.5861365356, 2.16296568286, 2.03894981964, -0.895558123918, 1.15146418484, 2.64278967201, 1.35264518502, 1.18194665116, 0.53094746942, 3.01937676225, 1.68529523835, 1.33819808265, -2.8331143038, -2.57705116854, 2.32021306219, 0.175279649202, -0.356185819119, -1.9591778066, 1.13065086752, -1.56935798452, 3.1670421582, 1.61896699201, 1.09263462668, 0.0482791434793, -0.350494810271, 0.0014084887222, -0.742278663661, -2.17862596787, -2.62161932028, 3.11618531322, 2.37950117147, -0.718568795178, -1.29239491705, 1.90269085083, 0.12419299627, 3.1817054745, -1.79084188798, -0.00462248910356, -0.292003601142, -2.33411285703, 1.8311289033, -0.659019026481, -3.06465418494, -1.72699833877, 0.623895997609, 0.964604682688, -1.17267297316, 1.36606191851, -2.5124610889, -2.24661973089, 0.103155493127, -0.706910194866, 0.919144647415, -1.32474679696, 1.33655407411, -1.80523805391, -1.88725081372, -0.924335768255, 2.79661974102, -3.21111800615, -1.88948492699, 0.304624750915, 3.71094541791, -2.00950950061, -0.569909561044, 1.15500957578, -1.79929518892, 2.48204111604, 2.26863592193, -0.973650233129, 1.952552287, -2.29577767969, 0.54210133198, 1.11547757976, -0.696655045387, 2.06145649187, -2.46119701793, 3.80634954725, -1.07600155641, 0.438317176631, -2.66662681909, 0.873893505871, 1.88148221713, -1.68666320243, -2.93082701082, -0.66587836813, -0.379505158541, 0.923318537067, 2.29127874359, 0.143183237746, 1.5905466156, -0.899888623163, 2.05130329338, -0.671698081452, -1.68016137097, -3.23663705689, 3.46482661893, -0.197924380248, 2.48635224049, -1.27706830948, -1.28252313085, -0.471692805744, 2.41892543964, 2.65313689305, 3.03822264522, 2.7242866612, -0.714929697407, 3.33362854335, -2.30934959692, -1.83310803594, 0.765825046604, 1.86259136352, 1.84340126199, 0.066928876837, 2.58835725059, 0.190521212875, 2.10942396499, 1.91229271706, 1.19828956083, 1.24679013862, 0.611546344321, 2.34548242529, 0.995190558349, 1.96577773161, -2.08974327291, 2.07238661862, 2.91018803325, 0.364974818825, -0.983223879366, 2.05418544356, 2.56109756947, -1.70757036807, 3.15973882953, -2.45912545626, -0.224478489789, -2.44498720845, -1.44215962978, 0.78959450184, 2.53080365101, -0.363200536383, -2.0753814119, -1.91070443665, 2.73339279506, 2.46060731393, 2.86090597158, -1.84630750687, 0.903615083582, -1.40826192436, 0.549334826511, -1.65220301956, -1.29777869193, -1.08696456287, 1.82185920613, 1.81559912519, 3.18556676071, 3.43458671581, 2.5690208932, -0.962265759914, 0.763622195497, -0.617644824792, -2.65494681174, 2.38536559688, -1.55543225673, 3.5992319811, -1.03227842968, 1.50274924648, -2.32315771578, 1.96034349421, -1.00897889333, -1.47073716306, -1.98275657497, 0.691212401727, 0.34270071436, -1.05852250263, 1.62763182045, -0.70047452051, -0.64995078965, 0.907541495228, -3.08961344428, -0.957046919508, -1.63436385841, 1.37542935641, 2.13160573026, 2.09713579492, -0.178963130461, 3.7808023883, -1.69045693671, -1.81839436406, -1.89257982843, -0.335618158888, 2.87002044082, 2.78471161827, -0.351428520244, -1.35791203113, -2.14537756089, -1.19683659192, -1.63746796568, 2.74364053422, 1.03484792337, 2.18180306044, 0.103485002054, 3.82422430167, 1.00929131385, 3.49727764311, 4.28613749522, -0.817613992786, -0.880418143716, 3.85273647076, -0.00618117695497, -1.1888154935, 1.73515143721, 3.34958074347, 1.1879464924, -1.71189363197, -2.54022218359, -0.13431048668, -1.52101048407, -1.58730504014, 1.24472758876, -0.338289617649, -0.874442018513, 2.07223932264, 1.72051207809, -2.12536681066, 0.295206108648, 0.293117689872, -1.06857498222, 2.19877611094, -1.81418769029, 0.285760393454, 3.27697504568, 0.666653546717, 2.66071291844, 0.695046743423, -0.789747986515, 0.547695081954, -0.639106617318, 1.66996189547, -0.629234432994, -0.23834034469, 2.15542769909, -2.53070914088, -2.02262128572, -2.57856825145, 1.41017653116, -0.773581576526, 1.22098816689, -1.58524778003, 2.73188138203, 0.831344514018, -0.584843587996, -1.29173408505, 3.49757369264, 2.10743762122, 0.602034298414, 0.314697478713, -0.400916910382, -2.70485284498, 0.439331098993, 0.807039541332, -1.39485511653, -0.524608002137, 3.03590359965, 0.0093547861141, -1.49087213401, -0.361708387287, 2.24556831163, 1.32734504569, 0.983899591459, -2.77267035972, -2.49144692929, -0.999979895567, -0.138972802474, -0.258032068016, 1.32169276629, 0.262406415489, 0.948879731237, -1.3906201365, -0.74762566112, -2.79167189741, -0.993087136886, -0.902882610722, 4.03671196038, 0.375339630687, 3.23270001679, 3.2220328974, -1.65049579195, 2.71718050756, -2.84561345561, 2.24437960675, 1.92110887802, -0.135949482463, 0.969329080061, 3.40310909301, 2.27056309586, 0.287019140639, -3.92371251739, -0.613027649653, 4.63530437357, -3.03691654758, 3.7290773576, 3.32652482933, 2.19424902473, 3.34983950668, 0.362817105536, 0.937644553495, 3.27851469419, -0.753358489457, -0.727707123599, -1.82244545634, 1.88706752142, 0.4973006872, -2.4282196345, -3.57722926778, -0.894645900311, 2.86251747702, 2.7669723099, 2.66070031333, 2.99494562263, 3.58284381583, -2.44132359243, -1.60823244437, 4.20987914726, -3.1306850209, -1.97107428152, -0.932311705628, 2.73009698728, 1.59870247997, 0.19311438639, -3.77549186608, 0.648456103525, 0.19512704998, -1.52111388192, 1.85768194125, 2.26564997362, 4.88431193817, -3.3106544245, 2.62459772853, 0.069296213103, -2.06085193189, 2.18708474125, -2.43226165837, 2.95059187962, 1.6460456297, 3.51819671076, 3.72943541849, 2.86285798827, 3.23625293425, -2.16838870657, 0.45327716894, 2.88747261513, -3.04184428594, -1.42037816925, 2.48466476347, 0.507623391179, -0.319005680045, -2.38903579485, 2.70985012877, -1.97937944782, 2.88348295059, 2.56273024991, 0.695070536066, 0.303954419046, -1.74464617628, 0.67091254462, 2.80163249281, -2.19841138132, 1.38679057717, -3.92173917478, -0.558198708566, 2.12103973008, 4.33330137606, 1.46791551249, -0.753515998053, -1.01264727217, 1.44487408365, -0.622023210952, 3.6554034387, -2.46987845989, 2.90565474881, 1.64405216979, -0.544825497445, 3.31155737483, 0.0169021173894, -0.276520606989, 0.846162518059, -3.34829191959, -0.628786779293, 1.95080928741, -1.57551180474, -2.05251867595, 1.67514739912, 2.58462562798, -2.0558097119, -1.64641872793, 2.87672578958, -1.77128152813, 2.43068052395, 1.22266020633, 3.87716255777, 2.64604125185, 4.87667907736, -0.504560787152, -4.24451984003, 1.08596790207, 1.4620580663, 0.0820969928967, -0.0275864508729, 2.74256756408, 1.31098950432, -3.38661928623, 3.04282516092, 3.15222031252, 0.938879155635, -0.6335720686, -0.621117028802, -0.525375647076, -0.558126656454, 2.09189005781, -2.62306311351, 4.54944655202, 2.57757848221, 0.683620641343, 3.77784520018, 2.44466027538, 3.85192842572, -1.20363077732, -0.031170467206, 2.91170643197, -1.5297903712, 0.47102647727, 3.0499989123, -0.64708758323, 3.55171960681, -1.46289714211, -2.25888931902, -0.298758088429, -0.872198140117, 3.79007745699, 3.18920633663, 3.19376269711, 1.02108062855, -2.45049413694, 4.04590997874, 2.85071526397, 2.76251046217, 1.03634488219, 1.57933287976, 3.73012130127, 2.46094137504, 2.25734240088, -0.831436705632, -0.729740367769, -0.927130321135, -4.22337915816, 3.88814647998, 2.29541764351, -0.388799340839, 2.84351797784, 3.64596708004, 1.45411725279, 0.729678778858, 3.91079356251, -3.00241658157, 3.95021606505, -3.34657532873, -2.51463115457, 3.15002744496, 0.45889369707, -0.525120024936, 4.7048517062, -1.4432624123, -0.148889600414, 2.85939190951, 4.85780195185, -4.17511071059, 3.38411400271, 1.1075676825, 3.26237689907, 0.878111925584, -1.41552344964, -3.08270987167, 4.27867965084, 0.410610098969, -2.39902329281, 3.19205750317, 1.32299783959, 3.45666991208, -1.83125735979, 0.099271997232, -0.806466305994, -0.766210518842, 4.77198806046, 1.30314573108, -3.48272099798, 1.5335374746, 0.289421719969, 0.804861901663, 2.00252924034, 3.13152099914, 4.83297593915, 1.44038424807, 3.30941865486, -3.87367098374, 2.70339219681, 2.22028008944, 4.22295753737, 0.534301786928, 1.37133154995, -1.2036954636, 0.483074819481, 4.28027976877, 0.572397285073, 4.58383664771, 3.35540744581, 1.79749541626, -1.4991794488, -3.09687473587, 0.807227312823, 1.5062322928, 2.40325240992, 1.14547800212, 0.0466001419489, 3.237473284, -2.06181068528, 0.0403678177779, -2.69559776458, -2.04781416022, 1.18762584977, -1.97106128261, -2.24423610216, 3.49291188911, -0.275531621896, 4.0838136761, 1.58879039841, -0.775837025422, -0.794811987219, -0.517636225882, 0.511060173337, 0.93516735872, -0.0990338703974, 1.19890835086, 1.41309766327, -3.97061024016, 0.0898869027245, -1.04147456174, -2.39853783716, 1.98072633203, -2.6897612745, 2.06860375824, 3.71613764059, -2.78091622317, -1.96246989454, 4.88462462942, -2.45747094755, -3.91528037882, 2.11465423656, -2.07248473641, -0.53221327981, 3.98671332582, 4.82734673233, 4.66633570953, -1.68118224522, -0.457808793946, 1.51059520262, -1.98686969621, -1.61383725104, 4.0353200723, 0.802342231662, -2.95394558654, -0.0449895867233, 0.459878001801, 3.66990855098, -3.08437410064, 1.02121946308, -2.19449096315, 2.51305522906, 0.707811391663, -1.35871775798, 4.54906223313, 1.20460936587, 4.07379796852, 1.7235968393, 1.56533250359, 2.18814303658, 2.45487961784, -0.575724606107, 2.96545054235, -3.67099884214, 2.51242739647, -3.03943805729, 4.26374450536, 2.52120581706, -0.446953220829, 2.74594656254, -1.08293970514, 1.63654780736, -0.809812659437, 1.84476846452, -2.79219306354, -3.26053483042, 3.47432677713, -1.2224782126, -1.0892799674, -2.491241097, 1.7183533287, -2.98126449713, -0.872857817996, 0.792367206197, 2.7369490873, 4.37658292646, 1.34983597988, 3.06321911481, 4.36159802641, 0.151298090907, -0.583547405996, 3.32520204194, 3.94157059584, -0.566033708164, 1.70987813843, 4.04046420835, 4.40178151817, 2.47645649564, 3.22617204062, 2.55300433663, -1.14876824354, 1.24099402005, -0.501838007371, -2.15117053508, 1.37046375286, -0.394539839471, 3.47078760836, 1.68510598522, 1.46665432482, -1.66759281879, 3.14813284502, -2.69651205193, 3.22185336291, 1.86009959765, -2.37130457724, -3.739422063, 3.34909140766, 3.73453462414, 2.21246314169, -2.3418258197, -2.49216835089, 3.59744160687, -0.218876979998, 1.05607698819, 1.90898929982, -1.06501287706, 1.73034273392, 3.17206464858, 0.548205011961, 3.53892331784, 2.96362034509, -1.49124343255, 1.41607917491, 1.54911376141, 3.00313909702, -2.31995443697, 4.071719803, 3.58259723555, 2.35198746539, 1.65145143655, -0.548535047384, -0.254091263446, -0.0720228196517, 1.29201223324, -0.0838480553573, 0.343210130505, -3.01255059507, -2.05562878556, -1.53259999404, -2.15692124072, 0.769769077393, 1.71456813051, 1.29163122718, 0.301343421628, 4.24309644164, 0.335769114692, -4.30616929733, 1.31560783864, 1.05766080757, -0.37508205115, 1.48606207225, -0.355299585784, -2.31251305215, 0.346650567467, 0.748478884534, 0.594598301046, -2.73527603644, -1.4407262667, -0.717418442303, -2.03042015581, 3.72959178971, -0.168629385404, 1.67695866427, -1.50951330707, -3.54411000166, 2.29796061702, -0.0814058504927, -1.37135620095, -0.671215916855, -1.34090093101, -0.493347300277, 1.05428488077, -0.400449287458, 3.68584786982, 0.77527866322, 2.54592679455, 0.743377350722, 4.83908723893, 1.15485643352, 2.82969262574, -3.16438123743, -2.61651584047, -3.39350598009, -2.16905660938, 2.48992274585, 3.15640932997, 2.13230359296, 0.693529521205, 3.94717131009, 0.6734715982, 0.0225067418109, -0.261518256972, 3.40041873479, 2.34424102281, 2.8342932616, 0.918540278944, 3.98005402422, -0.385692323103, -2.4602077064, -2.33847358675, 2.94436912602, -1.65625728757, 0.5925775848, -1.35320802106, 0.11954012745, -0.0289756364643, 3.72075823961, 0.376181733787, 3.02085783287, 2.30504581286, 0.40908892533, -3.25940588031, 2.54793312026, -0.914592624221, 3.0192954182, 5.33497496733, -0.351297413737, 4.12697161654, 0.898976282488, 2.25027996096, 2.50367000659, -0.538810085533, 3.50181395434, -0.193121531684, -3.38428133063, -2.93081554241, -1.88367363938, 4.80643294125, 0.215757649249, 0.634013225995, -0.635834474133, -1.46403780153, -3.0931203374, -3.74503199648, 1.23037569327, 3.11931414173, 0.705759216663, -3.45954184381, -2.46630377667, -3.41246174104, -2.46898758813, -1.78950443066, -1.80116629275, -0.870152865968, -0.353916491529, 2.83889679237, -0.828160399074, -0.722566038156, -3.13706894078), diff --git a/test-published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt b/test-published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt index 3d60f78a91e4..5ccb9fe81768 100644 --- a/test-published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt +++ b/test-published/api-docs/chart-types/3d-surface/elevations-3d-surface/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(27.80985, 49.61936, 83.08067, 116.6632, 130.414, 150.7206, 220.1871, 156.1536, 148.6416, 203.7845, 206.0386, 107.1618, 68.36975, 45.3359, 49.96142, 21.89279, 17.02552, 11.74317, 14.75226, 13.6671, 5.677561, 3.31234, 1.156517, -0.147662, 27.71966, 48.55022, 65.21374, 95.27666, 116.9964, 133.9056, 152.3412, 151.934, 160.1139, 179.5327, 147.6184, 170.3943, 121.8194, 52.58537, 33.08871, 38.40972, 44.24843, 69.5786, 4.019351, 3.050024, 3.039719, 2.996142, 2.967954, 1.999594, 30.4267, 33.47752, 44.80953, 62.47495, 77.43523, 104.2153, 102.7393, 137.0004, 186.0706, 219.3173, 181.7615, 120.9154, 143.1835, 82.40501, 48.47132, 74.71461, 60.0909, 7.073525, 6.089851, 6.53745, 6.666096, 7.306965, 5.73684, 3.625628, 16.66549, 30.1086, 39.96952, 44.12225, 59.57512, 77.56929, 106.8925, 166.5539, 175.2381, 185.2815, 154.5056, 83.0433, 62.61732, 62.33167, 60.55916, 55.92124, 15.17284, 8.248324, 36.68087, 61.93413, 20.26867, 68.58819, 46.49812, 0.2360095, 8.815617, 18.3516, 8.658275, 27.5859, 48.62691, 60.18013, 91.3286, 145.7109, 116.0653, 106.2662, 68.69447, 53.10596, 37.92797, 47.95942, 47.42691, 69.20731, 44.95468, 29.17197, 17.91674, 16.25515, 14.65559, 17.26048, 31.22245, 46.71704, 6.628881, 10.41339, 24.81939, 26.08952, 30.1605, 52.30802, 64.71007, 76.30823, 84.63686, 99.4324, 62.52132, 46.81647, 55.76606, 82.4099, 140.2647, 81.26501, 56.45756, 30.42164, 17.28782, 8.302431, 2.981626, 2.698536, 5.886086, 5.268358, 21.83975, 6.63927, 18.97085, 32.89204, 43.15014, 62.86014, 104.6657, 130.2294, 114.8494, 106.9873, 61.89647, 55.55682, 86.80986, 89.27802, 122.4221, 123.9698, 109.0952, 98.41956, 77.61374, 32.49031, 14.67344, 7.370775, 0.03711011, 0.6423392, 53.34303, 26.79797, 6.63927, 10.88787, 17.2044, 56.18116, 79.70141, 90.8453, 98.27675, 80.87243, 74.7931, 75.54661, 73.4373, 74.11694, 68.1749, 46.24076, 39.93857, 31.21653, 36.88335, 40.02525, 117.4297, 12.70328, 1.729771, 0, 25.66785, 63.05717, 22.1414, 17.074, 41.74483, 60.27227, 81.42432, 114.444, 102.3234, 101.7878, 111.031, 119.2309, 114.0777, 110.5296, 59.19355, 42.47175, 14.63598, 6.944074, 6.944075, 27.74936, 0, 0, 0.09449376, 0.07732264, 12.827, 69.20554, 46.76293, 13.96517, 33.88744, 61.82613, 84.74799, 121.122, 145.2741, 153.1797, 204.786, 227.9242, 236.3038, 228.3655, 79.34425, 25.93483, 6.944074, 6.944074, 6.944075, 7.553681, 0, 0, 0, 0, 0, 68.66396, 59.0435, 33.35762, 47.45282, 57.8355, 78.91689, 107.8275, 168.0053, 130.9597, 212.5541, 165.8122, 210.2429, 181.1713, 189.7617, 137.3378, 84.65395, 8.677168, 6.956576, 8.468093, 0, 0, 0, 0, 0, 95.17499, 80.03818, 59.89862, 39.58476, 50.28058, 63.81641, 80.61302, 66.37824, 198.7651, 244.3467, 294.2474, 264.3517, 176.4082, 60.21857, 77.41475, 53.16981, 56.16393, 6.949235, 7.531059, 3.780177, 0, 0, 0, 0, 134.9879, 130.3696, 96.86325, 75.70494, 58.86466, 57.20374, 55.18837, 78.128, 108.5582, 154.3774, 319.1686, 372.8826, 275.4655, 130.2632, 54.93822, 25.49719, 8.047439, 8.084393, 5.115252, 5.678269, 0, 0, 0, 0, 48.08919, 142.5558, 140.3777, 154.7261, 87.9361, 58.11092, 52.83869, 67.14822, 83.66798, 118.9242, 150.0681, 272.9709, 341.1366, 238.664, 190.2, 116.8943, 91.48672, 14.0157, 42.29277, 5.115252, 0, 0, 0, 0, 54.1941, 146.3839, 99.48143, 96.19411, 102.9473, 76.14089, 57.7844, 47.0402, 64.36799, 84.23767, 162.7181, 121.3275, 213.1646, 328.482, 285.4489, 283.8319, 212.815, 164.549, 92.29631, 7.244015, 1.167, 0, 0, 0, 6.919659, 195.1709, 132.5253, 135.2341, 89.85069, 89.45549, 60.29967, 50.33806, 39.17583, 59.06854, 74.52159, 84.93402, 187.1219, 123.9673, 103.7027, 128.986, 165.1283, 249.7054, 95.39966, 10.00284, 2.39255, 0, 0, 0, 21.73871, 123.1339, 176.7414, 158.2698, 137.235, 105.3089, 86.63255, 53.11591, 29.03865, 30.40539, 39.04902, 49.23405, 63.27853, 111.4215, 101.1956, 40.00962, 59.84565, 74.51253, 17.06316, 2.435141, 2.287471, -0.0003636982, 0, 0, 0, 62.04672, 136.3122, 201.7952, 168.1343, 95.2046, 58.90624, 46.94091, 49.27053, 37.10416, 17.97011, 30.93697, 33.39257, 44.03077, 55.64542, 78.22423, 14.42782, 9.954997, 7.768213, 13.0254, 21.73166, 2.156372, 0.5317867, 0, 0, 79.62993, 139.6978, 173.167, 192.8718, 196.3499, 144.6611, 106.5424, 57.16653, 41.16107, 32.12764, 13.8566, 10.91772, 12.07177, 22.38254, 24.72105, 6.803666, 4.200841, 16.46857, 15.70744, 33.96221, 7.575688, -0.04880907, 0, 0, 33.2664, 57.53643, 167.2241, 196.4833, 194.7966, 182.1884, 119.6961, 73.02113, 48.36549, 33.74652, 26.2379, 16.3578, 6.811293, 6.63927, 6.639271, 8.468093, 6.194273, 3.591233, 3.81486, 8.600739, 5.21889, 0, 0, 0, 29.77937, 54.97282, 144.7995, 207.4904, 165.3432, 171.4047, 174.9216, 100.2733, 61.46441, 50.19171, 26.08209, 17.18218, 8.468093, 6.63927, 6.334467, 6.334467, 5.666687, 4.272203, 0, 0, 0, 0, 0, 0, 31.409, 132.7418, 185.5796, 121.8299, 185.3841, 160.6566, 116.1478, 118.1078, 141.7946, 65.56351, 48.84066, 23.13864, 18.12932, 10.28531, 6.029663, 6.044627, 5.694764, 3.739085, 3.896037, 0, 0, 0, 0, 0, 19.58994, 42.30355, 96.26777, 187.1207, 179.6626, 221.3898, 154.2617, 142.1604, 148.5737, 67.17937, 40.69044, 39.74512, 26.10166, 14.48469, 8.65873, 3.896037, 3.571392, 3.896037, 3.896037, 3.896037, 1.077756, 0, 0.001229679, 3.008948, 5.909858, 33.50574, 104.3341, 152.2165, 198.1988, 191.841, 228.7349, 168.1041, 144.2759, 110.7436, 57.65214, 42.63504, 27.91891, 15.41052, 8.056102, 3.90283, 3.879774, 3.936718, 3.968634, 0.1236256, 3.985531, -0.1835741, 0, 5.626141, 7.676256, 63.16226, 45.99762, 79.56688, 227.311, 203.9287, 172.5618, 177.1462, 140.4554, 123.9905, 110.346, 65.12319, 34.31887, 24.5278, 9.561069, 3.334991, 5.590495, 5.487353, 5.909499, 5.868994, 5.833817, 3.568177), nrow=25, ncol=24), diff --git a/test-published/api-docs/chart-types/area/basic-area/r/code.txt b/test-published/api-docs/chart-types/area/basic-area/r/code.txt index 3ae346e10a4a..ebc17d08b457 100644 --- a/test-published/api-docs/chart-types/area/basic-area/r/code.txt +++ b/test-published/api-docs/chart-types/area/basic-area/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(0, 2, 3, 5), diff --git a/test-published/api-docs/chart-types/bar/bar-marker-array/r/code.txt b/test-published/api-docs/chart-types/bar/bar-marker-array/r/code.txt index 0c84678fcd07..6375d02a0043 100644 --- a/test-published/api-docs/chart-types/bar/bar-marker-array/r/code.txt +++ b/test-published/api-docs/chart-types/bar/bar-marker-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/test-published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt b/test-published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt index 2073be9da9b1..71c9134ce296 100644 --- a/test-published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt +++ b/test-published/api-docs/chart-types/bar/bar-with-hover-text/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("Liam", "Sophie", "Jacob", "Mia", "William", "Olivia"), diff --git a/test-published/api-docs/chart-types/bar/basic-bar/r/code.txt b/test-published/api-docs/chart-types/bar/basic-bar/r/code.txt index ed521060ac71..ed25bd16f014 100644 --- a/test-published/api-docs/chart-types/bar/basic-bar/r/code.txt +++ b/test-published/api-docs/chart-types/bar/basic-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("giraffes", "orangutans", "monkeys"), diff --git a/test-published/api-docs/chart-types/bar/grouped-bar/r/code.txt b/test-published/api-docs/chart-types/bar/grouped-bar/r/code.txt index 7c4eca258a37..e9fb77014572 100644 --- a/test-published/api-docs/chart-types/bar/grouped-bar/r/code.txt +++ b/test-published/api-docs/chart-types/bar/grouped-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/test-published/api-docs/chart-types/bar/stacked-bar/r/code.txt b/test-published/api-docs/chart-types/bar/stacked-bar/r/code.txt index bb49a20f31a1..34a0214360f1 100644 --- a/test-published/api-docs/chart-types/bar/stacked-bar/r/code.txt +++ b/test-published/api-docs/chart-types/bar/stacked-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("giraffes", "orangutans", "monkeys"), y = c(20, 14, 23), diff --git a/test-published/api-docs/chart-types/bar/style-bar/r/code.txt b/test-published/api-docs/chart-types/bar/style-bar/r/code.txt index 7efaf6683eaf..eb878042a4c5 100644 --- a/test-published/api-docs/chart-types/bar/style-bar/r/code.txt +++ b/test-published/api-docs/chart-types/bar/style-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012), y = c(219, 146, 112, 127, 124, 180, 236, 207, 236, 263, 350, 430, 474, 526, 488, 537, 500, 439), diff --git a/test-published/api-docs/chart-types/box/basic-box-plot/r/code.txt b/test-published/api-docs/chart-types/box/basic-box-plot/r/code.txt index a3acdbafdd01..268e1e2edc10 100644 --- a/test-published/api-docs/chart-types/box/basic-box-plot/r/code.txt +++ b/test-published/api-docs/chart-types/box/basic-box-plot/r/code.txt @@ -6,6 +6,7 @@ library(plotly) y0 = rnorm(50) y1 = rnorm(50)+1 +py <- plotly() trace1 <- list( y = y0, type = "box" diff --git a/test-published/api-docs/chart-types/box/box-grouped/r/code.txt b/test-published/api-docs/chart-types/box/box-grouped/r/code.txt index 01c7285fb847..055455abc45a 100644 --- a/test-published/api-docs/chart-types/box/box-grouped/r/code.txt +++ b/test-published/api-docs/chart-types/box/box-grouped/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- c('day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 1', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2', 'day 2') +py <- plotly() trace1 <- list( y = c(0.2, 0.2, 0.6, 1.0, 0.5, 0.4, 0.2, 0.7, 0.9, 0.1, 0.5, 0.3), x = x, diff --git a/test-published/api-docs/chart-types/box/box-plot-jitter/r/code.txt b/test-published/api-docs/chart-types/box/box-plot-jitter/r/code.txt index d01d723600e8..e585158a1358 100644 --- a/test-published/api-docs/chart-types/box/box-plot-jitter/r/code.txt +++ b/test-published/api-docs/chart-types/box/box-plot-jitter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( y = c(0, 1, 1, 2, 3, 5, 8, 13, 21), diff --git a/test-published/api-docs/chart-types/bubble/bubblechart/r/code.txt b/test-published/api-docs/chart-types/bubble/bubblechart/r/code.txt index 788e0672c945..4cf4686ca1b9 100644 --- a/test-published/api-docs/chart-types/bubble/bubblechart/r/code.txt +++ b/test-published/api-docs/chart-types/bubble/bubblechart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 11, 12, 13), diff --git a/test-published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt b/test-published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt index f294bfd085df..5a64252c0421 100644 --- a/test-published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt +++ b/test-published/api-docs/chart-types/contour/2dhistogram-contour-subplots/r/code.txt @@ -7,6 +7,7 @@ t = seq(-1, 1.2, length=2000) x = t^3+0.3*rnorm(2000) y = t^6+0.3*rnorm(2000) +py <- plotly() trace1 <- list( x = x, y = y, diff --git a/test-published/api-docs/chart-types/contour/simple-contour/r/code.txt b/test-published/api-docs/chart-types/contour/simple-contour/r/code.txt index 9e95a534a2cd..d267989d3a56 100644 --- a/test-published/api-docs/chart-types/contour/simple-contour/r/code.txt +++ b/test-published/api-docs/chart-types/contour/simple-contour/r/code.txt @@ -14,6 +14,7 @@ for(i in 1:size) { } } +py <- plotly() data <- list( list( z = z, diff --git a/test-published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt b/test-published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt index 6375be038947..01faffb09992 100644 --- a/test-published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/basic-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt b/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt index 9cd8b125bb51..106eba71ad4a 100644 --- a/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-array/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt b/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt index eb0179e11f36..162b04c0efd6 100644 --- a/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/error-bar-asymmetric-constant/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/test-published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt b/test-published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt index e6c81cfc760e..6d148a57ea82 100644 --- a/test-published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/error-bar-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c("Trial 1", "Trial 2", "Trial 3"), y = c(3, 6, 4), diff --git a/test-published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt b/test-published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt index b244c81d654f..959da9b587cd 100644 --- a/test-published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/error-bar-horizontal/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2, 3, 4), diff --git a/test-published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt b/test-published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt index 073b5b9b4fad..ef746e5ab889 100644 --- a/test-published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/error-bar-style/r/code.txt @@ -13,6 +13,7 @@ sincx <- sinc(x_theo) x <- c(-3.8, -3.03, -1.91, -1.46, -0.89, -0.24, -0.0, 0.41, 0.89, 1.01, 1.91, 2.28, 2.79, 3.56) y <- c(-0.02, 0.04, -0.01, -0.27, 0.36, 0.75, 1.03, 0.65, 0.28, 0.02, -0.11, 0.16, 0.04, -0.15) +py <- plotly() trace1 <- list( x = x_theo, y = sincx, diff --git a/test-published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt b/test-published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt index 2d6c0dd91c2c..f67e50986251 100644 --- a/test-published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt +++ b/test-published/api-docs/chart-types/error-bar/percent-error-bar/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/test-published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt index b14567d3d9f1..4d85575b38a7 100644 --- a/test-published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Blackbody-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt index 9d99e18c4b61..4adf1b1d4a7b 100644 --- a/test-published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Bluered-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt index fe19b1addcb7..03417d419530 100644 --- a/test-published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Earth-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt index 9bd294abb42c..79d0309ceb68 100644 --- a/test-published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Electric-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt index b5dda60755f3..54b91d26baf6 100644 --- a/test-published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Greens-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt index c42a7febe1e7..fb37156ae440 100644 --- a/test-published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Greys-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt index 4a4bb0d21f8a..0ad343464a70 100644 --- a/test-published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Hot-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt index 3c6170f7905e..33ab5d51ffde 100644 --- a/test-published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Jet-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt index a315d2a50629..52057263af60 100644 --- a/test-published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Picnic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt index 31c220f7a6e5..56ee6351c277 100644 --- a/test-published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/Portland-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt index ee10d3aa51ca..5a2c17b2f2fc 100644 --- a/test-published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/RdBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt index 0008ea868ce3..28d354d49a49 100644 --- a/test-published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/YIGnBu-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt index 8b48db0bd7f4..7d51bf43d636 100644 --- a/test-published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/YIOrRd-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt index 44a0539d2108..709eaf3f0077 100644 --- a/test-published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/basic-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 20, 1, 60, 30, 60, 1), nrow=3, ncol=3), diff --git a/test-published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt b/test-published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt index 2b63d4383be5..c6c918029521 100644 --- a/test-published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/custom-colorscale/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100), nrow=50, ncol=50), diff --git a/test-published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt b/test-published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt index 19907f8af0de..062b27446ceb 100644 --- a/test-published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt +++ b/test-published/api-docs/chart-types/heatmap/labelled-heatmap/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( z = matrix(c(1, 20, 30, 50, 1, 20, 1, 60, 80, 30, 30, 60, 1, -10, 20), nrow=3, ncol=5), diff --git a/test-published/api-docs/chart-types/histogram/basic-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram/basic-histogram/r/code.txt index 16f8fdcfdc0f..f34c8f437fa0 100644 --- a/test-published/api-docs/chart-types/histogram/basic-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram/basic-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) x = rnorm(500) +py <- plotly() data <- list( list( x = x, diff --git a/test-published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt index b40c5a965670..bd9816e7d0f5 100644 --- a/test-published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram/horizontal-histogram/r/code.txt @@ -5,6 +5,7 @@ library(plotly) y = rnorm(500) +py <- plotly() data <- list( list( y = y, diff --git a/test-published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt index e3f1c0e9895f..a58e0f7f8bc3 100644 --- a/test-published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram/overlaid-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, opacity = 0.75, diff --git a/test-published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt index 89693c7078c8..fd0b0d6417eb 100644 --- a/test-published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram/stacked-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, type = "histogram" diff --git a/test-published/api-docs/chart-types/histogram/style-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram/style-histogram/r/code.txt index 6621149796d0..be34b4e92560 100644 --- a/test-published/api-docs/chart-types/histogram/style-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram/style-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x0 = rnorm(500) x1 = rnorm(500)+1 +py <- plotly() trace1 <- list( x = x0, histnorm = "count", diff --git a/test-published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt b/test-published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt index b83c1ce12225..d3395b7ae798 100644 --- a/test-published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt +++ b/test-published/api-docs/chart-types/histogram2d/2d-histogram-options/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/test-published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt b/test-published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt index df63744fa2b9..f55ee15952f4 100644 --- a/test-published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt +++ b/test-published/api-docs/chart-types/histogram2d/2d-histogram-scatter/r/code.txt @@ -11,6 +11,7 @@ y1 <- runif(50) + 1.0 x <- c(x0, x1) y <- c(y0, y1) +py <- plotly() trace1 <- list( x = x0, y = y0, diff --git a/test-published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt b/test-published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt index 87e50d3eb1b6..f7a88f5de012 100644 --- a/test-published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt +++ b/test-published/api-docs/chart-types/histogram2d/2d-histogram/r/code.txt @@ -6,6 +6,7 @@ library(plotly) x <- rnorm(500) y <- rnorm(500)+1 +py <- plotly() data <- list( list( x = x, diff --git a/test-published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt b/test-published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt index 1a44c5d8f484..703a785c4ea2 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/basic-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt b/test-published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt index 2030afe7b2d8..580fa887e300 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/line-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt b/test-published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt index 51cff36bf9e7..95265022f55d 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/line-shapes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4, 5), y = c(1, 3, 2, 3, 1), diff --git a/test-published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt b/test-published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt index f7eb2e95e18e..dcc64ba77ac7 100644 --- a/test-published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt +++ b/test-published/api-docs/chart-types/line_and_scatter/line-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(52698, 43117), y = c(53, 31), diff --git a/test-published/api-docs/chart-types/log/plotly-log-axes/r/code.txt b/test-published/api-docs/chart-types/log/plotly-log-axes/r/code.txt index 19e86cc8c744..821166148b40 100644 --- a/test-published/api-docs/chart-types/log/plotly-log-axes/r/code.txt +++ b/test-published/api-docs/chart-types/log/plotly-log-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/chart-types/mixed/bar-line/r/code.txt b/test-published/api-docs/chart-types/mixed/bar-line/r/code.txt index 797f24f4891b..8078c19484e2 100644 --- a/test-published/api-docs/chart-types/mixed/bar-line/r/code.txt +++ b/test-published/api-docs/chart-types/mixed/bar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5), y = c(1.5, 1, 1.3, 0.7, 0.8, 0.9), diff --git a/test-published/api-docs/chart-types/mixed/contour-scatter/r/code.txt b/test-published/api-docs/chart-types/mixed/contour-scatter/r/code.txt index 59eaccb75f81..5af949624527 100644 --- a/test-published/api-docs/chart-types/mixed/contour-scatter/r/code.txt +++ b/test-published/api-docs/chart-types/mixed/contour-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( z = matrix(c(1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.0, 0.734693877551, 0.510204081633, 0.326530612245, 0.183673469388, 0.0816326530612, 0.0204081632653, 0.0, 0.0204081632653, 0.0816326530612, 0.183673469388, 0.326530612245, 0.510204081633, 0.734693877551, 1.0, 1.01020408163, 0.744897959184, 0.520408163265, 0.336734693878, 0.19387755102, 0.0918367346939, 0.030612244898, 0.0102040816327, 0.030612244898, 0.0918367346939, 0.19387755102, 0.336734693878, 0.520408163265, 0.744897959184, 1.01020408163, 1.04081632653, 0.775510204082, 0.551020408163, 0.367346938776, 0.224489795918, 0.122448979592, 0.0612244897959, 0.0408163265306, 0.0612244897959, 0.122448979592, 0.224489795918, 0.367346938776, 0.551020408163, 0.775510204082, 1.04081632653, 1.09183673469, 0.826530612245, 0.602040816327, 0.418367346939, 0.275510204082, 0.173469387755, 0.112244897959, 0.0918367346939, 0.112244897959, 0.173469387755, 0.275510204082, 0.418367346939, 0.602040816327, 0.826530612245, 1.09183673469, 1.16326530612, 0.897959183673, 0.673469387755, 0.489795918367, 0.34693877551, 0.244897959184, 0.183673469388, 0.163265306122, 0.183673469388, 0.244897959184, 0.34693877551, 0.489795918367, 0.673469387755, 0.897959183673, 1.16326530612, 1.25510204082, 0.989795918367, 0.765306122449, 0.581632653061, 0.438775510204, 0.336734693878, 0.275510204082, 0.255102040816, 0.275510204082, 0.336734693878, 0.438775510204, 0.581632653061, 0.765306122449, 0.989795918367, 1.25510204082, 1.36734693878, 1.10204081633, 0.877551020408, 0.69387755102, 0.551020408163, 0.448979591837, 0.387755102041, 0.367346938776, 0.387755102041, 0.448979591837, 0.551020408163, 0.69387755102, 0.877551020408, 1.10204081633, 1.36734693878, 1.5, 1.23469387755, 1.01020408163, 0.826530612245, 0.683673469388, 0.581632653061, 0.520408163265, 0.5, 0.520408163265, 0.581632653061, 0.683673469388, 0.826530612245, 1.01020408163, 1.23469387755, 1.5), nrow=15, ncol=15), x = c(-1.0, -0.857142857143, -0.714285714286, -0.571428571429, -0.428571428571, -0.285714285714, -0.142857142857, 0.0, 0.142857142857, 0.285714285714, 0.428571428571, 0.571428571429, 0.714285714286, 0.857142857143, 1.0), diff --git a/test-published/api-docs/chart-types/polar/polar-area-chart/r/code.txt b/test-published/api-docs/chart-types/polar/polar-area-chart/r/code.txt index 2b2b9f51c184..7ee5cf4c18b7 100644 --- a/test-published/api-docs/chart-types/polar/polar-area-chart/r/code.txt +++ b/test-published/api-docs/chart-types/polar/polar-area-chart/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(77.5, 72.5, 70.0, 45.0, 22.5, 42.5, 40.0, 62.5), t = c("North", "N-E", "East", "S-E", "South", "S-W", "West", "N-W"), diff --git a/test-published/api-docs/chart-types/polar/polar-line/r/code.txt b/test-published/api-docs/chart-types/polar/polar-line/r/code.txt index dee2b74f388f..09e4ec11eb10 100644 --- a/test-published/api-docs/chart-types/polar/polar-line/r/code.txt +++ b/test-published/api-docs/chart-types/polar/polar-line/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1, 0.995, 0.978, 0.951, 0.914, 0.866, 0.809, 0.743, 0.669, 0.588, 0.5, 0.407, 0.309, 0.208, 0.105, 0, 0.105, 0.208, 0.309, 0.407, 0.5, 0.588, 0.669, 0.743, 0.809, 0.866, 0.914, 0.951, 0.978, 0.995, 1), t = c(0, 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, 78, 84, 90, 96, 102, 108, 114, 120, 126, 132, 138, 144, 150, 156, 162, 168, 174, 180, 186, 192, 198, 204, 210, 216, 222, 228, 234, 240, 246, 252, 258, 264, 270, 276, 282, 288, 294, 300, 306, 312, 318, 324, 330, 336, 342, 348, 354, 360), diff --git a/test-published/api-docs/chart-types/polar/polar-scatter/r/code.txt b/test-published/api-docs/chart-types/polar/polar-scatter/r/code.txt index a011b2df4913..bec9e1bc3b4c 100644 --- a/test-published/api-docs/chart-types/polar/polar-scatter/r/code.txt +++ b/test-published/api-docs/chart-types/polar/polar-scatter/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( r = c(6.80498578527, 3.38959601061, 5.38147211075, 8.05954021942, 5.31822922787, 2.98509993563, 1.96658700238, 6.76926540821, 4.07340189872, 6.50437182527, 7.556369819, 4.04745609407, 7.38666249607, 5.41362473698, 7.47071653116, 7.98211021694, 4.73781408009, 4.20645304293, 5.47860480459, 4.8245202807, 5.5996006099, 6.86679521708, 3.08567136626, 7.77181094323, 3.6877944351, 5.36035668519, 5.1404467393, 6.04544568093, 6.83392094019, 3.62076946254, 3.9894305834, 5.3118244995, 4.60821348028, 6.64058471615, 3.05518885448, 7.49256416375, 5.48507817779, 3.89779499662, 5.97624511403, 5.44706156091, 5.37703411681, 4.69080578773, 4.71164049118, 3.62991932939, 5.95766807637, 5.35712128439, 3.84923528282, 6.25050713632, 7.12224335715, 3.39940423384, 3.51055667227, 4.10099760366, 4.0963821002, 6.23358307481, 3.93948852677, 3.9254450774, 6.11813250146, 3.94045034629, 7.58301557326, 3.51320214534), t = c(-30.3529443619, -25.6114598545, -12.4252274527, 13.9613805187, -4.95093284067, -25.6922741909, 12.4687641616, -4.91376410703, -10.9673802876, 30.8141940549, 2.47495943114, 17.9755437524, 0.771130593362, 6.13748848563, -14.451963574, 28.1845341129, 12.538680066, -8.98323033713, 5.23128516476, -64.4890025358, 11.3574866818, 3.45407479151, 13.9243466131, -25.3640020468, -16.818006386, -10.2600510306, -13.2121341256, 2.5793388653, 8.71757496585, -10.6754987192, -2.92636601252, 25.1958807548, 40.5903293216, -9.12143363019, -24.2973623813, -3.17694450569, 10.8504984192, -31.3320597474, 4.84956746221, 15.0482769541, 3.29510469926, -6.19709187313, -8.77857413578, 29.5491741194, -5.13744879288, 23.0268604879, -6.63481657837, 2.75501499186, 21.7332501137, -24.8169949601, -7.83054706253, 28.3257962102, 12.3009774678, -21.56315724, -19.3355162838, 26.1464431708, -1.70607120268, 16.071723695, 2.05326630285, -5.09791161233), diff --git a/test-published/api-docs/chart-types/time-series/date-axes/r/code.txt b/test-published/api-docs/chart-types/time-series/date-axes/r/code.txt index 3c33be6592da..42125bb1cb55 100644 --- a/test-published/api-docs/chart-types/time-series/date-axes/r/code.txt +++ b/test-published/api-docs/chart-types/time-series/date-axes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c("2013-10-04 22:23:00", "2013-11-04 22:23:00", "2013-12-04 22:23:00"), diff --git a/test-published/api-docs/file-settings/fileopt/append/r/code.txt b/test-published/api-docs/file-settings/fileopt/append/r/code.txt index 395c266e008a..039d4df23394 100644 --- a/test-published/api-docs/file-settings/fileopt/append/r/code.txt +++ b/test-published/api-docs/file-settings/fileopt/append/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/file-settings/fileopt/extend/r/code.txt b/test-published/api-docs/file-settings/fileopt/extend/r/code.txt index 5fa4dc592a8c..910a75bbcc77 100644 --- a/test-published/api-docs/file-settings/fileopt/extend/r/code.txt +++ b/test-published/api-docs/file-settings/fileopt/extend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/file-settings/fileopt/new-graph/r/code.txt b/test-published/api-docs/file-settings/fileopt/new-graph/r/code.txt index 31e9b50829ab..5ddfaa4bc061 100644 --- a/test-published/api-docs/file-settings/fileopt/new-graph/r/code.txt +++ b/test-published/api-docs/file-settings/fileopt/new-graph/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/file-settings/fileopt/overwrite/r/code.txt b/test-published/api-docs/file-settings/fileopt/overwrite/r/code.txt index 569d686baf1d..6cf62c3dcce0 100644 --- a/test-published/api-docs/file-settings/fileopt/overwrite/r/code.txt +++ b/test-published/api-docs/file-settings/fileopt/overwrite/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/file-settings/privacy/privacy-false/r/code.txt b/test-published/api-docs/file-settings/privacy/privacy-false/r/code.txt index 329bcc04f93e..43bc1db04b92 100644 --- a/test-published/api-docs/file-settings/privacy/privacy-false/r/code.txt +++ b/test-published/api-docs/file-settings/privacy/privacy-false/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/test-published/api-docs/file-settings/privacy/privacy-true/r/code.txt b/test-published/api-docs/file-settings/privacy/privacy-true/r/code.txt index 8d5711c782b2..e181a2eba749 100644 --- a/test-published/api-docs/file-settings/privacy/privacy-true/r/code.txt +++ b/test-published/api-docs/file-settings/privacy/privacy-true/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 2, 4), diff --git a/test-published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt b/test-published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt index 46b6159e405a..94f70b803f2c 100644 --- a/test-published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt +++ b/test-published/api-docs/get-requests-and-images/get-requests/get-requests-example/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(10, 15, 13, 17), diff --git a/test-published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt b/test-published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt index 3fd27ce49e03..c508cfb57a28 100644 --- a/test-published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt +++ b/test-published/api-docs/get-requests-and-images/iframes/iframes/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/test-published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt b/test-published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt index 6dc07b46097c..f47f6a20be68 100644 --- a/test-published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt +++ b/test-published/api-docs/get-requests-and-images/shiny-r/shiny-r/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/test-published/api-docs/layout/annotations/hover-chart-basic/r/code.txt b/test-published/api-docs/layout/annotations/hover-chart-basic/r/code.txt index de5c58afb9b7..f94deed65df8 100644 --- a/test-published/api-docs/layout/annotations/hover-chart-basic/r/code.txt +++ b/test-published/api-docs/layout/annotations/hover-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2), diff --git a/test-published/api-docs/layout/annotations/multiple-annotation/r/code.txt b/test-published/api-docs/layout/annotations/multiple-annotation/r/code.txt index 3fb7eee83ba3..cd822a91f923 100644 --- a/test-published/api-docs/layout/annotations/multiple-annotation/r/code.txt +++ b/test-published/api-docs/layout/annotations/multiple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/test-published/api-docs/layout/annotations/simple-annotation/r/code.txt b/test-published/api-docs/layout/annotations/simple-annotation/r/code.txt index e2c672c56f56..f2b830ccf64b 100644 --- a/test-published/api-docs/layout/annotations/simple-annotation/r/code.txt +++ b/test-published/api-docs/layout/annotations/simple-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/test-published/api-docs/layout/annotations/style-annotation/r/code.txt b/test-published/api-docs/layout/annotations/style-annotation/r/code.txt index 3c83564d3fc3..69c0654ac67a 100644 --- a/test-published/api-docs/layout/annotations/style-annotation/r/code.txt +++ b/test-published/api-docs/layout/annotations/style-annotation/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 3, 2, 4, 3, 4, 6, 5), diff --git a/test-published/api-docs/layout/annotations/text-chart-basic/r/code.txt b/test-published/api-docs/layout/annotations/text-chart-basic/r/code.txt index 00187a98546e..e29526b22c88 100644 --- a/test-published/api-docs/layout/annotations/text-chart-basic/r/code.txt +++ b/test-published/api-docs/layout/annotations/text-chart-basic/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/test-published/api-docs/layout/annotations/text-chart-styling/r/code.txt b/test-published/api-docs/layout/annotations/text-chart-styling/r/code.txt index 30561f0e994f..b67a1d5e909e 100644 --- a/test-published/api-docs/layout/annotations/text-chart-styling/r/code.txt +++ b/test-published/api-docs/layout/annotations/text-chart-styling/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 1, 1), diff --git a/test-published/api-docs/layout/axes/axes-booleans/r/code.txt b/test-published/api-docs/layout/axes/axes-booleans/r/code.txt index 3584da2d9f0a..282ead95d858 100644 --- a/test-published/api-docs/layout/axes/axes-booleans/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-booleans/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/axes/axes-labels/r/code.txt b/test-published/api-docs/layout/axes/axes-labels/r/code.txt index 769b720eac3e..1c2c661c998b 100644 --- a/test-published/api-docs/layout/axes/axes-labels/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/axes/axes-lines/r/code.txt b/test-published/api-docs/layout/axes/axes-lines/r/code.txt index a940821abd46..032b16e29fa2 100644 --- a/test-published/api-docs/layout/axes/axes-lines/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-lines/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/axes/axes-range-manual/r/code.txt b/test-published/api-docs/layout/axes/axes-range-manual/r/code.txt index eba81260be80..9e8d0a230024 100644 --- a/test-published/api-docs/layout/axes/axes-range-manual/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-range-manual/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/axes/axes-range-mode/r/code.txt b/test-published/api-docs/layout/axes/axes-range-mode/r/code.txt index 71b5bf396fef..fb76f08edcb2 100644 --- a/test-published/api-docs/layout/axes/axes-range-mode/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-range-mode/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(2, 4, 6), diff --git a/test-published/api-docs/layout/axes/axes-range-type/r/code.txt b/test-published/api-docs/layout/axes/axes-range-type/r/code.txt index ab68681deae3..9d2c741aba5b 100644 --- a/test-published/api-docs/layout/axes/axes-range-type/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-range-type/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/axes/axes-reversed/r/code.txt b/test-published/api-docs/layout/axes/axes-reversed/r/code.txt index 6344bffc7055..929e34061fd7 100644 --- a/test-published/api-docs/layout/axes/axes-reversed/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-reversed/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(1, 2), diff --git a/test-published/api-docs/layout/axes/axes-ticks/r/code.txt b/test-published/api-docs/layout/axes/axes-ticks/r/code.txt index 2686d1737203..9ba8bd0b9fbe 100644 --- a/test-published/api-docs/layout/axes/axes-ticks/r/code.txt +++ b/test-published/api-docs/layout/axes/axes-ticks/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(8, 7, 6, 5, 4, 3, 2, 1, 0), diff --git a/test-published/api-docs/layout/font/global-font/r/code.txt b/test-published/api-docs/layout/font/global-font/r/code.txt index 6fd7d16122f1..0ef1a1109a97 100644 --- a/test-published/api-docs/layout/font/global-font/r/code.txt +++ b/test-published/api-docs/layout/font/global-font/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/test-published/api-docs/layout/labels/styling-names/r/code.txt b/test-published/api-docs/layout/labels/styling-names/r/code.txt index 76877706844a..13f30930b9a1 100644 --- a/test-published/api-docs/layout/labels/styling-names/r/code.txt +++ b/test-published/api-docs/layout/labels/styling-names/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/test-published/api-docs/layout/latex/latex/r/code.txt b/test-published/api-docs/layout/latex/latex/r/code.txt index e237096ccf08..11c3de6bb00b 100644 --- a/test-published/api-docs/layout/latex/latex/r/code.txt +++ b/test-published/api-docs/layout/latex/latex/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3, 4), y = c(1, 4, 9, 16), diff --git a/test-published/api-docs/layout/legends/legend-inside/r/code.txt b/test-published/api-docs/layout/legends/legend-inside/r/code.txt index 4437c98bd7a9..d35b407ff8a9 100644 --- a/test-published/api-docs/layout/legends/legend-inside/r/code.txt +++ b/test-published/api-docs/layout/legends/legend-inside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/test-published/api-docs/layout/legends/legend-labels/r/code.txt b/test-published/api-docs/layout/legends/legend-labels/r/code.txt index a69245acdcb5..4d3af4e33826 100644 --- a/test-published/api-docs/layout/legends/legend-labels/r/code.txt +++ b/test-published/api-docs/layout/legends/legend-labels/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/test-published/api-docs/layout/legends/legend-outside/r/code.txt b/test-published/api-docs/layout/legends/legend-outside/r/code.txt index 4ad5c7bc6bf3..131b6305de9c 100644 --- a/test-published/api-docs/layout/legends/legend-outside/r/code.txt +++ b/test-published/api-docs/layout/legends/legend-outside/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/test-published/api-docs/layout/legends/legend-style/r/code.txt b/test-published/api-docs/layout/legends/legend-style/r/code.txt index 817791eb5fdc..995041d3c617 100644 --- a/test-published/api-docs/layout/legends/legend-style/r/code.txt +++ b/test-published/api-docs/layout/legends/legend-style/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/test-published/api-docs/layout/legends/legend-visibility/r/code.txt b/test-published/api-docs/layout/legends/legend-visibility/r/code.txt index b2114ab037b0..de0af73b3abe 100644 --- a/test-published/api-docs/layout/legends/legend-visibility/r/code.txt +++ b/test-published/api-docs/layout/legends/legend-visibility/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), y = c(0, 3, 6, 4, 5, 2, 3, 5, 4), diff --git a/test-published/api-docs/layout/legends/show-legend/r/code.txt b/test-published/api-docs/layout/legends/show-legend/r/code.txt index b807401c7fff..376f3a5ecffb 100644 --- a/test-published/api-docs/layout/legends/show-legend/r/code.txt +++ b/test-published/api-docs/layout/legends/show-legend/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(1, 2, 3), diff --git a/test-published/api-docs/layout/sizing/size-margins/r/code.txt b/test-published/api-docs/layout/sizing/size-margins/r/code.txt index e6236de6d2be..dbac85917ce4 100644 --- a/test-published/api-docs/layout/sizing/size-margins/r/code.txt +++ b/test-published/api-docs/layout/sizing/size-margins/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() data <- list( list( x = c(0, 1, 2, 3, 4, 5, 6, 7, 8), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt index 1b4ec5fbae1c..9a82a36f78a9 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/insets/simple-inset/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 3, 2), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt index 25e22ab12bbc..d93a6b9876d6 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-double/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(40, 50, 60), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt index 338bd02d23b4..6e4c9fe84d16 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/multiple-axes/multiple-axes-multiple/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt index 481b49cc0628..65c51726a1d5 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/custom-size-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt index a81c5d3f6d6b..345e8a9b3026 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/multiple-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt index b0c5c3c20c11..b59739297a2c 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/shared-axes-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(2, 3, 4), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt index 70d95456be6f..baacbafa4477 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/simple-subplot/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(1, 2, 3), y = c(4, 5, 6), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt index 570b4003ba93..6b185129f6d1 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-coupled-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt b/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt index 0112c069fa03..57f62948309b 100644 --- a/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt +++ b/test-published/api-docs/multiple-axes-insets-subplots/subplots/stacked-subplots/r/code.txt @@ -3,6 +3,7 @@ library(plotly) +py <- plotly() trace1 <- list( x = c(0, 1, 2), y = c(10, 11, 12), diff --git a/test-published/api-docs/references/plotly_js.json b/test-published/api-docs/references/plotly_js.json index 6aa1a88c365c..7cab04dd6d4a 100644 --- a/test-published/api-docs/references/plotly_js.json +++ b/test-published/api-docs/references/plotly_js.json @@ -1745,6 +1745,7 @@ "url": "https://plot.ly/~TestBot/817" } ], + "description": "Data sets with many correlated fields are too big to display all at once. This demo shows how to let the user change the X and Y data, and demonstrates correlated hover info across plots.", "has_thumbnail": false, "id": "high-dimension-data-subsection-placeholder", "name": "High Dimension Data", @@ -1765,6 +1766,7 @@ "url": "https://plot.ly/~TestBot/818" } ], + "description": "Live updating plots can still be zoomed, panned, and autoscaled. Monitor and adjust your equipment or model in real time.", "has_thumbnail": false, "id": "streaming-data-subsection-placeholder", "name": "Streaming Data", @@ -1785,6 +1787,7 @@ "url": "https://plot.ly/~TestBot/816" } ], + "description": "Learn to implement a range bar, as an alternate way of zooming in and out on a plot. Use click events to dynamically annotate the plot.", "has_thumbnail": false, "id": "range-slider-subsection-placeholder", "name": "Range Slider", @@ -1805,6 +1808,7 @@ "url": "https://plot.ly/~TestBot/819" } ], + "description": "Update any aspect of a plot\u2019s appearance on the fly with one simple command.", "has_thumbnail": false, "id": "style-controls-subsection-placeholder", "name": "Style Controls", diff --git a/tree.json b/tree.json index e9b5d27aaf2f..d3f0194d6355 100644 --- a/tree.json +++ b/tree.json @@ -6311,6 +6311,7 @@ } }, "config": { + "description": "Data sets with many correlated fields are too big to display all at once. This demo shows how to let the user change the X and Y data, and demonstrates correlated hover info across plots.", "has_thumbnail": false, "name": "High Dimension Data", "relative_url": "high-dimension-data" @@ -6342,6 +6343,7 @@ } }, "config": { + "description": "Learn to implement a range bar, as an alternate way of zooming in and out on a plot. Use click events to dynamically annotate the plot.", "has_thumbnail": false, "name": "Range Slider", "relative_url": "range-slider" @@ -6373,6 +6375,7 @@ } }, "config": { + "description": "Live updating plots can still be zoomed, panned, and autoscaled. Monitor and adjust your equipment or model in real time.", "has_thumbnail": false, "name": "Streaming Data", "relative_url": "streaming-data" @@ -6404,6 +6407,7 @@ } }, "config": { + "description": "Update any aspect of a plot\u2019s appearance on the fly with one simple command.", "has_thumbnail": false, "name": "Style Controls", "relative_url": "style-controls"