Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cD0yMDI0LTAzLTI4KzIyJTNBMzYlM0EyNS43OTEzNTQlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI4KzIwJTNBNDclM0E1Ny41MzcyMzglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yOCsyMiUzQTM2JTNBMTUuMzkxODg1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-28T22:36:15.391885Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loganlang/17.embed",
            "fid": "loganlang:17",
            "filename": "Tape 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/loganlang/17/9_AJADK175X9KEM0TM420DB7EG4JST6H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/loganlang/17/2_RAU35G1ZWP984FK51HJPNP4NQ5O9V5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/17/8_UCIBY3BMQA0PUYZ3QZXQQEAE56HJ5M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/17/9_AJADK175X9KEM0TM420DB7EG4JST6H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loganlang:17",
                "plots": "https://api.plotly.com/v2/plots/loganlang:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=loganlang"
            },
            "owner": "loganlang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~loganlang/17/",
            "world_readable": true,
            "date_modified": "2024-03-28T22:36:15.406Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loganlang/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": "2",
                        "cmin": "-2",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4]"
                            }
                        },
                        "type": "surface",
                        "xsrc": "loganlang:16:eb2426",
                        "ysrc": "loganlang:16:8795ec",
                        "zsrc": "loganlang:16:cf99a7,ef156e,451a8b,4cb0a8,6992bb",
                        "colorbar": {
                            "tickfont": {
                                "color": "rgb(51, 51, 51)"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "rebeccapurple"
                            ],
                            [
                                0.4,
                                "rebeccapurple"
                            ],
                            [
                                0.45,
                                "blue"
                            ],
                            [
                                0.5,
                                "green"
                            ],
                            [
                                0.55,
                                "yellow"
                            ],
                            [
                                0.6,
                                "red"
                            ],
                            [
                                1,
                                "red"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#00FF00",
                            "zerolinewidth": 4
                        },
                        "yaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#FF0000",
                            "zerolinewidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "range": [
                                "-2",
                                "2"
                            ],
                            "zerolinecolor": "#0000FF",
                            "zerolinewidth": 4
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.9333762740905656,
                                "y": -0.9098043405195,
                                "z": 1.2200675362194886
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": 0,
                            "font": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "text": "Min: -0.046<br>Max: 0.17<br>Var: 0.21600000000000003",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loganlang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-23 00:28:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loganlang",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T22:35:20.125753Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akash.borgalli/16.embed",
            "fid": "akash.borgalli:16",
            "filename": "statewise_sales_comparison_2023_vs_2024",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/16/9_B8AZW2KWIPN93S00G2WJYDN6DBBJEJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/16/2_JAWBTU2HVXDK3UKYQPEABFUTKXRO0Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/16/8_3LSTRWCTCGN2VZDECSPCBM37TYE898.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/16/9_B8AZW2KWIPN93S00G2WJYDN6DBBJEJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akash.borgalli:16",
                "plots": "https://api.plotly.com/v2/plots/akash.borgalli:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=akash.borgalli"
            },
            "owner": "akash.borgalli",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~akash.borgalli/16/",
            "world_readable": true,
            "date_modified": "2024-03-28T22:35:20.136Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akash.borgalli/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Year-24",
                        "type": "bar",
                        "xsrc": "akash.borgalli:15:a8278f",
                        "ysrc": "akash.borgalli:15:6178f9",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "indianred"
                        },
                        "textsrc": "akash.borgalli:15:d2fb27",
                        "textfont": {
                            "size": 10
                        },
                        "hoverinfo": "text+y",
                        "textposition": "auto"
                    },
                    {
                        "name": "Year-23",
                        "type": "bar",
                        "xsrc": "akash.borgalli:15:146deb",
                        "ysrc": "akash.borgalli:15:6e7a11",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "lightsalmon"
                        },
                        "textsrc": "akash.borgalli:15:4a92e1",
                        "textfont": {
                            "size": 10
                        },
                        "hoverinfo": "text+y",
                        "textposition": "auto"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Statewise - Sales Comparison (2023 vs 2024)"
                    },
                    "width": 900,
                    "xaxis": {
                        "tickangle": -45
                    },
                    "yaxis": {
                        "range": [
                            0,
                            5.9547552
                        ],
                        "title": {
                            "text": "Total Sales (Crore INR)"
                        }
                    },
                    "bargap": 0.3,
                    "height": 600,
                    "barmode": "group",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0,
                            "y": 4.50873865,
                            "font": {
                                "size": 10,
                                "color": "black"
                            },
                            "text": "22.0%",
                            "align": "center",
                            "yshift": 10,
                            "bgcolor": "lightgrey",
                            "opacity": 0.8,
                            "showarrow": false
                        },
                        {
                            "x": 1,
                            "y": 3.7767096000000002,
                            "font": {
                                "size": 10,
                                "color": "black"
                            },
                            "text": "41.0%",
                            "align": "center",
                            "yshift": 10,
                            "bgcolor": "lightgrey",
                            "opacity": 0.8,
                            "showarrow": false
                        },
                        {
                            "x": 2,
                            "y": 2.08228295,
                            "font": {
                                "size": 10,
                                "color": "black"
                            },
                            "text": "62.5%",
                            "align": "center",
                            "yshift": 10,
                            "bgcolor": "lightgrey",
                            "opacity": 0.8,
                            "showarrow": false
                        },
                        {
                            "x": 3,
                            "y": 0.11814275,
                            "font": {
                                "size": 10,
                                "color": "black"
                            },
                            "text": "67.8%",
                            "align": "center",
                            "yshift": 10,
                            "bgcolor": "lightgrey",
                            "opacity": 0.8,
                            "showarrow": false
                        }
                    ],
                    "uniformtext": {
                        "mode": "hide",
                        "minsize": 8
                    }
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akash.borgalli",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 19:28:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akash.borgalli",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T22:29:22.112429Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ammnn/19.embed",
            "fid": "ammnn:19",
            "filename": "Plot 19",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ammnn/19/9_7BH1NL0W9WOQW26L7O6BKE3D7MZMIK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ammnn/19/2_LUFOJZENE9KUNV2U542YM8LMKHJIMT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ammnn/19/8_NCJTRC12EKG073QT3D8DFZW53SL2PJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ammnn/19/9_7BH1NL0W9WOQW26L7O6BKE3D7MZMIK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ammnn:19",
                "plots": "https://api.plotly.com/v2/plots/ammnn:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=ammnn"
            },
            "owner": "ammnn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ammnn/19/",
            "world_readable": true,
            "date_modified": "2024-03-28T22:31:24.961Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ammnn/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7b3126",
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A",
                                "error_y": {
                                    "array": "B"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "trace 0",
                        "type": "scatter",
                        "xsrc": "ammnn:18:99468d",
                        "ysrc": "ammnn:18:2757dc",
                        "error_x": {
                            "type": "data",
                            "visible": true,
                            "symmetric": true
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "B"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "ammnn:18:99468d",
                            "symmetric": true
                        }
                    },
                    {
                        "uid": "15e159",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "7b3126",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.4568787284935868,
                                        "value": -27.00351285245178
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.03625090311285026,
                                        "value": 9.646159135132343
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Natural Logarithm of the Net Count Rate versus Time"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.029369781306180096,
                            0.14106142892381993
                        ],
                        "title": {
                            "text": "Time (s)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            5.833848113846586,
                            9.189249800173073
                        ],
                        "title": {
                            "text": "ln( net count rate  Anet)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ammnn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-01-20 05:47:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ammnn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T22:05:55.868966Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loganlang/15.embed",
            "fid": "loganlang:15",
            "filename": "Tape 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/loganlang/15/9_MJOWK0FWZ9N4V7MS234QJVJKD1HGYR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/loganlang/15/2_CKSITBY5ZS6LC8O0LUZQUVWSNZC4GM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/15/8_QX7LRTRLWX5XGBTHGYZD80D5P1YVDZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/15/9_MJOWK0FWZ9N4V7MS234QJVJKD1HGYR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loganlang:15",
                "plots": "https://api.plotly.com/v2/plots/loganlang:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=loganlang"
            },
            "owner": "loganlang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~loganlang/15/",
            "world_readable": true,
            "date_modified": "2024-03-28T22:05:55.883Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loganlang/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": "2",
                        "cmin": "-2",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4]"
                            }
                        },
                        "type": "surface",
                        "xsrc": "loganlang:14:f9923b",
                        "ysrc": "loganlang:14:49be46",
                        "zsrc": "loganlang:14:2b63cb,c28b9d,ea58ce,8162b9,7c20cf",
                        "colorbar": {
                            "tickfont": {
                                "color": "rgb(51, 51, 51)"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "rebeccapurple"
                            ],
                            [
                                0.4,
                                "rebeccapurple"
                            ],
                            [
                                0.45,
                                "blue"
                            ],
                            [
                                0.5,
                                "green"
                            ],
                            [
                                0.55,
                                "yellow"
                            ],
                            [
                                0.6,
                                "red"
                            ],
                            [
                                1,
                                "red"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#00FF00",
                            "zerolinewidth": 4
                        },
                        "yaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#FF0000",
                            "zerolinewidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "range": [
                                "-2",
                                "2"
                            ],
                            "zerolinecolor": "#0000FF",
                            "zerolinewidth": 4
                        },
                        "camera": {
                            "eye": {
                                "x": "-1.25",
                                "y": "-1.25",
                                "z": "0.25"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": 0,
                            "font": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "text": "Min: -0.086<br>Max: 0.195<br>Var: 0.281",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loganlang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-23 00:28:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loganlang",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T22:05:45.181234Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loganlang/13.embed",
            "fid": "loganlang:13",
            "filename": "Tape 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/loganlang/13/9_IJWA2TA1P9491F7W3KEQLATFMAP5GY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/loganlang/13/2_56C1HBL8FK63D6F6GV216PBQJX42I2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/13/8_Y7K7R26E7Z9N3X3KR1AQR9LRGBK06E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/13/9_IJWA2TA1P9491F7W3KEQLATFMAP5GY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loganlang:13",
                "plots": "https://api.plotly.com/v2/plots/loganlang:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=loganlang"
            },
            "owner": "loganlang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~loganlang/13/",
            "world_readable": true,
            "date_modified": "2024-03-28T22:05:45.193Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loganlang/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": "2",
                        "cmin": "-2",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4]"
                            }
                        },
                        "type": "surface",
                        "xsrc": "loganlang:12:6736a3",
                        "ysrc": "loganlang:12:8b7af4",
                        "zsrc": "loganlang:12:4c28ce,0d36f4,896243,a0f594,8e2fef",
                        "colorbar": {
                            "tickfont": {
                                "color": "rgb(51, 51, 51)"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "rebeccapurple"
                            ],
                            [
                                0.4,
                                "rebeccapurple"
                            ],
                            [
                                0.45,
                                "blue"
                            ],
                            [
                                0.5,
                                "green"
                            ],
                            [
                                0.55,
                                "yellow"
                            ],
                            [
                                0.6,
                                "red"
                            ],
                            [
                                1,
                                "red"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#00FF00",
                            "zerolinewidth": 4
                        },
                        "yaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#FF0000",
                            "zerolinewidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "range": [
                                "-2",
                                "2"
                            ],
                            "zerolinecolor": "#0000FF",
                            "zerolinewidth": 4
                        },
                        "camera": {
                            "eye": {
                                "x": "-1.25",
                                "y": "-1.25",
                                "z": "0.25"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": 0,
                            "font": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "text": "Min: -0.151<br>Max: 0.176<br>Var: 0.32699999999999996",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loganlang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-23 00:28:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loganlang",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T21:59:41.432237Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Jacobscoll/25.embed",
            "fid": "Jacobscoll:25",
            "filename": "Plot 25",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Jacobscoll/25/9_1CBO3SUVP4MZD1MMWON2S6ECVKWOJX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Jacobscoll/25/2_H2QG6XFF93E4JEIRSRD1FDLH0EH63E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jacobscoll/25/8_1YGA1J4Z01X32Z4JX6FD84O0GPBU47.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Jacobscoll/25/9_1CBO3SUVP4MZD1MMWON2S6ECVKWOJX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Jacobscoll:25",
                "plots": "https://api.plotly.com/v2/plots/Jacobscoll:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=Jacobscoll"
            },
            "owner": "Jacobscoll",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Jacobscoll/25/",
            "world_readable": true,
            "date_modified": "2024-03-28T21:59:41.446Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Jacobscoll/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9e1d37",
                        "meta": {
                            "columnNames": {
                                "x": "Time",
                                "y": "Bag A"
                            }
                        },
                        "mode": "markers",
                        "name": "Bag A",
                        "type": "scatter",
                        "xsrc": "Jacobscoll:24:aeee3e",
                        "ysrc": "Jacobscoll:24:429a87"
                    },
                    {
                        "uid": "7cc66d",
                        "meta": {
                            "columnNames": {
                                "x": "Time",
                                "y": "Bag B"
                            }
                        },
                        "mode": "markers",
                        "name": "Bag B",
                        "type": "scatter",
                        "xsrc": "Jacobscoll:24:aeee3e",
                        "ysrc": "Jacobscoll:24:2f31e1",
                        "stackgroup": null
                    },
                    {
                        "uid": "afba93",
                        "meta": {
                            "columnNames": {
                                "x": "Time",
                                "y": "Bag C"
                            }
                        },
                        "mode": "markers",
                        "name": "Bag C",
                        "type": "scatter",
                        "xsrc": "Jacobscoll:24:aeee3e",
                        "ysrc": "Jacobscoll:24:bb351b",
                        "stackgroup": null
                    },
                    {
                        "uid": "c84f42",
                        "meta": {
                            "columnNames": {
                                "x": "Time",
                                "y": "Bag D"
                            }
                        },
                        "mode": "markers",
                        "name": "Bag D",
                        "type": "scatter",
                        "xsrc": "Jacobscoll:24:aeee3e",
                        "ysrc": "Jacobscoll:24:fa48a5",
                        "stackgroup": null
                    },
                    {
                        "uid": "5fe982",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "9e1d37",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0024178334035575713,
                                        "value": -0.07050000000000398
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.08717622312057385,
                                        "value": -0.14214285714267783
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "69923c",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "7cc66d",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.00042737929433292763,
                                        "value": 0.0007857142857143994
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.015409379597887818,
                                        "value": 0.017857142857138596
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "edae8e",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "afba93",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0004862916736247143,
                                        "value": 0.01024999999999916
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.01753349564084945,
                                        "value": -0.01892857142847168
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "38f17d",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "c84f42",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0046515029390336825,
                                        "value": 0.045892857142857256
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.16771232354655205,
                                        "value": 0.340357142857129
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "The Net Weight Change of Dialysis Bags Throughout 10 Minute Intervals"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.5603377826205387,
                            63.560337782620536
                        ],
                        "title": {
                            "text": "Minutes"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.78692460317467,
                            3.508710317460316
                        ],
                        "title": {
                            "text": "Net Weight Change"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": [
                        {
                            "x": 26.38949671772429,
                            "y": -2.0006930287353404,
                            "ax": 35,
                            "ay": 67,
                            "text": "y=-0.0705x+-0.14214285714285735"
                        },
                        {
                            "x": 33.282275711159734,
                            "y": 0.07356297700148409,
                            "ax": 34,
                            "ay": 38,
                            "text": "y=0.0007857142857142861x+0.017857142857142842"
                        },
                        {
                            "x": 53.57768052516411,
                            "y": 0.5441924909081585,
                            "ax": 18,
                            "ay": 72,
                            "text": "y=0.010249999999999936x+-0.0189285714285359"
                        },
                        {
                            "x": 34.48577680525164,
                            "y": 1.9256413933732597,
                            "ax": 39,
                            "ay": 52,
                            "text": "y=0.04589285714285635x+0.3403571428571769"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Jacobscoll",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-18 20:32:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Jacobscoll",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T21:40:47.016151Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akash.borgalli/14.embed",
            "fid": "akash.borgalli:14",
            "filename": "bubble_chart",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/14/9_CVCL05SEXNR365E1DEJKSWMVM1IG5Q.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/14/2_8X2VF9Y69YO874TO8EANIPTBOOR2C8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/14/8_C4LDXESBZOMAUAZYS87JQMNYTDP2V6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/14/9_CVCL05SEXNR365E1DEJKSWMVM1IG5Q.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akash.borgalli:14",
                "plots": "https://api.plotly.com/v2/plots/akash.borgalli:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=akash.borgalli"
            },
            "owner": "akash.borgalli",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~akash.borgalli/14/",
            "world_readable": true,
            "date_modified": "2024-03-28T21:40:47.026Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akash.borgalli/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Arvind Industries",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:af667c",
                        "ysrc": "akash.borgalli:13:b099fe",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:19ebbc",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Arvind Industries",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:612206",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Agromach Industries",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:e4bab2",
                        "ysrc": "akash.borgalli:13:ce9586",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:f4605d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Agromach Industries",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:5bf39b",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Anantha Metal Company",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:7aaa75",
                        "ysrc": "akash.borgalli:13:5ecdf0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:4e5e7e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Anantha Metal Company",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:13dfee",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Mahavir Impex",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:b22090",
                        "ysrc": "akash.borgalli:13:3c4349",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:a85269",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Mahavir Impex",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:5f9ca9",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Nandu Agencies",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:83eb13",
                        "ysrc": "akash.borgalli:13:bededc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:61629f",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Nandu Agencies",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:57007c",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Pothys Private Ltd.-Chenai",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:472d73",
                        "ysrc": "akash.borgalli:13:510407",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19D3F3",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:90eee2",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Pothys Private Ltd.-Chenai",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:5f4870",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Pothys Private Ltd.- BLR",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:fd0729",
                        "ysrc": "akash.borgalli:13:c347c4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:2cdd04",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Pothys Private Ltd.- BLR",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:973985",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Pothys Private Ltd.- Salem",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:c2eebe",
                        "ysrc": "akash.borgalli:13:15069b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:afac03",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Pothys Private Ltd.- Salem",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:e721ab",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Sri Purna Enterprises",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:eb28d4",
                        "ysrc": "akash.borgalli:13:c259a4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:ca1f0d",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Sri Purna Enterprises",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:39f8ee",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Singhvi Enterprises",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:32e93b",
                        "ysrc": "akash.borgalli:13:4af183",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:2614cd",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Singhvi Enterprises",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:f83c6c",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Zeal Enterprises",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:1bfc45",
                        "ysrc": "akash.borgalli:13:b25bdb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:47e1fb",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Zeal Enterprises",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:f87347",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Anjaiah Malyala Home",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:390633",
                        "ysrc": "akash.borgalli:13:b35f6c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:9ac82a",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Anjaiah Malyala Home",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:172899",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Garlapati Metal Stores",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:1df9c4",
                        "ysrc": "akash.borgalli:13:ab7007",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:2e1e81",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Garlapati Metal Stores",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:bfaf8a",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Mangal & Mangal",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:191416",
                        "ysrc": "akash.borgalli:13:983378",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:ee3a83",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Mangal & Mangal",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:8516bc",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Nisa Traders",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:019732",
                        "ysrc": "akash.borgalli:13:c51f48",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:30f323",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Nisa Traders",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:86289c",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "The bysaani company",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:cd2df3",
                        "ysrc": "akash.borgalli:13:2e7f40",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#19D3F3",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:afbd92",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "The bysaani company",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:a18a5b",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Yash Marketing",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:22b6fe",
                        "ysrc": "akash.borgalli:13:b08c0a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF6692",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:9c89e2",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Yash Marketing",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:faca73",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Kitser Retail Pvt. Ltd",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:720e06",
                        "ysrc": "akash.borgalli:13:22b19f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#B6E880",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:201a9e",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Kitser Retail Pvt. Ltd",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:ea7308",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Prakash Engineering co.",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:6fabb8",
                        "ysrc": "akash.borgalli:13:613018",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FF97FF",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:06b596",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Prakash Engineering co.",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:f9069b",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Supreme Trading Co.",
                        "type": "scatter",
                        "xsrc": "akash.borgalli:13:8e6183",
                        "ysrc": "akash.borgalli:13:c01da6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FECB52",
                            "symbol": "circle",
                            "sizeref": 0.08591083333333334,
                            "sizesrc": "akash.borgalli:13:04b364",
                            "sizemode": "area"
                        },
                        "showlegend": true,
                        "legendgroup": "Supreme Trading Co.",
                        "orientation": "v",
                        "customdatasrc": "akash.borgalli:13:7133bf",
                        "hovertemplate": "DISTRIBUTOR NAME=%{customdata[0]}<br>Target Sales=%{x}<br>Total Sales=%{y}<br>Achievement (%)=%{marker.size}<br>STATE=%{customdata[1]}<br>BILLING=%{customdata[2]}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Relationship between Sales, Targets, and Achievement Percentage"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Target Sales"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Total Sales"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "DISTRIBUTOR NAME"
                        },
                        "itemsizing": "constant",
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akash.borgalli",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 19:28:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akash.borgalli",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T21:40:19.433033Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loganlang/11.embed",
            "fid": "loganlang:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/loganlang/11/9_O1NTPZ12T9PU1KJGS5HRLNPTYPMQKY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/loganlang/11/2_5QBGWSIS8MTK0N94OL8DVZJVDY1YPH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/11/8_7EMLCDXT5N5PGC6P1QKYHPVQOK7RE4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/loganlang/11/9_O1NTPZ12T9PU1KJGS5HRLNPTYPMQKY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loganlang:11",
                "plots": "https://api.plotly.com/v2/plots/loganlang:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=loganlang"
            },
            "owner": "loganlang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~loganlang/11/",
            "world_readable": true,
            "date_modified": "2024-03-28T21:40:19.445Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loganlang/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": "2",
                        "cmin": "-2",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4]"
                            }
                        },
                        "type": "surface",
                        "xsrc": "loganlang:10:c7802c",
                        "ysrc": "loganlang:10:c65ee8",
                        "zsrc": "loganlang:10:eff324,eb97e4,2d8a18,b87bbc,cbb5fc",
                        "colorbar": {
                            "tickfont": {
                                "color": "rgb(51, 51, 51)"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "rebeccapurple"
                            ],
                            [
                                0.4,
                                "rebeccapurple"
                            ],
                            [
                                0.45,
                                "blue"
                            ],
                            [
                                0.5,
                                "green"
                            ],
                            [
                                0.55,
                                "yellow"
                            ],
                            [
                                0.6,
                                "red"
                            ],
                            [
                                1,
                                "red"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#00FF00",
                            "zerolinewidth": 4
                        },
                        "yaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#FF0000",
                            "zerolinewidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "range": [
                                "-2",
                                "2"
                            ],
                            "zerolinecolor": "#0000FF",
                            "zerolinewidth": 4
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.0116062452256778,
                                "y": -1.5249528165743709,
                                "z": 0.9150917814928148
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": 0,
                            "font": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "text": "Min: -0.149<br>Max: 0.091<br>Var: 0.24",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loganlang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-12-23 00:28:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loganlang",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T21:13:15.644567Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akash.borgalli/12.embed",
            "fid": "akash.borgalli:12",
            "filename": "total_sales_sunburst",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/12/9_L4HOKVZAR3AWX1SD25KX4O2SH943Z9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/12/2_65J7TG91DC20GRFOYFZ136LVX0M6IE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/12/8_1ISJKEQBT095Z0LRG7I8PFCSQVA8TM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akash.borgalli/12/9_L4HOKVZAR3AWX1SD25KX4O2SH943Z9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akash.borgalli:12",
                "plots": "https://api.plotly.com/v2/plots/akash.borgalli:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=akash.borgalli"
            },
            "owner": "akash.borgalli",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~akash.borgalli/12/",
            "world_readable": true,
            "date_modified": "2024-03-28T21:13:15.656Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akash.borgalli/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "sunburst",
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "idssrc": "akash.borgalli:11:84ace3",
                        "maxdepth": 2,
                        "labelssrc": "akash.borgalli:11:a7ab9c",
                        "valuessrc": "akash.borgalli:11:fe8239",
                        "parentssrc": "akash.borgalli:11:c3f752",
                        "branchvalues": "total",
                        "customdatasrc": "akash.borgalli:11:3a3ccd",
                        "hovertemplate": "labels=%{label}<br>TOTAL SALE=%{customdata[0]:,.2f}<br>parent=%{parent}<br>id=%{id}<br>Sales Percentage=%{customdata[1]:.2f}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Distribution of Total Sales by Billing Type and State"
                    },
                    "width": 700,
                    "height": 700,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "sunburstcolorway": [
                        "#2E91E5",
                        "#E15F99",
                        "#1CA71C",
                        "#FB0D0D",
                        "#DA16FF",
                        "#222A2A",
                        "#B68100",
                        "#750D86",
                        "#EB663B",
                        "#511CFB",
                        "#00A08B",
                        "#FB00D1",
                        "#FC0080",
                        "#B2828D",
                        "#6C7C32",
                        "#778AAE",
                        "#862A16",
                        "#A777F1",
                        "#620042",
                        "#1616A7",
                        "#DA60CA",
                        "#6C4516",
                        "#0D2A63",
                        "#AF0038"
                    ]
                }
            },
            "height": 700,
            "width": 700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akash.borgalli",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 19:28:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akash.borgalli",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-28T20:47:57.537238Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~alexisyanez/22.embed",
            "fid": "alexisyanez:22",
            "filename": "Plot 5 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/alexisyanez/22/9_T8U3OEEIZJGQPCE9DW67HY98QAZB85.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/alexisyanez/22/2_GTROS2JIJ0VNW70P3XW8F8FA7JUSVN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/alexisyanez/22/8_L1PQSTS5KK7RMNAP45KOUQ9P4RF7UC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/alexisyanez/22/9_T8U3OEEIZJGQPCE9DW67HY98QAZB85.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/alexisyanez:22",
                "plots": "https://api.plotly.com/v2/plots/alexisyanez:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=alexisyanez"
            },
            "owner": "alexisyanez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~alexisyanez/22/",
            "world_readable": true,
            "date_modified": "2024-03-28T20:47:58.932Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~alexisyanez/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "10 ms",
                        "type": "scatter",
                        "xsrc": "alexisyanez:17:6fc08a",
                        "ysrc": "alexisyanez:17:dbc1f9",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "50 ms",
                        "type": "scatter",
                        "xsrc": "alexisyanez:18:630bde",
                        "ysrc": "alexisyanez:18:d95a5f",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "100 ms",
                        "type": "scatter",
                        "xsrc": "alexisyanez:19:dad183",
                        "ysrc": "alexisyanez:19:7c74e9",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "200 ms",
                        "type": "scatter",
                        "xsrc": "alexisyanez:20:ddbd20",
                        "ysrc": "alexisyanez:20:6898e6",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "500 ms no-obs"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "500 ms",
                        "type": "scatter",
                        "xsrc": "alexisyanez:21:9b9ee5",
                        "ysrc": "alexisyanez:21:206483",
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4.543485793485786,
                            510.61590436590444
                        ],
                        "ticks": "",
                        "title": {
                            "text": "Tx-Rx distance"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -7.513795821836794,
                                511.7658651951124
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.017505109611200664,
                            1.0222953763637457
                        ],
                        "title": {
                            "text": "VAP"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.34172749846624545,
                        "y": 0.9567358993902438,
                        "xanchor": "left",
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~alexisyanez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 21:52:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "alexisyanez",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}