search for: plot_ly

Displaying 6 results from an estimated 6 matches for "plot_ly".

Did you mean: plot_1
2023 Jul 21
2
plotly question
...23 1:40:49 PM PDT, Bert Gunter <bgunter.4567 at gmail.com> wrote: >As you apparently haven't received any responses yet, I'll try to >suggest something useful. However, I have absolutely zero experience >with plotly, so this is just from general principles and reading the >plot_ly Help file, which says for the "..." arguments: > >"Arguments (i.e., attributes) passed along to the trace type. See >schema() for a list of acceptable attributes for a given trace type >(by going to traces -> type -> attributes). Note that attributes >provided at...
2023 Jul 21
1
plotly question
As you apparently haven't received any responses yet, I'll try to suggest something useful. However, I have absolutely zero experience with plotly, so this is just from general principles and reading the plot_ly Help file, which says for the "..." arguments: "Arguments (i.e., attributes) passed along to the trace type. See schema() for a list of acceptable attributes for a given trace type (by going to traces -> type -> attributes). Note that attributes provided at this level may over...
2023 Jul 21
1
plotly question
Colleagues Here is my reproducible code plot_ly( ? domain = list(x = c(0, 1), y = c(0, 1)), ? value = 2874, ? title = list(text = "Generic"), ? type = "indicator", ? mode = "gauge+number+delta", ? delta = list(reference = 4800), ? gauge = list( ??? axis =list(range = list(NULL, 5000)), ??? steps = list( ??? list(ran...
2023 Jul 26
1
plotly
...ot;, ? size = 12, ? color = "black", ? face="bold") t3 <- list( ? family = "Arial", ? size = 12, ? color = "black", ? face="bold") t5 <- list( ? family = "Arial", ? size = 12, ? color = "black", ? face="bold") plot_ly( ? domain = list(x = c(0, .5), y = c(0,0.5)), ? value = 319, ? title = list(text = "Example\n4,800 Target",font=t), ? type = "indicator", ? mode = "gauge+number+delta", ? number = list(valueformat = "%.2f",font=t5), ? delta = list(reference = 4800, valueform...
2023 Jul 22
2
plotly
...the precision of the numbers by specifying the `valueformat` and `delta.valueformat` parameters. These parameters accept a string in the format that is used by the C `printf` function. For example, `%.2f` specifies a number with two digits after the decimal point. Here is an example: ```R plotly::plot_ly( domain = list(x = c(0, 1), y = c(0, 1)), value = 2874, title = list(text = "Generic"), type = "indicator", mode = "gauge+number+delta", number = list(valueformat = "%.2f"), delta = list(reference = 4800, valueformat = "%.2f"), gaug...
2023 Jul 22
1
plotly
What do you mean "Rounded"? What do you expect, what do you get instead? ? > On Jul 22, 2023, at 10:40, Thomas Subia via R-help <r-help at r-project.org> wrote: > > Colleagues, > Thanks for the update. > My colleagues at work have run this script but the resulting graph output for value is rounded. How can one turn this annoying feature off? > I've