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=cD0yMDI0LTA0LTAzKzE2JTNBMjElM0E1Ny4wMTU5ODYlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTAzKzE1JTNBMzMlM0ExNS42NDIwMjIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wMysxNiUzQTExJTNBNDUuMTM5Mjg1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-03T16:11:45.139285Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/53.embed",
            "fid": "ASCIVOLETTO:53",
            "filename": "FullExitJune",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ASCIVOLETTO:53/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/53/2_OLC9BCDBQSS1MS3BDSY91HECVWH20L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/53/8_FFWKH6NYN64L2U83C5DITG4Z1IXSHE.png",
                "list-thumb": "https://api.plotly.com/v2/files/ASCIVOLETTO:53/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ASCIVOLETTO:53",
                "plots": "https://api.plotly.com/v2/plots/ASCIVOLETTO:53",
                "parent": "https://api.plotly.com/v2/folders/home?user=ASCIVOLETTO"
            },
            "owner": "ASCIVOLETTO",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/53/",
            "world_readable": true,
            "date_modified": "2024-06-17T08:56:12.072Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/53/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "visible": false
                        },
                        "uid": "1824af",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(6, 6, 6)",
                            "shape": "linear",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Coef Trend",
                        "side": "both",
                        "type": "violin",
                        "xsrc": "ASCIVOLETTO:52:97b6dd",
                        "ysrc": "ASCIVOLETTO:52:ade358",
                        "marker": {
                            "line": {
                                "color": "rgb(6, 6, 6)",
                                "width": 0
                            },
                            "size": 1,
                            "color": "rgb(6, 6, 6)",
                            "symbol": "circle",
                            "opacity": 1
                        },
                        "opacity": 1,
                        "visible": true,
                        "meanline": {
                            "visible": false
                        },
                        "spanmode": "soft",
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgba(2, 2, 2, 0.5)",
                        "scalemode": "width",
                        "showlegend": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "0cbf81",
                        "fill": "tonexty",
                        "line": {
                            "color": "rgb(6, 6, 6)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "box",
                        "xsrc": "ASCIVOLETTO:52:97b6dd",
                        "ysrc": "ASCIVOLETTO:52:b404a1",
                        "width": 0,
                        "jitter": 0,
                        "boxmean": false,
                        "hoveron": "boxes+points",
                        "notched": true,
                        "opacity": 1,
                        "boxpoints": false,
                        "fillcolor": "rgb(230, 236, 254)",
                        "hoverinfo": "x+y+name",
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "notchwidth": 0.10000000000000003,
                        "showlegend": false,
                        "stackgroup": null,
                        "connectgaps": true,
                        "whiskerwidth": 0.2,
                        "hovertemplate": ""
                    },
                    {
                        "uid": "12ee11",
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "Pre",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:52:d80ca1",
                        "ysrc": "ASCIVOLETTO:52:53a466",
                        "marker": {
                            "line": {
                                "color": "rgb(18, 18, 18)",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(85, 160, 231)",
                            "symbol": "circle",
                            "maxdisplayed": 18
                        },
                        "visible": true,
                        "boxpoints": false,
                        "showlegend": true
                    },
                    {
                        "uid": "30e82f",
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H"
                            }
                        },
                        "mode": "markers",
                        "name": "Post",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:52:76e096",
                        "ysrc": "ASCIVOLETTO:52:a7234b",
                        "marker": {
                            "line": {
                                "color": "rgb(5, 5, 5)",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(53, 211, 36)"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "uid": "417c04",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "opacity": 1,
                        "showlegend": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "12ee11",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.01428029433301785,
                                        "value": -0.008069856992994555
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.10510012054166037,
                                        "value": 0.2016032545455354
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "74ad7f",
                        "line": {
                            "color": "rgb(2, 2, 2)",
                            "width": 1
                        },
                        "opacity": 1,
                        "showlegend": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "30e82f",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.006329860290843144,
                                        "value": 0.013623790659339807
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.04475887135618246,
                                        "value": -0.10856079010988415
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "color": "rgb(10, 9, 9)",
                        "family": "Times New Roman"
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 17
                        },
                        "text": "Full Exits"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -12.5,
                            12.5
                        ],
                        "title": {
                            "text": "Quarters to Transaction"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 17,
                        "showgrid": true,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "gridwidth": 1,
                        "linewidth": 1,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                1,
                                10
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(92, 129, 189)",
                        "zerolinewidth": 13
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -1,
                            1
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Score"
                        },
                        "domain": [
                            0.0071532231178051036,
                            1
                        ],
                        "nticks": 9,
                        "ticklen": 4,
                        "showline": true,
                        "autorange": false,
                        "tickwidth": 1
                    },
                    "boxgap": 0.88,
                    "legend": {
                        "x": 0.8813699856242904,
                        "y": 0.919567286597765,
                        "font": {
                            "size": 12
                        },
                        "title": {
                            "font": {
                                "size": 14
                            },
                            "text": "Legend:"
                        },
                        "valign": "top",
                        "bgcolor": "rgb(248, 252, 255)",
                        "xanchor": "center",
                        "yanchor": "middle",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "bordercolor": "rgb(3, 0, 0)",
                        "borderwidth": 1,
                        "orientation": "v"
                    },
                    "shapes": [
                        {
                            "x0": -12,
                            "x1": -12.0001,
                            "y0": -0.3266412,
                            "y1": 0.2698446,
                            "line": {
                                "color": "rgb(10, 10, 10)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 0,
                            "x1": 0.001,
                            "y0": 1,
                            "y1": -1,
                            "line": {
                                "dash": "dot",
                                "color": "rgb(247, 1, 1)",
                                "width": 1
                            },
                            "type": "rect",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 0, 0)"
                        },
                        {
                            "x0": -11,
                            "x1": -11.0001,
                            "y0": -0.1102741,
                            "y1": 0.5047771,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(0, 0, 0)"
                        },
                        {
                            "x0": -10,
                            "x1": -10.0001,
                            "y0": 0.2492334,
                            "y1": 0.9313323,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(3, 3, 3)"
                        },
                        {
                            "x0": -9,
                            "x1": -9.0001,
                            "y0": 0.0904512,
                            "y1": 0.6264282,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": -8,
                            "x1": -8.0001,
                            "y0": 0.0970992,
                            "y1": 0.6264282,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -13,
                            "x1": 13,
                            "y0": 0,
                            "y1": 0.001,
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(3, 3, 3)"
                        },
                        {
                            "x0": -7,
                            "x1": -7.0001,
                            "y0": 0.0249062,
                            "y1": 0.3903608,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(13, 13, 13)"
                        },
                        {
                            "x0": -6,
                            "x1": -6.0001,
                            "y0": -0.0202031,
                            "y1": 0.8094616,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -5,
                            "x1": -5.0001,
                            "y0": 0.0934666,
                            "y1": 0.5668422,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -4,
                            "x1": -4.0001,
                            "y0": -0.0068763,
                            "y1": 0.3653402,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -3,
                            "x1": -3.0001,
                            "y0": -0.0253296,
                            "y1": 0.308361,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -2,
                            "x1": -2.0001,
                            "y0": 0.0881431,
                            "y1": 0.4464906,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -1,
                            "x1": -1.0001,
                            "y0": -0.1590024,
                            "y1": 0.2763306,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 1,
                            "x1": 1.0001,
                            "y0": -0.341934,
                            "y1": 0.1122614,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 2,
                            "x1": 2.0001,
                            "y0": -0.358406,
                            "y1": 0.0231977,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 3,
                            "x1": 3.0001,
                            "y0": -0.3507261,
                            "y1": 0.2366228,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 4,
                            "x1": 4.0001,
                            "y0": -0.3291875,
                            "y1": 0.1253591,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 5,
                            "x1": 5.0001,
                            "y0": -0.2876391,
                            "y1": 0.2929417,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 6,
                            "x1": 6.0001,
                            "y0": -0.1658896,
                            "y1": 0.4648782,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 7,
                            "x1": 7.0001,
                            "y0": -0.1787465,
                            "y1": 0.2564297,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 8,
                            "x1": 8.0001,
                            "y0": -0.3771078,
                            "y1": 0.236052,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 9,
                            "x1": 9.0001,
                            "y0": -0.2290527,
                            "y1": 0.3075574,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 10,
                            "x1": 10.0001,
                            "y0": -0.2314467,
                            "y1": 0.341098,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 11,
                            "x1": 11.0001,
                            "y0": -0.3931555,
                            "y1": 0.1546167,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 12,
                            "x1": 12.0001,
                            "y0": -0.2306219,
                            "y1": 0.0873002,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -12.5,
                            "x1": 12.5,
                            "y0": -1,
                            "y1": -0.9999,
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 2
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": -12.5,
                            "x1": -12.5001,
                            "y0": -1,
                            "y1": 1,
                            "line": {
                                "color": "rgb(5, 5, 5)",
                                "width": 2
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": 0,
                            "x1": 0.001,
                            "y0": -0.3019903,
                            "y1": 0.0954771,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        }
                    ],
                    "boxmode": "overlay",
                    "modebar": {
                        "color": "rgba(98, 15, 15, 0.3)",
                        "bgcolor": "rgba(144, 81, 81, 0.5)",
                        "activecolor": "rgba(227, 178, 178, 0.7)",
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "lasso",
                    "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"
                    },
                    "hovermode": "x",
                    "violingap": 0.88,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#00224e"
                            ],
                            [
                                0.1111111111111111,
                                "#123570"
                            ],
                            [
                                0.2222222222222222,
                                "#3b496c"
                            ],
                            [
                                0.3333333333333333,
                                "#575d6d"
                            ],
                            [
                                0.4444444444444444,
                                "#707173"
                            ],
                            [
                                0.5555555555555556,
                                "#8a8678"
                            ],
                            [
                                0.6666666666666666,
                                "#a59c74"
                            ],
                            [
                                0.7777777777777778,
                                "#c3b369"
                            ],
                            [
                                0.8888888888888888,
                                "#e1cc55"
                            ],
                            [
                                1,
                                "#fee838"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 14
                        }
                    },
                    "showlegend": true,
                    "boxgroupgap": 0.12,
                    "uniformtext": {
                        "mode": false
                    },
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)",
                    "violingroupgap": 0.12
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ASCIVOLETTO",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2023-03-30 13:28:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ASCIVOLETTO",
                "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-04-03T16:04:14.310840Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/51.embed",
            "fid": "ASCIVOLETTO:51",
            "filename": "VCAllExitJune",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ASCIVOLETTO:51/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/51/2_9W8PH47KTSQMDZ91XSJKR5SUGICU6Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ASCIVOLETTO/51/8_LZ3JO786ZTDT6DR1S50NQ5XZ7UN126.png",
                "list-thumb": "https://api.plotly.com/v2/files/ASCIVOLETTO:51/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ASCIVOLETTO:51",
                "plots": "https://api.plotly.com/v2/plots/ASCIVOLETTO:51",
                "parent": "https://api.plotly.com/v2/folders/home?user=ASCIVOLETTO"
            },
            "owner": "ASCIVOLETTO",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/51/",
            "world_readable": true,
            "date_modified": "2024-06-17T08:17:51.277Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ASCIVOLETTO/51/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "visible": false
                        },
                        "uid": "1824af",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(6, 6, 6)",
                            "shape": "linear",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Coef Trend",
                        "side": "both",
                        "type": "violin",
                        "xsrc": "ASCIVOLETTO:50:d5949c",
                        "ysrc": "ASCIVOLETTO:50:0e5cf9",
                        "marker": {
                            "line": {
                                "color": "rgb(6, 6, 6)",
                                "width": 0
                            },
                            "size": 1,
                            "color": "rgb(6, 6, 6)",
                            "symbol": "circle",
                            "opacity": 1
                        },
                        "opacity": 1,
                        "visible": true,
                        "meanline": {
                            "visible": false
                        },
                        "spanmode": "soft",
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgba(2, 2, 2, 0.5)",
                        "scalemode": "width",
                        "showlegend": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "0cbf81",
                        "fill": "tonexty",
                        "line": {
                            "color": "rgb(6, 6, 6)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "box",
                        "xsrc": "ASCIVOLETTO:50:d5949c",
                        "ysrc": "ASCIVOLETTO:50:4e56f5",
                        "width": 0,
                        "jitter": 0,
                        "boxmean": false,
                        "hoveron": "boxes+points",
                        "notched": true,
                        "opacity": 1,
                        "boxpoints": false,
                        "fillcolor": "rgb(230, 236, 254)",
                        "hoverinfo": "x+y+name",
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "notchwidth": 0.10000000000000003,
                        "showlegend": false,
                        "stackgroup": null,
                        "connectgaps": true,
                        "whiskerwidth": 0.2,
                        "hovertemplate": ""
                    },
                    {
                        "uid": "12ee11",
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "Pre",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:50:caccbd",
                        "ysrc": "ASCIVOLETTO:50:47228b",
                        "marker": {
                            "line": {
                                "color": "rgb(18, 18, 18)",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(85, 160, 231)",
                            "symbol": "circle",
                            "maxdisplayed": 18
                        },
                        "visible": true,
                        "boxpoints": false,
                        "showlegend": true
                    },
                    {
                        "uid": "30e82f",
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H"
                            }
                        },
                        "mode": "markers",
                        "name": "Post",
                        "type": "scatter",
                        "xsrc": "ASCIVOLETTO:50:e2bb7f",
                        "ysrc": "ASCIVOLETTO:50:d8ab23",
                        "marker": {
                            "line": {
                                "color": "rgb(5, 5, 5)",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(53, 211, 36)"
                        },
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "uid": "417c04",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "opacity": 1,
                        "showlegend": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "12ee11",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.007716804675088443,
                                        "value": 0.001667731468547753
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.056794144618811764,
                                        "value": 0.3445821045455604
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "74ad7f",
                        "line": {
                            "color": "rgb(2, 2, 2)",
                            "width": 1
                        },
                        "opacity": 1,
                        "showlegend": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "30e82f",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0036122991376661934,
                                        "value": -0.011039796153845403
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.02554281215918084,
                                        "value": 0.14765202307691858
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "color": "rgb(10, 9, 9)",
                        "family": "Times New Roman"
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 17
                        },
                        "text": "All Exits"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -12.5,
                            12.5
                        ],
                        "title": {
                            "text": "Quarters to Transaction"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 17,
                        "showgrid": true,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "gridwidth": 1,
                        "linewidth": 1,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                1,
                                10
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(92, 129, 189)",
                        "zerolinewidth": 13
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.7,
                            0.7
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Score"
                        },
                        "domain": [
                            0.0071532231178051036,
                            1
                        ],
                        "nticks": 9,
                        "ticklen": 4,
                        "showline": true,
                        "autorange": false,
                        "tickwidth": 1
                    },
                    "boxgap": 0.88,
                    "legend": {
                        "x": 0.8813699856242904,
                        "y": 0.919567286597765,
                        "font": {
                            "size": 12
                        },
                        "title": {
                            "font": {
                                "size": 14
                            },
                            "text": "Legend:"
                        },
                        "valign": "top",
                        "bgcolor": "rgb(248, 252, 255)",
                        "xanchor": "center",
                        "yanchor": "middle",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "bordercolor": "rgb(3, 0, 0)",
                        "borderwidth": 1,
                        "orientation": "v"
                    },
                    "shapes": [
                        {
                            "x0": -12,
                            "x1": -12.0001,
                            "y0": -0.0953145,
                            "y1": 0.3321927,
                            "line": {
                                "color": "rgb(10, 10, 10)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 0,
                            "x1": 0.001,
                            "y0": 1,
                            "y1": -1,
                            "line": {
                                "dash": "dot",
                                "color": "rgb(247, 1, 1)",
                                "width": 1
                            },
                            "type": "rect",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 0, 0)"
                        },
                        {
                            "x0": -11,
                            "x1": -11.0001,
                            "y0": 0.1520514,
                            "y1": 0.4817872,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(0, 0, 0)"
                        },
                        {
                            "x0": -10,
                            "x1": -10.0001,
                            "y0": 0.298522,
                            "y1": 0.6505923,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(3, 3, 3)"
                        },
                        {
                            "x0": -9,
                            "x1": -9.0001,
                            "y0": 0.2237365,
                            "y1": 0.5135889,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": -8,
                            "x1": -8.0001,
                            "y0": 0.2326301,
                            "y1": 0.5599135,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -13,
                            "x1": 13,
                            "y0": 0,
                            "y1": 0.001,
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(3, 3, 3)"
                        },
                        {
                            "x0": -7,
                            "x1": -7.0001,
                            "y0": 0.2267363,
                            "y1": 0.5786653,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(13, 13, 13)"
                        },
                        {
                            "x0": -6,
                            "x1": -6.0001,
                            "y0": 0.1076184,
                            "y1": 0.5705211,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        },
                        {
                            "x0": -5,
                            "x1": -5.0001,
                            "y0": 0.1980728,
                            "y1": 0.5167646,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -4,
                            "x1": -4.0001,
                            "y0": 0.1248405,
                            "y1": 0.4458918,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -3,
                            "x1": -3.0001,
                            "y0": 0.1477507,
                            "y1": 0.519869,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -2,
                            "x1": -2.0001,
                            "y0": 0.0976216,
                            "y1": 0.4169563,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -1,
                            "x1": -1.0001,
                            "y0": 0.2205589,
                            "y1": 0.4882372,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 1,
                            "x1": 1.0001,
                            "y0": -0.0798037,
                            "y1": 0.2562188,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 2,
                            "x1": 2.0001,
                            "y0": -0.0077544,
                            "y1": 0.2865276,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 3,
                            "x1": 3.0001,
                            "y0": -0.0551704,
                            "y1": 0.244885,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 4,
                            "x1": 4.0001,
                            "y0": -0.0280549,
                            "y1": 0.2530806,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 5,
                            "x1": 5.0001,
                            "y0": -0.1441077,
                            "y1": 0.15841,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 6,
                            "x1": 6.0001,
                            "y0": -0.0066949,
                            "y1": 0.2585439,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 7,
                            "x1": 7.0001,
                            "y0": -0.0311558,
                            "y1": 0.2216581,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 8,
                            "x1": 8.0001,
                            "y0": -0.0060563,
                            "y1": 0.275131,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 9,
                            "x1": 9.0001,
                            "y0": -0.0518427,
                            "y1": 0.2196032,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 10,
                            "x1": 10.0001,
                            "y0": -0.0947413,
                            "y1": 0.2176137,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 11,
                            "x1": 11.0001,
                            "y0": -0.117058,
                            "y1": 0.1018145,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": 12,
                            "x1": 12.0001,
                            "y0": -0.2061891,
                            "y1": 0.109453,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        },
                        {
                            "x0": -12.5,
                            "x1": 12.5,
                            "y0": -0.7,
                            "y1": -0.6999,
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 2
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": -12.5,
                            "x1": -12.5001,
                            "y0": -0.7,
                            "y1": 0.7,
                            "line": {
                                "color": "rgb(5, 5, 5)",
                                "width": 2
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(8, 8, 8)"
                        },
                        {
                            "x0": 0,
                            "x1": 0.001,
                            "y0": 0.0513403,
                            "y1": 0.2910946,
                            "line": {
                                "color": "#444444",
                                "width": 1
                            },
                            "opacity": 1,
                            "fillcolor": "rgb(68, 68, 68)"
                        }
                    ],
                    "boxmode": "overlay",
                    "modebar": {
                        "color": "rgba(98, 15, 15, 0.3)",
                        "bgcolor": "rgba(144, 81, 81, 0.5)",
                        "activecolor": "rgba(227, 178, 178, 0.7)",
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "lasso",
                    "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"
                    },
                    "hovermode": "x",
                    "violingap": 0.88,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#00224e"
                            ],
                            [
                                0.1111111111111111,
                                "#123570"
                            ],
                            [
                                0.2222222222222222,
                                "#3b496c"
                            ],
                            [
                                0.3333333333333333,
                                "#575d6d"
                            ],
                            [
                                0.4444444444444444,
                                "#707173"
                            ],
                            [
                                0.5555555555555556,
                                "#8a8678"
                            ],
                            [
                                0.6666666666666666,
                                "#a59c74"
                            ],
                            [
                                0.7777777777777778,
                                "#c3b369"
                            ],
                            [
                                0.8888888888888888,
                                "#e1cc55"
                            ],
                            [
                                1,
                                "#fee838"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 14
                        }
                    },
                    "showlegend": true,
                    "boxgroupgap": 0.12,
                    "uniformtext": {
                        "mode": false
                    },
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)",
                    "violingroupgap": 0.12
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ASCIVOLETTO",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2023-03-30 13:28:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ASCIVOLETTO",
                "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-04-03T15:59:36.581461Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chidianachebe0/16.embed",
            "fid": "chidianachebe0:16",
            "filename": "PLA UV 12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chidianachebe0/16/9_WXWGUYMA7FSCNQQZHC203LKF960HZM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chidianachebe0/16/2_UINN1SMB86YDVJXE3V0JG2A4F8KNAI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chidianachebe0/16/8_LVXDG7F4EP3SA0YTXFFTD5PRC2HVVI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chidianachebe0/16/9_WXWGUYMA7FSCNQQZHC203LKF960HZM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chidianachebe0:16",
                "plots": "https://api.plotly.com/v2/plots/chidianachebe0:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=chidianachebe0"
            },
            "owner": "chidianachebe0",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~chidianachebe0/16/",
            "world_readable": true,
            "date_modified": "2024-04-03T16:00:47.057Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chidianachebe0/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "80 for 3 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:12:1722b6",
                        "ysrc": "chidianachebe0:12:e6f1fd"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "110 for 1 hr",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:10:acb705",
                        "ysrc": "chidianachebe0:10:fb3e96",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "110 for 3 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:14:8072ee",
                        "ysrc": "chidianachebe0:14:465255",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "110 for 3 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:15:79ae18",
                        "ysrc": "chidianachebe0:15:85bcc7",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "110 for 3 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:11:f6cc25",
                        "ysrc": "chidianachebe0:11:256f6b",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "110 for 5 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:8:6920f7",
                        "ysrc": "chidianachebe0:8:0a33ed",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "140 for 3 hrs",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:13:ebf1b1",
                        "ysrc": "chidianachebe0:13:0f3711",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "chidianachebe0:9:a040c7",
                        "ysrc": "chidianachebe0:9:43a5df",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Stress-Strain of PLA after 12 hours of UV"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            39.3512
                        ],
                        "title": {
                            "text": "Compressive Strain/%"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.3804,
                            102.0996
                        ],
                        "title": {
                            "text": "Compressive Stress/MPa"
                        },
                        "autorange": true
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chidianachebe0",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 14:25:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chidianachebe0",
                "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-04-03T15:56:26.132869Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lilycosta677/29.embed",
            "fid": "lilycosta677:29",
            "filename": "new onion plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lilycosta677/29/9_Y8DZAQWL3Z860RWQHS3G6L7PSUSY44.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lilycosta677/29/2_YTY0B0EEQNGNBF8RYN8FJ2B4ZN6S80.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lilycosta677/29/8_FHBVSEQ2FXWOU53KJJQKQ3D56WOOPK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lilycosta677/29/9_Y8DZAQWL3Z860RWQHS3G6L7PSUSY44.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lilycosta677:29",
                "plots": "https://api.plotly.com/v2/plots/lilycosta677:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=lilycosta677"
            },
            "owner": "lilycosta677",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~lilycosta677/29/",
            "world_readable": true,
            "date_modified": "2024-04-03T15:56:26.155Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lilycosta677/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "23a555",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Onion Cell FIeld of View",
                        "type": "scatter",
                        "xsrc": "lilycosta677:28:10d709",
                        "ysrc": "lilycosta677:28:6fd4a2"
                    },
                    {
                        "uid": "a3d322",
                        "name": "Trend Line",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "23a555",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.004169730182307407,
                                        "value": -0.00022639860140147603
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 2.3162520080393194,
                                        "value": 6.196128871130212
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -63.08749096167752,
                            1063.0874909616775
                        ],
                        "title": {
                            "text": "Distance from Root Tip (µm)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.5898305084745765,
                            21.68983050847458
                        ],
                        "title": {
                            "text": "Mitotic Index (%)"
                        },
                        "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lilycosta677",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-10-08 18:53:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lilycosta677",
                "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-04-03T15:56:06.027852Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marwaneltaher/2.embed",
            "fid": "marwaneltaher:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marwaneltaher/2/9_RK2JU0TSN88GX5O5NORTED8OUKI1HS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marwaneltaher/2/2_Q55HV8ADT8ATUAIZUEUVEGDRTJW0RE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marwaneltaher/2/8_WCL9ATLUOZTBDG9KFT5ZPLKJT1I5UQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marwaneltaher/2/9_RK2JU0TSN88GX5O5NORTED8OUKI1HS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marwaneltaher:2",
                "plots": "https://api.plotly.com/v2/plots/marwaneltaher:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=marwaneltaher"
            },
            "owner": "marwaneltaher",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~marwaneltaher/2/",
            "world_readable": true,
            "date_modified": "2024-04-03T15:56:06.043Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marwaneltaher/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "black",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "marwaneltaher:1:9ef40a",
                        "ysrc": "marwaneltaher:1:5f4d69",
                        "zsrc": "marwaneltaher:1:eaa70f",
                        "marker": {
                            "cmax": 12.566370614359172,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "z"
                                }
                            },
                            "size": 6,
                            "cauto": true,
                            "colorsrc": "marwaneltaher:0:1296f6",
                            "colorscale": [
                                [
                                    0,
                                    "#2a3f5f"
                                ],
                                [
                                    0.2,
                                    "#A2B1C6"
                                ],
                                [
                                    0.4,
                                    "#0D76BF"
                                ],
                                [
                                    0.6,
                                    "#00cc96"
                                ],
                                [
                                    0.8,
                                    "#e6915a"
                                ],
                                [
                                    1,
                                    "#EF553B"
                                ]
                            ],
                            "reversescale": false,
                            "autocolorscale": false
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062371495440084,
                                1.0624961059224267
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "X"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": false,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal",
                            "showspikes": true,
                            "showbackground": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062466899825041,
                                1.062466899825041
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Y"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal",
                            "showspikes": true
                        },
                        "zaxis": {
                            "type": "linear",
                            "dtick": 2,
                            "range": [
                                -0.39269908169872414,
                                12.959069696057897
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Arial"
                                },
                                "text": "Z"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "rangemode": "normal",
                            "showspikes": true
                        },
                        "camera": {
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "hovermode": "closest",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Helix Curve using 3D Scatter"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1.123040388539189,
                            1.1231649990215318
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.1546139768213612,
                            1.1546139768213612
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~marwaneltaher",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2024-04-03 15:55:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marwaneltaher",
                "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-04-03T15:45:49.614188Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~les172/101.embed",
            "fid": "les172:101",
            "filename": "AAV_dist_PCR_low_brain",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/les172/101/9_1Y2E9CU4OVWLFGRS6JGIIV8F63JU20.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/les172/101/2_T2DPHQTHNTYHMQD9J00N1OCN0N3V0D.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/les172/101/8_N2AJAXYSQP290GQQT7UFF96LFLG2J6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/les172/101/9_1Y2E9CU4OVWLFGRS6JGIIV8F63JU20.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/les172:101",
                "plots": "https://api.plotly.com/v2/plots/les172:101",
                "parent": "https://api.plotly.com/v2/folders/home?user=les172"
            },
            "owner": "les172",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~les172/101/",
            "world_readable": true,
            "date_modified": "2024-04-04T15:13:09.591Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~les172/101/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 0
                        },
                        "meta": {
                            "columnNames": {
                                "x": "group",
                                "y": "Vehicle"
                            }
                        },
                        "name": "Vehicle",
                        "type": "violin",
                        "xsrc": "les172:100:db5b72",
                        "ysrc": "les172:100:373cb9",
                        "marker": {
                            "size": 4,
                            "color": "rgb(12, 4, 247)",
                            "symbol": "diamond-open"
                        },
                        "points": "all",
                        "opacity": 1,
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": "all",
                        "fillcolor": "rgba(0, 0, 0, 0)",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "width": 0
                        },
                        "meta": {
                            "columnNames": {
                                "x": "group",
                                "y": "PLGA"
                            }
                        },
                        "name": "PLGA",
                        "type": "violin",
                        "xsrc": "les172:100:db5b72",
                        "ysrc": "les172:100:cdece7",
                        "marker": {
                            "size": 5,
                            "color": "rgb(255, 3, 7)",
                            "symbol": "circle"
                        },
                        "points": "all",
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": "all",
                        "fillcolor": "rgba(0, 0, 0, 0)",
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "group",
                                "y": "Vehicle",
                                "error_y": {
                                    "array": "ErrProg"
                                }
                            }
                        },
                        "name": "Vehicle",
                        "type": "bar",
                        "xsrc": "les172:100:db5b72",
                        "ysrc": "les172:100:373cb9",
                        "marker": {
                            "line": {
                                "color": "rgb(12, 4, 247)",
                                "width": 1
                            },
                            "color": "rgba(0, 0, 0, 0)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "SDevVeh"
                                }
                            },
                            "type": "data",
                            "width": 5,
                            "visible": true,
                            "arraysrc": "les172:100:812e71",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "fillcolor": "rgba(0, 0, 0, 0)",
                        "showlegend": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "group"
                                    }
                                },
                                "type": "aggregate",
                                "groupssrc": "les172:100:db5b72",
                                "aggregations": [
                                    {
                                        "func": "avg",
                                        "target": "y",
                                        "enabled": true
                                    }
                                ]
                            }
                        ],
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "group",
                                "y": "PLGA",
                                "error_y": {
                                    "array": "ErrReg"
                                }
                            }
                        },
                        "name": "PLGA",
                        "type": "bar",
                        "xsrc": "les172:100:db5b72",
                        "ysrc": "les172:100:cdece7",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 3, 7)",
                                "width": 1
                            },
                            "color": "rgba(0, 0, 0, 0)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "SErrPLGA"
                                }
                            },
                            "type": "data",
                            "width": 5,
                            "visible": true,
                            "arraysrc": "les172:100:de94a9",
                            "symmetric": true,
                            "thickness": 1
                        },
                        "fillcolor": "rgba(0, 0, 0, 0)",
                        "showlegend": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "group"
                                    }
                                },
                                "type": "aggregate",
                                "groupssrc": "les172:100:db5b72",
                                "aggregations": [
                                    {
                                        "func": "avg",
                                        "target": "y",
                                        "enabled": true
                                    }
                                ]
                            }
                        ],
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "Vehicle",
                        "type": "scatter",
                        "ysrc": "les172:100:92f47f",
                        "xaxis": "x2",
                        "marker": {
                            "size": 5,
                            "color": "rgb(3, 19, 252)",
                            "symbol": "diamond-open"
                        },
                        "showlegend": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "mode": "markers",
                        "name": "PLGA",
                        "type": "scatter",
                        "ysrc": "les172:100:ba4e99",
                        "xaxis": "x2",
                        "marker": {
                            "size": 5,
                            "color": "rgb(244, 5, 13)",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Arial"
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 600,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            7.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": ""
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "showspikes": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "log",
                        "range": [
                            3,
                            7.158609852398429
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Vector copy number"
                        },
                        "anchor": "x",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "autorange": false,
                        "showspikes": false,
                        "exponentformat": "e"
                    },
                    "bargap": 0.30000000000000004,
                    "height": 300,
                    "legend": {
                        "x": 0,
                        "y": 1.0597704991087347,
                        "font": {
                            "size": 13
                        },
                        "valign": "top",
                        "bgcolor": "rgba(0, 0, 0, 0)",
                        "xanchor": "left",
                        "itemsizing": "trace",
                        "bordercolor": "rgba(0, 0, 0, 0)",
                        "borderwidth": 0,
                        "orientation": "h",
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "b": 40,
                        "l": 100,
                        "r": 70,
                        "t": 40,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "category",
                        "range": [
                            -0.3258820949994794,
                            0.9972720012664972
                        ],
                        "anchor": "y",
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": "x",
                        "showticklabels": false
                    },
                    "boxmode": "group",
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": false,
                    "clickmode": "none",
                    "hovermode": false,
                    "showlegend": true,
                    "violinmode": "group",
                    "bargroupgap": 0.15,
                    "violingroupgap": 0
                }
            },
            "height": 300,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~les172",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-01-07 22:19:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "les172",
                "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-04-03T15:43:59.776332Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~maylispeyret/33.embed",
            "fid": "maylispeyret:33",
            "filename": "%capacity",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/33/9_05LH1SRXHBQ0BLCP2SCE5YV7OH9KLH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/33/2_UA0UIWBYZKMC978C0US2J7UK6YHHWW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/33/8_VZB05ZK74ZG47Q4DD8W561S39UMS9Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/maylispeyret/33/9_05LH1SRXHBQ0BLCP2SCE5YV7OH9KLH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/maylispeyret:33",
                "plots": "https://api.plotly.com/v2/plots/maylispeyret:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=maylispeyret"
            },
            "owner": "maylispeyret",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~maylispeyret/33/",
            "world_readable": true,
            "date_modified": "2024-10-10T15:19:43.131Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~maylispeyret/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2e23f8",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "actual",
                        "type": "scatter",
                        "xsrc": "maylispeyret:32:d3b36b",
                        "ysrc": "maylispeyret:32:e1edfb"
                    },
                    {
                        "uid": "575aba",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "forecasts"
                            }
                        },
                        "mode": "lines",
                        "name": "forecasts",
                        "type": "scatter",
                        "xsrc": "maylispeyret:32:d3b36b",
                        "ysrc": "maylispeyret:32:4246ac",
                        "stackgroup": null
                    },
                    {
                        "uid": "7f208f",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "2e23f8",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0005455274194774706,
                                        "value": 0.0015230605569851428
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 167.47375469185621,
                                        "value": 7314.254790636435
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "0482d1",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "575aba",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0006411071571384002,
                                        "value": -0.0003615117993193565
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 118.85976871567148,
                                        "value": 8020.255649434341
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "% Mine capacity"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2022-12-29 13:15:59.6038",
                            "2025-09-05 18:21:56.9887"
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "range": [
                            6522.890828915584,
                            8705.0742506039
                        ],
                        "nticks": 0,
                        "autorange": true,
                        "tickformat": ".2g",
                        "showticklabels": true,
                        "separatethousands": 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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~maylispeyret",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2023-05-21 19:41:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "maylispeyret",
                "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-04-03T15:41:17.938948Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kubix448/59.embed",
            "fid": "kubix448:59",
            "filename": "PredLengthLineFixed",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kubix448/59/9_XEVZUMLB67P4RZGEMADOEU98RNVNQ7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kubix448/59/2_2TZV0QJ2AQ679ZZXKB7R2XEP8LC0NT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/59/8_YBDYD9OSTF21BH0DTENSVWU9NWSETX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/59/9_XEVZUMLB67P4RZGEMADOEU98RNVNQ7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kubix448:59",
                "plots": "https://api.plotly.com/v2/plots/kubix448:59",
                "parent": "https://api.plotly.com/v2/folders/home?user=kubix448"
            },
            "owner": "kubix448",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kubix448/59/",
            "world_readable": true,
            "date_modified": "2024-06-11T17:17:51.283Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kubix448/59/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "SSA",
                        "type": "scatter",
                        "xsrc": "kubix448:58:457500",
                        "ysrc": "kubix448:58:0258b4",
                        "boxpoints": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "B"
                                    }
                                },
                                "type": "filter",
                                "value": [
                                    "Hodnota",
                                    "2 Hodnoty",
                                    "3 Hodnoty"
                                ],
                                "operation": "}{",
                                "targetsrc": "kubix448:58:457500"
                            },
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "B"
                                    }
                                },
                                "type": "aggregate",
                                "groupssrc": "kubix448:58:457500",
                                "aggregations": [
                                    null,
                                    {
                                        "func": "avg",
                                        "target": "x",
                                        "enabled": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "line": {
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "Holt-Winters",
                        "type": "scatter",
                        "xsrc": "kubix448:58:457500",
                        "ysrc": "kubix448:58:c2de67",
                        "boxpoints": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "B"
                                    }
                                },
                                "type": "filter",
                                "value": [
                                    "Hodnota",
                                    "2 Hodnoty",
                                    "3 Hodnoty"
                                ],
                                "operation": "}{",
                                "targetsrc": "kubix448:58:457500"
                            },
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "B"
                                    }
                                },
                                "type": "aggregate",
                                "groupssrc": "kubix448:58:457500",
                                "aggregations": [
                                    null,
                                    {
                                        "func": "avg",
                                        "target": "y",
                                        "enabled": true
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "line": {
                            "color": "rgb(171, 99, 250)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "ARIMA",
                        "type": "scatter",
                        "xsrc": "kubix448:58:457500",
                        "ysrc": "kubix448:58:6a8ebf",
                        "boxpoints": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "B"
                                    }
                                },
                                "type": "filter",
                                "value": [
                                    "Hodnota",
                                    "2 Hodnoty",
                                    "3 Hodnoty"
                                ],
                                "operation": "}{",
                                "targetsrc": "kubix448:58:457500"
                            },
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "B"
                                    }
                                },
                                "type": "aggregate",
                                "groupssrc": "kubix448:58:457500",
                                "aggregations": [
                                    null,
                                    {
                                        "func": "avg",
                                        "target": "y",
                                        "enabled": true
                                    }
                                ]
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 36
                        },
                        "text": ""
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            1,
                            3
                        ],
                        "title": {
                            "font": {
                                "size": 36
                            },
                            "text": "Délka predikce"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 28
                        },
                        "autorange": false,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            55.376222222222225,
                            97.33177777777777
                        ],
                        "title": {
                            "font": {
                                "size": 36
                            },
                            "text": "Naměřená chyba MAPE (%)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 28
                        },
                        "autorange": true,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)"
                    },
                    "legend": {
                        "font": {
                            "size": 28
                        }
                    },
                    "boxmode": "group",
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kubix448",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-02 14:31:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kubix448",
                "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-04-03T15:36:38.444258Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ceciliap/21.embed",
            "fid": "Ceciliap:21",
            "filename": "Plot 21",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Ceciliap:21/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Ceciliap:21/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ceciliap/21/8_59SPJ0UQ3FC1C3SLKE67I7ANMQJLKO.png",
                "list-thumb": "https://api.plotly.com/v2/files/Ceciliap:21/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ceciliap:21",
                "plots": "https://api.plotly.com/v2/plots/Ceciliap:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ceciliap"
            },
            "owner": "Ceciliap",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Ceciliap/21/",
            "world_readable": true,
            "date_modified": "2024-05-22T15:21:13.377Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ceciliap/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Ceciliap:19:9930a5",
                        "ysrc": "Ceciliap:19:2c4012",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Ceciliap:19:2554c6",
                            "symmetric": true
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -0.6267076502732242,
                            10.626707650273223
                        ],
                        "title": {
                            "text": "NaCl concentration (%)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -2.7084804581388884,
                            4.449139394638889
                        ],
                        "title": {
                            "text": "Difference in root lenght (mm)"
                        },
                        "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ceciliap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-09-13 16:13:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ceciliap",
                "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-04-03T15:33:15.642022Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sina512/1.embed",
            "fid": "sina512:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sina512/1/9_WU6H35J3LY48K3VBQJ917D63Z4IIWD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sina512/1/2_BQLP0ENXTCOOYMA518AET8NBSTNHCF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sina512/1/8_SU388VSOKDXNOJMIPOV8Z666FQ7FFO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sina512/1/9_WU6H35J3LY48K3VBQJ917D63Z4IIWD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sina512:1",
                "plots": "https://api.plotly.com/v2/plots/sina512:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sina512"
            },
            "owner": "sina512",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~sina512/1/",
            "world_readable": true,
            "date_modified": "2024-04-03T15:33:15.651Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sina512/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "11e431",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "B",
                        "text": "",
                        "type": "bar",
                        "xsrc": "sina512:0:d4b551",
                        "ysrc": "sina512:0:dbc942",
                        "marker": {
                            "line": {
                                "color": "#444",
                                "width": 0
                            },
                            "color": "rgb(25, 211, 243)",
                            "opacity": 1
                        },
                        "error_x": {
                            "visible": false
                        },
                        "error_y": {
                            "visible": false
                        },
                        "opacity": 1,
                        "visible": true,
                        "xperiod": 0,
                        "yperiod": 0,
                        "selected": {
                            "marker": {
                                "opacity": 1
                            }
                        },
                        "hoverinfo": "all",
                        "hovertext": "",
                        "xcalendar": "gregorian",
                        "ycalendar": "gregorian",
                        "hoverlabel": {
                            "font": {
                                "size": 13,
                                "family": "Arial, sans-serif"
                            },
                            "align": "auto",
                            "namelength": 15
                        },
                        "showlegend": true,
                        "unselected": {
                            "marker": {
                                "opacity": 0.2
                            }
                        },
                        "legendgroup": "",
                        "orientation": "v",
                        "textposition": "none",
                        "hovertemplate": ""
                    },
                    {
                        "uid": "bd823e",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "name": "C",
                        "type": "bar",
                        "xsrc": "sina512:0:d4b551",
                        "ysrc": "sina512:0:99d85d",
                        "marker": {
                            "color": "rgb(99, 110, 250)"
                        }
                    },
                    {
                        "uid": "d01468",
                        "line": {
                            "color": "rgb(255, 255, 255)",
                            "width": 2.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "D",
                        "type": "scatter",
                        "xsrc": "sina512:0:d4b551",
                        "ysrc": "sina512:0:f4f01e",
                        "marker": {
                            "line": {
                                "width": 2.5
                            },
                            "size": 10,
                            "color": "rgb(231, 99, 250)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "rgb(42, 63, 95)"
                        },
                        "text": "<b>Checkout the JSON Editor!</b>"
                    },
                    "width": 1000,
                    "xaxis": {
                        "type": "linear",
                        "color": "#df0a0a",
                        "range": [
                            2006.415938130464,
                            2016.584061869536
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": "B"
                        },
                        "nticks": 0,
                        "visible": false,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "automargin": false,
                        "showspikes": false,
                        "tickformat": "",
                        "minexponent": 3,
                        "showexponent": "all",
                        "exponentformat": "B",
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 20,
                        "range": [
                            0,
                            105.26315789473684
                        ],
                        "title": {
                            "text": "A"
                        },
                        "nticks": 0,
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": false
                    },
                    "height": 700,
                    "margin": {
                        "b": 80,
                        "t": 100
                    },
                    "barmode": "stack",
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.07976190476190478,
                            "y": -0.11153846153846153,
                            "font": {
                                "size": 14,
                                "color": "rgb(239, 85, 59)",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": "<b>Happy Plotting!</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xshift": 0,
                            "yshift": 0,
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "visible": true,
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "borderpad": 1,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0, 0, 0, 0)",
                            "borderwidth": 1,
                            "clicktoshow": false,
                            "captureevents": false
                        }
                    ]
                }
            },
            "height": 700,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sina512",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 15:32:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sina512",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}