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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA2LTI5KzE3JTNBNTIlM0E0Mi45ODc4NzYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0yOSsyMCUzQTA1JTNBMzguNDg3NDc3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-29T20:05:38.487477Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/43.embed",
            "fid": "diannelauc:43",
            "filename": "T 5% MSSA 30% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/43/9_HB1FJVZIQPYYBF0FKPMNWNPDEV1LKL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/43/2_6OSDBOKB4IAVVLCTIFNAZFX8ASWW6U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/43/8_RZ9SAAQN9FW3C79TJ811K4PTDOZLAZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/43/9_HB1FJVZIQPYYBF0FKPMNWNPDEV1LKL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:43",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:43",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/43/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:12:27.264Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/43/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:42:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:42:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "30th Day",
                        "type": "box",
                        "ysrc": "diannelauc:42:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split TensileĀ Strength of 5% MSSA 30% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.2472222222222222,
                            2.7027777777777775
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T20:05:27.707691Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/41.embed",
            "fid": "diannelauc:41",
            "filename": "T 5% MSSA 0% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/41/9_D6Z0X1KQ8HNCMPV5Q8POTVWZBGC4AC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/41/2_OBK2WEU1TN8TY3J06Y6WSUR4S9D9WO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/41/8_O0D8CNTQJFUK6CT5D5X3UCPU5F97VO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/41/9_D6Z0X1KQ8HNCMPV5Q8POTVWZBGC4AC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:41",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/41/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:11:54.867Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:40:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "17th Day",
                        "type": "box",
                        "ysrc": "diannelauc:40:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "29th Day",
                        "type": "box",
                        "ysrc": "diannelauc:40:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split Tensile Strength of 5% MSSA 0% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.7650000000000001,
                            3.065
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T20:01:25.036367Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/39.embed",
            "fid": "diannelauc:39",
            "filename": "T 0% MSSA 70% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/39/9_1HN4XP9EC1RUI4EIZKOLF61U727IWL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/39/2_QAPLY7ZVTNDKQF5YNTO5L1DWT3MYIF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/39/8_3F1QLYR8IWVNZIK6QPIZWGVAQCSSOZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/39/9_1HN4XP9EC1RUI4EIZKOLF61U727IWL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:39",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:39",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/39/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:16:18.422Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/39/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:38:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "18th Day",
                        "type": "box",
                        "ysrc": "diannelauc:38:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:38:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split TensileĀ Strength of 0% MSSA 70% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.393888888888889,
                            2.916111111111111
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T20:01:11.297235Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/37.embed",
            "fid": "diannelauc:37",
            "filename": "T 0% MSSA 50% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/37/9_QY02KCEYIJ315PK7OG1PYKHNW6DY76.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/37/2_85F70A240I5E8NEF4W1E63GSHJSKYW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/37/8_MVTLLSODRXJKZPS09PXQ5Z0VIL2D13.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/37/9_QY02KCEYIJ315PK7OG1PYKHNW6DY76.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:37",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/37/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:14:03.938Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:36:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:36:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:36:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split Tensile Strength of 0% MSSA 50% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.4966666666666668,
                            3.763333333333333
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T19:58:29.901490Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/35.embed",
            "fid": "diannelauc:35",
            "filename": "T 0% MSSA 30% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/35/9_42AVBKU1Z98SMN5WZ7QN36FSVO4208.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/35/2_ORHSAQIXKFTZ0G3CQQ0UCRSY5SM3QH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/35/8_Y7WXEACZQOGID60QGPI5CDSQ07KTAC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/35/9_42AVBKU1Z98SMN5WZ7QN36FSVO4208.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:35",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/35/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:13:51.006Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:34:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:34:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "30th Day",
                        "type": "box",
                        "ysrc": "diannelauc:34:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split Tensile Strength of 0% MSSA 30% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.5055555555555555,
                            2.9944444444444445
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T19:50:28.711616Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/31.embed",
            "fid": "diannelauc:31",
            "filename": "T 0% MMSA 0% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/31/9_9CP4FMQWWU77XT43H5MYQAXO2H7DUX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/31/2_D78V8OZ1Z5GZRTREMP9C6X8O7K370O.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/31/8_AXB1XIVLOCGB3TPQM9ZI4XX9SY9SSZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/31/9_9CP4FMQWWU77XT43H5MYQAXO2H7DUX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:31",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/31/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:13:35.557Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "7th Day",
                        "type": "box",
                        "ysrc": "diannelauc:30:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "15th Day",
                        "type": "box",
                        "ysrc": "diannelauc:30:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:30:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Split Tensile Strength of 0% MSSA 0% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.8570504527813713,
                                11.014877102199224
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            1.7527777777777778,
                            3.897222222222222
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Split Tensile Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "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": "2025-06-29T19:48:15.256469Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~grace1818/1.embed",
            "fid": "grace1818:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/grace1818:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/grace1818/1/2_TSZ7KREY0R15J5B299Z1932L4UOABY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/grace1818/1/8_AM8HYU9V3F7NW19OFT8T5I2P1KNTWY.png",
                "list-thumb": "https://api.plotly.com/v2/files/grace1818:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/grace1818:1",
                "plots": "https://api.plotly.com/v2/plots/grace1818:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=grace1818"
            },
            "owner": "grace1818",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~grace1818/1/",
            "world_readable": true,
            "date_modified": "2025-06-29T19:48:15.267Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~grace1818/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter"
                    },
                    {
                        "line": {
                            "color": "rgb(46, 226, 94)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "grace1818:0:ac521d",
                        "ysrc": "grace1818:0:91e671",
                        "yaxis": "y"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Temperature Change vs Number of moles of NaOH"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.00256797583081571,
                            0.04743202416918429
                        ],
                        "title": {
                            "text": "Number of moles of NaOH (mol)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7330385852090033,
                            6.966961414790997
                        ],
                        "title": {
                            "text": "Temperature Change (°C)"
                        },
                        "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"
                    },
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~grace1818",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-29 19:47:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "grace1818",
                "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": "2025-06-29T19:47:02.668271Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ayman03/1.embed",
            "fid": "Ayman03:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Ayman03/1/9_3AWWGTNHVQ5S4HGFSVKRMLJXV54V6S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Ayman03/1/2_EC6E2UH3Y1DDT8KJ8G5UIHQ9DNA3IK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ayman03/1/8_JEH1GOFKXE9YOWAU51UU14UCO1I0ZY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Ayman03/1/9_3AWWGTNHVQ5S4HGFSVKRMLJXV54V6S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ayman03:1",
                "plots": "https://api.plotly.com/v2/plots/Ayman03:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ayman03"
            },
            "owner": "Ayman03",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Ayman03/1/",
            "world_readable": true,
            "date_modified": "2025-06-29T19:47:02.681Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ayman03/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "marker": {
                                    "color": "B"
                                },
                                "error_x": {
                                    "array": "D"
                                },
                                "error_y": {
                                    "array": "D"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Ayman03:0:56e74f",
                        "ysrc": "Ayman03:0:7c6ec1",
                        "marker": {
                            "cmin": 1,
                            "line": {
                                "color": "rgb(5, 0, 0)"
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "B"
                                }
                            },
                            "cauto": false,
                            "color": "rgb(99, 158, 250)",
                            "reversescale": true
                        },
                        "error_x": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Ayman03:0:e2ac6c",
                            "symmetric": true
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Ayman03:0:e2ac6c",
                            "symmetric": true
                        },
                        "boxpoints": false,
                        "orientation": "v",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "\n\n\n\n\n\n\n\nRelatieve genexpressie van PIN3 en PIN7 in Arabidopsis-zaailingen onder controle- en shadecondities"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "title": {
                            "font": {
                                "size": 15
                            },
                            "text": "Lichtconditie per gen<br>"
                        },
                        "anchor": "y",
                        "zeroline": true,
                        "autorange": true,
                        "automargin": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.8155555555555556,
                            7.495555555555556
                        ],
                        "title": {
                            "font": {
                                "size": 15
                            },
                            "text": "Relatieve genexpressie (2^▵▵Ct)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "barmode": "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"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ayman03",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.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": "2025-06-29 17:23:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ayman03",
                "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": "2025-06-29T19:29:47.873846Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vmdelmondes/1.embed",
            "fid": "vmdelmondes:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/vmdelmondes:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/vmdelmondes/1/2_Q9AHFRL6VU68WVOFXAVA0AQ9XHATCK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vmdelmondes/1/8_BFK6NZ9BUQAZ3OAS7GFGEM59STPFTM.png",
                "list-thumb": "https://api.plotly.com/v2/files/vmdelmondes:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vmdelmondes:1",
                "plots": "https://api.plotly.com/v2/plots/vmdelmondes:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=vmdelmondes"
            },
            "owner": "vmdelmondes",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~vmdelmondes/1/",
            "world_readable": true,
            "date_modified": "2025-06-29T19:41:44.931Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vmdelmondes/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "ESCON",
                        "type": "scatter",
                        "ysrc": "vmdelmondes:0:aca64d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "ESP32",
                        "type": "scatter",
                        "ysrc": "vmdelmondes:0:7588b4",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "ADS1115",
                        "type": "scatter",
                        "ysrc": "vmdelmondes:0:8ce17f",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Comparativo entre velocidade do motor fornecida pela ESCON e medida pela ESP32 e ADS1115"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            16
                        ],
                        "title": {
                            "text": "Amostra"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -8884.422010777778,
                            8866.488904777778
                        ],
                        "title": {
                            "text": "Velocidade do motor (rpm)"
                        },
                        "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/~vmdelmondes",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-29 19:24:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vmdelmondes",
                "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": "2025-06-29T17:52:42.987876Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nayan91/2.embed",
            "fid": "nayan91:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nayan91:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nayan91/2/2_ASDE2N0UQC3UGH0221E5A043EQV4T9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nayan91/2/8_RQDXIEB4YPOZC3D3GB2D6EC4CRKJW0.png",
                "list-thumb": "https://api.plotly.com/v2/files/nayan91:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nayan91:2",
                "plots": "https://api.plotly.com/v2/plots/nayan91:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=nayan91"
            },
            "owner": "nayan91",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nayan91/2/",
            "world_readable": true,
            "date_modified": "2025-06-29T17:52:43.002Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nayan91/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Callisto",
                        "type": "box",
                        "ysrc": "nayan91:0:12e1e4",
                        "boxpoints": false,
                        "orientation": "v",
                        "whiskerwidth": 0.46
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -1.0359673712383715,
                            8.949012607028
                        ],
                        "title": {
                            "text": ""
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "range": [
                            -1.318599033816426,
                            75.00743830787309
                        ],
                        "title": {
                            "text": "% Recovery (Qubit)"
                        },
                        "autorange": false
                    },
                    "boxgap": 0.5,
                    "boxmode": "overlay",
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "boxgroupgap": 0.35
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nayan91",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-29 17:51:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nayan91",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}