Home Forums Feature Requests & Feedback Standard Deviation and Cumulative Percent

Standard Deviation and Cumulative Percent

Viewing 3 posts - 1 through 3 (of 3 total)
  • #7033

    Is there a way to add a standard deviation curve to a scatter plot? Also, is there a way to add a cumulative percentage line/curve to a bar chart? If not, is there any plan to add this functionality?

    #7043

    Hi,
    You can calculate standard deviation and cumulative percentage and assign that calculated values to axis values. Here, is an example.


    Anjali

    • This reply was modified 9 years, 6 months ago by Anjali.
    #7070

    Thanks for the response. Is there no quick functionality to send in a standard deviation value with a dataset and the graph auto calculates the curve based on the dataset and deviation value(see example below of what i am referring to)? Then you would have a chart with the scatter plot points and curve. If not, can you provide an example of how to do this with two separate datasets? I would think you would have to have the scatter and standard deviation datasets linked in some way to allow for the datasets to be turned on and off by clicking the label in the scatter plot legend.

    Example:

    “data”: [
    {
    “type”: “scatter”,
    “markerType”: “circle”,
    “legendText”: “My Dataset 1”,
    “showInLegend”: “true”,
    “standardDeviation”: [value],
    “dataPoints”: [
    { “x”: 1, “y”: 0 },
    { “x”: 1, “y”: 2 },
    { “x”: 2, “y”: 2 },
    { “x”: 3, “y”: 5 },
    { “x”: 4, “y”: 4 },
    { “x”: 4, “y”: 7 },
    { “x”: 5, “y”: 8 },
    { “x”: 7, “y”: 10 },
    { “x”: 9, “y”: 12 }
    ]
    },
    {
    “type”: “scatter”,
    “markerType”: “circle”,
    “legendText”: “My Dataset 2”,
    “showInLegend”: “true”,
    “standardDeviation”: [value],
    “dataPoints”: [
    { “x”: 3, “y”: 6 },
    { “x”: 6, “y”: 2 },
    { “x”: 5, “y”: 4 },
    { “x”: 4, “y”: 5 },
    { “x”: 4, “y”: 8 },
    { “x”: 4, “y”: 7 },
    { “x”: 5, “y”: 9 },
    { “x”: 8, “y”: 3 },
    { “x”: 10, “y”: 11 }
    ]
    }
    ]

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.