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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA5KzE5JTNBNTQlM0EzMC41MTYyMzUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wOSsyMCUzQTU0JTNBNDkuMDkzOTgyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-09T20:54:49.093982Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vladinovitch/276.embed",
            "fid": "vladinovitch:276",
            "filename": "price-and-ema-plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/vladinovitch/276/9_CBNC5Z2IPLOPZNXK2SHEFWNQS099XE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/vladinovitch/276/2_VXBK04XZZX3OZXRJML98ADWO4E8JFH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vladinovitch/276/8_KBUJO1GDV3CVXDQ4QSLE3MLJUAIG25.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vladinovitch/276/9_CBNC5Z2IPLOPZNXK2SHEFWNQS099XE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vladinovitch:276",
                "plots": "https://api.plotly.com/v2/plots/vladinovitch:276",
                "parent": "https://api.plotly.com/v2/folders/home?user=vladinovitch"
            },
            "owner": "vladinovitch",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Price and EMA Plot",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~vladinovitch/276/price-and-ema-plot/",
            "world_readable": true,
            "date_modified": "2024-04-12T03:39:50.433Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vladinovitch/276/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "Price",
                        "xsrc": "vladinovitch:277:874e6d",
                        "ysrc": "vladinovitch:277:cfcb7c"
                    },
                    {
                        "mode": "lines",
                        "name": "EMA",
                        "xsrc": "vladinovitch:277:874e6d",
                        "ysrc": "vladinovitch:277:4df15b"
                    }
                ],
                "layout": {
                    "title": "Price and EMA Plot",
                    "xaxis": {
                        "title": "Timestamp"
                    },
                    "yaxis": {
                        "title": "Value"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~vladinovitch",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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": "2024-03-08 23:20:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vladinovitch",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:53:00.859982Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~simon.verstraete/11.embed",
            "fid": "simon.verstraete:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/11/9_JMWT36JPGQ7ZB9R3S48AQJ2TEOL5LR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/11/2_GJUX5TD93PS4ZNCFEYXA1GMAINENY3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/11/8_ZNPPGO93ZR59WCSCME3B3OASIUWFXD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/simon.verstraete/11/9_JMWT36JPGQ7ZB9R3S48AQJ2TEOL5LR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/simon.verstraete:11",
                "plots": "https://api.plotly.com/v2/plots/simon.verstraete:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=simon.verstraete"
            },
            "owner": "simon.verstraete",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~simon.verstraete/11/",
            "world_readable": true,
            "date_modified": "2024-04-19T09:15:56.381Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~simon.verstraete/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 powder bed  [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 powder bed",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:b532e4",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 H20C80 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H20C80",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:cb67b2",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 H40C60 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H40C60",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:4402a6",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 H60C40 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H60C40",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:17b192",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 H80C20 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H80C20",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:7bb84d",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 H100 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 H100C0",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:9542a4",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Core 20% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 Core 20",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:961910",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Core 40% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 Core 40",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:2120f1",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Core 60%  [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 Core 60",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:ae1128",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Core 80% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 Core 80",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:0c4e16",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Hull 100% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS3 Hull 100",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:59e8fd",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 powder bed  [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 powder ",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:f2c9c1",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 H20C80 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H20C80",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:91ba35",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 H40C60 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H40C60",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:207e42",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 H60C40 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H60C40",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:d2298a",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 H80C20 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H80C20",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:2f3efb",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 H100 [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 H100C0",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:91661f",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 Core 20% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 Core 20",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:057675",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 Core 40% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 Core 40",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:8a1d92",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS3 Core 60%  [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 Core 60",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:ae1128",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 Core 80% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 Core 80",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:135385",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "SS4 Hull 100% [C]"
                            }
                        },
                        "mode": "markers",
                        "name": "SS4 Hull 100",
                        "type": "scatter",
                        "xsrc": "simon.verstraete:10:a8974e",
                        "ysrc": "simon.verstraete:10:71bdc8",
                        "visible": "legendonly",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "Average Temperature per area"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            461.1627132352941,
                            476.7446985294118
                        ],
                        "title": {
                            "text": "Click to enter X axis title"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            118.82122818785052,
                            231.71053654519923
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.13442211055276382,
                        "y": 0.020833333333333332,
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~simon.verstraete",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 22:00:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "simon.verstraete",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:46:09.449927Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lisastf/2.embed",
            "fid": "lisastf:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lisastf/2/9_EVBI4L4F8L6FYHMCVUSN45LMVZUOD1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lisastf/2/2_6ISHUDGGGY3BXZGWMI804UEQNU48MZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lisastf/2/8_2XY965D6ON6DYD4941Q74ZUNGCFS75.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lisastf/2/9_EVBI4L4F8L6FYHMCVUSN45LMVZUOD1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lisastf:2",
                "plots": "https://api.plotly.com/v2/plots/lisastf:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=lisastf"
            },
            "owner": "lisastf",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lisastf/2/",
            "world_readable": true,
            "date_modified": "2024-04-09T20:46:09.461Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lisastf/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "#002b52"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Net Option Delta, x; Total Delta, x; Long SPX Delta, x; Net SPX Delta, x",
                                "y": "Net Option Delta, y; Total Delta, y; Net SPX Delta, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Net Option Delta",
                        "type": "scatter",
                        "xsrc": "lisastf:1:235b3e",
                        "ysrc": "lisastf:1:0a09cb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "x+y",
                        "showlegend": "false"
                    },
                    {
                        "line": {
                            "color": "#90386D"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Net Option Delta, x; Total Delta, x; Long SPX Delta, x; Net SPX Delta, x",
                                "y": "Net Option Delta, y; Total Delta, y; Net SPX Delta, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Total Delta",
                        "type": "scatter",
                        "xsrc": "lisastf:1:235b3e",
                        "ysrc": "lisastf:1:0a09cb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "x+y",
                        "showlegend": "false"
                    },
                    {
                        "line": {
                            "color": "#984EA3"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Net Option Delta, x; Total Delta, x; Long SPX Delta, x; Net SPX Delta, x",
                                "y": "Long SPX Delta, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Long SPX Delta",
                        "type": "scatter",
                        "xsrc": "lisastf:1:235b3e",
                        "ysrc": "lisastf:1:7f7b99",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "x+y",
                        "showlegend": "false"
                    },
                    {
                        "line": {
                            "color": "#984EA3"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Net Option Delta, x; Total Delta, x; Long SPX Delta, x; Net SPX Delta, x",
                                "y": "Net Option Delta, y; Total Delta, y; Net SPX Delta, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Net SPX Delta",
                        "type": "scatter",
                        "xsrc": "lisastf:1:235b3e",
                        "ysrc": "lisastf:1:0a09cb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "x+y",
                        "showlegend": "false"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "black"
                    },
                    "title": {
                        "font": {
                            "size": 24,
                            "color": "black"
                        },
                        "text": "<b>Portfolio Net Delta</b>"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2001-01-02",
                            "2024-01-05"
                        ],
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.07973932833333333,
                            0.05141503833333333
                        ],
                        "title": {
                            "text": "<b>Net Delta ($/$)</b>"
                        },
                        "autorange": true,
                        "automargin": true
                    },
                    "legend": {
                        "x": 0,
                        "y": -0.15,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 40,
                        "l": 50,
                        "r": 30,
                        "t": 50,
                        "pad": -20
                    },
                    "autosize": true,
                    "showlegend": true,
                    "plot_bgcolor": "white",
                    "paper_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lisastf",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-12-21 17:30:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lisastf",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:31:14.491244Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Iliesa11/3.embed",
            "fid": "Iliesa11:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Iliesa11/3/9_MZF2EOO2E3RO7IH5FH4HW03E1EZDVP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Iliesa11/3/2_8C0J4O5SPTBRHSN23JAWG49U3XGACM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Iliesa11/3/8_R08U369SHA2AWAYF3WN3BBDA5IPFC8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Iliesa11/3/9_MZF2EOO2E3RO7IH5FH4HW03E1EZDVP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Iliesa11:3",
                "plots": "https://api.plotly.com/v2/plots/Iliesa11:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Iliesa11"
            },
            "owner": "Iliesa11",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Iliesa11/3/",
            "world_readable": true,
            "date_modified": "2024-04-09T20:31:14.519Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Iliesa11/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "SHem"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Iliesa11:2:fd1e3d",
                        "ysrc": "Iliesa11:2:21d188",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Southern Hemisphere Temperature 1880-2014"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1879.5,
                            2014.5
                        ],
                        "title": {
                            "text": "Years (1880-2014)"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -52.888888888888886,
                            64.88888888888889
                        ],
                        "title": {
                            "text": "Southern Hemisphere"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "autosize": true,
                    "dragmode": "select",
                    "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/~Iliesa11",
                "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": "2024-04-09 04:27:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Iliesa11",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:29:29.641691Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~adamporter05/3.embed",
            "fid": "adamporter05:3",
            "filename": "Plot 1 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/adamporter05/3/9_HDPVHZSHFT7WD9EEMEM5G8SM1YIO9E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/adamporter05/3/2_EJ5L837TBUSP27MR6HMTC0GYZ5LUYS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/adamporter05/3/8_T5OORYU2AF53QLRIGQEQH235PRQVPZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/adamporter05/3/9_HDPVHZSHFT7WD9EEMEM5G8SM1YIO9E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/adamporter05:3",
                "plots": "https://api.plotly.com/v2/plots/adamporter05:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=adamporter05"
            },
            "owner": "adamporter05",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~adamporter05/3/",
            "world_readable": true,
            "date_modified": "2024-04-09T20:29:29.958Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~adamporter05/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Stainless Steel + Stainless Steel block",
                        "type": "scatter",
                        "xsrc": "adamporter05:2:58e714",
                        "ysrc": "adamporter05:2:326922",
                        "marker": {
                            "color": "rgb(250, 99, 102)"
                        },
                        "opacity": 1,
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Stainless Steel + Aluminiumm Block",
                        "type": "scatter",
                        "xsrc": "adamporter05:2:e22cf6",
                        "ysrc": "adamporter05:2:530963",
                        "marker": {
                            "color": "rgb(4, 143, 255)"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Graph 1: Friction of blocks on Stainless Steel"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.3977762875536481,
                            7.107776287553648
                        ],
                        "title": {
                            "text": "Normal Force, N (N)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.14197371256194788,
                            2.341973712561948
                        ],
                        "title": {
                            "text": "Sliding Force, F (N)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.39726838586437446,
                        "y": 1.1259541984732824
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~adamporter05",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-09 20:28:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "adamporter05",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:29:08.239094Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~adamporter05/1.embed",
            "fid": "adamporter05:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/adamporter05/1/9_BDEXIN97DOU8CW4MVBQ4CK972GVR3N.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/adamporter05/1/2_LWYZ2316GRPKU9ER8433F304ISAGJS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/adamporter05/1/8_65FZNNQNUWPF3VM3K14FI6EYUELQ0Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/adamporter05/1/9_BDEXIN97DOU8CW4MVBQ4CK972GVR3N.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/adamporter05:1",
                "plots": "https://api.plotly.com/v2/plots/adamporter05:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=adamporter05"
            },
            "owner": "adamporter05",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~adamporter05/1/",
            "world_readable": true,
            "date_modified": "2024-04-09T20:29:08.249Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~adamporter05/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Stainless Steel + Stainless Steel block",
                        "type": "scatter",
                        "xsrc": "adamporter05:0:58e714",
                        "ysrc": "adamporter05:0:326922",
                        "marker": {
                            "color": "rgb(250, 99, 102)"
                        },
                        "opacity": 1,
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Stainless Steel + Aluminiumm Block",
                        "type": "scatter",
                        "xsrc": "adamporter05:0:e22cf6",
                        "ysrc": "adamporter05:0:530963",
                        "marker": {
                            "color": "rgb(4, 143, 255)"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Graph 1: Friction of blocks on Stainless Steel"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.3977762875536481,
                            7.107776287553648
                        ],
                        "title": {
                            "text": "Normal Force, N (N)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.14197371256194788,
                            2.341973712561948
                        ],
                        "title": {
                            "text": "Sliding Force, F (N)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.39726838586437446,
                        "y": 1.1259541984732824
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~adamporter05",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-09 20:28:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "adamporter05",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:19:27.450565Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~DORITOS12/77.embed",
            "fid": "DORITOS12:77",
            "filename": "urban en conjunto_ RESERVA",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/DORITOS12/77/9_KXVF01SYVEBRXAC9UN4VJ30C3YMAWU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/DORITOS12/77/2_M15G8T97ZT9F6ZUOXG71S487TOJL62.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/DORITOS12/77/8_G31SXYPLA09CWVA9RDEC80YIJ3SJ32.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/DORITOS12/77/9_KXVF01SYVEBRXAC9UN4VJ30C3YMAWU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/DORITOS12:77",
                "plots": "https://api.plotly.com/v2/plots/DORITOS12:77",
                "parent": "https://api.plotly.com/v2/folders/home?user=DORITOS12"
            },
            "owner": "DORITOS12",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~DORITOS12/77/",
            "world_readable": true,
            "date_modified": "2024-04-17T21:52:51.113Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~DORITOS12/77/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Humedad relativa 2000",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "name": "hr 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:397a83",
                        "hoverinfo": "x+y+name",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "connectgaps": false,
                        "hovertemplate": ""
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Humedad relativa 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "hr 2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:d027f5",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Velocidad del Viento 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "WS 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:7f9265",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Velocidad del Viento 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "WS2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:4a3c64",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T máxima 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "TMAXX 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:d61b2f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T máxima 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "TMAXX 2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:53dc9d",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T media 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "T media 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:f567c1",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T media 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "T. media2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:454ce3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "NDVI 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "NDVI 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:64df78",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T mínima 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "t min 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:31eaf5",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "NDVI 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "NDVI 2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:f86d13",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "T mínima 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "&nbsp;2018 t min",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:979938",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Albedo NIR 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "2000 NIR",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:bed04c",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Albedo NIR 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "NIR 2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:d16e73",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(76, 114, 176)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Albedo VIS 2000"
                            }
                        },
                        "mode": "lines",
                        "name": "VIS 2000",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:4630cc",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(221, 132, 82)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "Albedo VIS 2018"
                            }
                        },
                        "mode": "lines",
                        "name": "VIS 2018",
                        "type": "scatter",
                        "xsrc": "DORITOS12:76:9bdd4c",
                        "ysrc": "DORITOS12:76:6d0ef8",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "font": {
                            "color": "rgb(22, 22, 22)"
                        },
                        "text": "Urbanizado"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            0.49
                        ],
                        "showgrid": true,
                        "showline": false,
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "automargin": true,
                        "fixedrange": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                1,
                                12
                            ],
                            "yaxis": {},
                            "yaxis2": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            57,
                            78
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "HR (%)"
                        },
                        "domain": [
                            0.78,
                            1
                        ],
                        "autorange": false,
                        "fixedrange": false
                    },
                    "legend": {
                        "x": 0,
                        "y": -0.15999999999999992,
                        "title": {
                            "text": "<br>"
                        },
                        "valign": "bottom",
                        "xanchor": "auto",
                        "itemsizing": "trace",
                        "traceorder": "reversed",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 88,
                        "l": 55,
                        "r": 25,
                        "t": 31,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            0.5
                        ],
                        "showline": false,
                        "autorange": true,
                        "fixedrange": false,
                        "overlaying": "x",
                        "showticklabels": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y3",
                        "domain": [
                            0.5,
                            0.96
                        ],
                        "showgrid": true,
                        "showline": false,
                        "autorange": true,
                        "fixedrange": false,
                        "overlaying": "x2",
                        "showticklabels": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.5,
                            0.96
                        ],
                        "autorange": true,
                        "overlaying": "x3",
                        "showspikes": false,
                        "showticklabels": false
                    },
                    "xaxis5": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y5",
                        "domain": [
                            0,
                            0.49
                        ],
                        "showline": false,
                        "autorange": true,
                        "overlaying": "x4",
                        "showticklabels": false
                    },
                    "xaxis6": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y6",
                        "domain": [
                            0.5,
                            0.96
                        ],
                        "showline": false,
                        "autorange": true,
                        "overlaying": "x5",
                        "showticklabels": false
                    },
                    "xaxis7": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "mes"
                        },
                        "anchor": "y7",
                        "domain": [
                            0,
                            0.49
                        ],
                        "autorange": true,
                        "overlaying": "x6",
                        "showticklabels": true
                    },
                    "xaxis8": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "mes"
                        },
                        "anchor": "y8",
                        "domain": [
                            0.5,
                            0.96
                        ],
                        "autorange": true,
                        "overlaying": "x7",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.5,
                            5.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "WS (m/s)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.53,
                            0.75
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "yaxis3": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            27.5,
                            31
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "T. max (°C)"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.78,
                            1
                        ],
                        "mirror": false,
                        "showgrid": true,
                        "showline": true,
                        "zeroline": true,
                        "autorange": false,
                        "automargin": true,
                        "overlaying": false,
                        "zerolinewidth": 1,
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "yaxis4": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            27.5,
                            31
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "T. media (°C)"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.53,
                            0.75
                        ],
                        "autorange": false,
                        "fixedrange": false,
                        "overlaying": false
                    },
                    "yaxis5": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.02,
                            0.9
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "NDVI"
                        },
                        "anchor": "x5",
                        "domain": [
                            0.26,
                            0.5
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "yaxis6": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            27.5,
                            31
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "T. min (°C)"
                        },
                        "anchor": "x6",
                        "domain": [
                            0.26,
                            0.5
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "yaxis7": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.1,
                            0.3
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "NIR"
                        },
                        "anchor": "x7",
                        "domain": [
                            0.01,
                            0.23
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "yaxis8": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.02,
                            0.08
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "VIS"
                        },
                        "anchor": "x8",
                        "domain": [
                            0.01,
                            0.23
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "modebar": {
                        "color": "rgba(252, 250, 250, 0.3)",
                        "activecolor": "rgba(253, 251, 251, 0.7)"
                    },
                    "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": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "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": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#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": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    },
                    "hovermode": "x",
                    "hoverlabel": {
                        "align": "auto",
                        "bgcolor": "#FFF",
                        "bordercolor": "rgb(238, 238, 238)"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 11.5,
                            "y": 75,
                            "font": {
                                "family": "Arial"
                            },
                            "text": "a)",
                            "xref": "x",
                            "axref": "x",
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "showarrow": false
                        },
                        {
                            "x": 1.5,
                            "y": 30.5,
                            "text": "b)",
                            "xref": "x3",
                            "yref": "y3",
                            "axref": "x3",
                            "ayref": "y3",
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "showarrow": false
                        },
                        {
                            "x": 11.5,
                            "y": 5,
                            "text": "c)",
                            "xref": "x2",
                            "yref": "y2",
                            "axref": "x2",
                            "ayref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 1.5,
                            "y": 30.6,
                            "text": "d)",
                            "xref": "x4",
                            "yref": "y4",
                            "ayref": "y4",
                            "showarrow": false
                        },
                        {
                            "x": 11.5,
                            "y": 0.8,
                            "text": "e)",
                            "xref": "x5",
                            "yref": "y5",
                            "ayref": "y5",
                            "showarrow": false
                        },
                        {
                            "x": 1.5,
                            "y": 30.6,
                            "text": "f)",
                            "xref": "x6",
                            "yref": "y6",
                            "axref": "x6",
                            "ayref": "y6",
                            "showarrow": false
                        },
                        {
                            "x": 11.5,
                            "y": 0.27,
                            "text": "g)",
                            "xref": "x7",
                            "yref": "y7",
                            "axref": "x7",
                            "ayref": "y7",
                            "showarrow": false
                        },
                        {
                            "x": 1.5,
                            "y": 0.071,
                            "text": "h)",
                            "xref": "x8",
                            "yref": "y8",
                            "axref": "x8",
                            "ayref": "y8",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~DORITOS12",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-24 22:37:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "DORITOS12",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:11:48.667767Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~melanie.gilbert/280.embed",
            "fid": "melanie.gilbert:280",
            "filename": "Pitch Interval Indiv Data in Percent",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/melanie.gilbert/280/9_8H64S3JXTG57MGMM3EDO1FHDBRAIX7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/melanie.gilbert/280/2_7CYTEPQ9VW0U1OAA76JXMTU709EA9P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/melanie.gilbert/280/8_YNOJGJO1XKK52F5TMCYHPTTCJQE3YQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/melanie.gilbert/280/9_8H64S3JXTG57MGMM3EDO1FHDBRAIX7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/melanie.gilbert:280",
                "plots": "https://api.plotly.com/v2/plots/melanie.gilbert:280",
                "parent": "https://api.plotly.com/v2/folders/home?user=melanie.gilbert"
            },
            "owner": "melanie.gilbert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~melanie.gilbert/280/",
            "world_readable": true,
            "date_modified": "2024-04-09T21:12:03.558Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~melanie.gilbert/280/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "ID",
                                "y": "PSE (%)"
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "xsrc": "melanie.gilbert:269:5a441e",
                        "ysrc": "melanie.gilbert:269:42ac90",
                        "boxmean": true,
                        "opacity": 1,
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgba(0, 0, 0, 0.3)",
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "Cohort"
                                    }
                                },
                                "type": "filter",
                                "value": [
                                    "NH"
                                ],
                                "operation": "{}",
                                "targetsrc": "melanie.gilbert:269:58e0a1"
                            }
                        ],
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "text": "Individual Data - NH Unproc"
                    },
                    "width": 800,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            10.5,
                            25.5
                        ],
                        "title": {
                            "text": "Participant"
                        },
                        "autorange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -101,
                            101
                        ],
                        "title": {
                            "text": "PSE (%)"
                        },
                        "autorange": false
                    },
                    "height": 500,
                    "margin": {
                        "b": 30,
                        "l": 70,
                        "r": 0,
                        "t": 50,
                        "pad": 0
                    },
                    "autosize": false,
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    },
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 10.99991883116883,
                            "y": -1.8375008242664033,
                            "ax": -285,
                            "ay": 53,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false
                        },
                        {
                            "x": 12,
                            "y": -1.8085970985822621,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 13.000081168831167,
                            "y": -0.5468100890207718,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 13.99991883116883,
                            "y": -0.4000906693043194,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 16.00008116883117,
                            "y": -0.34140290141773844,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false
                        },
                        {
                            "x": 19.99991883116883,
                            "y": 0.09875535773161868,
                            "font": {
                                "size": 30,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "*",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": 500,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~melanie.gilbert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-07-05 18:03:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "melanie.gilbert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T20:05:42.428230Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~liyancheung21/1.embed",
            "fid": "liyancheung21:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/liyancheung21/1/9_W1OK736ET213OE5DREXOP7BL6CF8D6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/liyancheung21/1/2_MK7SSSUOVO8B38LAAZLMGWLYJKE59I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/liyancheung21/1/8_PYPLBS03MZJSLBIPZCG5X7DPTD193R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/liyancheung21/1/9_W1OK736ET213OE5DREXOP7BL6CF8D6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/liyancheung21:1",
                "plots": "https://api.plotly.com/v2/plots/liyancheung21:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=liyancheung21"
            },
            "owner": "liyancheung21",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~liyancheung21/1/",
            "world_readable": true,
            "date_modified": "2024-04-09T20:05:42.441Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~liyancheung21/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8de726",
                        "fill": "none",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": "B",
                                "marker": {
                                    "color": "Watt"
                                },
                                "textposition": ""
                            }
                        },
                        "mode": "markers+text",
                        "name": "Data Points",
                        "type": "scatter",
                        "xsrc": "liyancheung21:0:322049",
                        "ysrc": "liyancheung21:0:d37911",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Watt"
                                }
                            },
                            "size": 14,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "x-thin-open",
                            "maxdisplayed": 0
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 0)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoveron": "points",
                        "textsrc": "liyancheung21:0:d37911",
                        "visible": true,
                        "textfont": {
                            "size": 14,
                            "color": "rgb(0, 0, 0)"
                        },
                        "groupnorm": "",
                        "hoverinfo": "x+y",
                        "stackgaps": "infer zero",
                        "cliponaxis": true,
                        "hoverlabel": {
                            "align": "auto",
                            "namelength": 15
                        },
                        "showlegend": true,
                        "stackgroup": "",
                        "orientation": "h",
                        "textposition": "bottom right",
                        "texttemplate": "",
                        "hovertemplate": ""
                    },
                    {
                        "uid": "45fed2",
                        "line": {
                            "color": "rgb(0, 37, 142)"
                        },
                        "name": "Smooth Curve",
                        "opacity": 1,
                        "transforms": [
                            {
                                "rms": 0.04050784685316219,
                                "type": "fit",
                                "xmid": 172.7150000000001,
                                "ymid": 1.1822491741886298,
                                "inputUid": "8de726",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 8.218239149165999e-05,
                                        "value": 0.006919102470761507
                                    },
                                    {
                                        "hold": true,
                                        "name": "b",
                                        "error": 0.02997088141708741,
                                        "value": 0
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.9992202388414549,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": "A",
                                "textposition": ""
                            }
                        },
                        "mode": "markers+text",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "liyancheung21:0:322049",
                        "ysrc": "liyancheung21:0:d37911",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 14,
                            "opacity": 0,
                            "maxdisplayed": 0
                        },
                        "textsrc": "liyancheung21:0:322049",
                        "textfont": {
                            "size": 14,
                            "color": "rgb(0, 0, 0)"
                        },
                        "cliponaxis": true,
                        "showlegend": false,
                        "textposition": "middle right",
                        "texttemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Times New Roman"
                    },
                    "title": {
                        "text": "Graph 1<br>T (N-m) against P<sub>OUT</sub>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -22.088680531584394,
                            367.5186805315844
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 20,
                                "family": "Times New Roman"
                            },
                            "text": "P<sub>out</sub> (W)"
                        },
                        "mirror": false,
                        "nticks": 0,
                        "ticklen": 8,
                        "tickson": "labels",
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 17
                        },
                        "tickmode": "auto",
                        "autorange": true,
                        "tickangle": 45,
                        "tickwidth": 1,
                        "automargin": false,
                        "fixedrange": true,
                        "showspikes": false,
                        "tickprefix": "",
                        "rangeslider": {
                            "range": [
                                -0.29409461152882205,
                                5.294094611528822
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -0.17422985027078688,
                            2.626729850270787
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "T (N-m)"
                        },
                        "ticklen": 8,
                        "showline": false,
                        "tickfont": {
                            "size": 17
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "tickangle": "auto",
                        "tickwidth": 1,
                        "fixedrange": true,
                        "showspikes": false,
                        "separatethousands": false
                    },
                    "legend": {
                        "font": {
                            "size": 20
                        }
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "select",
                    "clickmode": "event",
                    "hovermode": "closest",
                    "annotations": [],
                    "selectdirection": "v"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~liyancheung21",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-09 20:04:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "liyancheung21",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-09T19:54:30.516235Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~.arthur.fraga./5.embed",
            "fid": ".arthur.fraga.:5",
            "filename": "pROVA",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/.arthur.fraga./5/9_UUX2YDT0ZXORBKWFBKKPAD8JWVY6XI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/.arthur.fraga./5/2_J1E9QN3C7AOD9WLDGXZRFD65S8VH6V.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/.arthur.fraga./5/8_3IJRGACPLVZ4X3OBJPYBLTJCFGH5XL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/.arthur.fraga./5/9_UUX2YDT0ZXORBKWFBKKPAD8JWVY6XI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/.arthur.fraga.:5",
                "plots": "https://api.plotly.com/v2/plots/.arthur.fraga.:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=.arthur.fraga."
            },
            "owner": ".arthur.fraga.",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~.arthur.fraga./5/",
            "world_readable": true,
            "date_modified": "2024-04-09T19:54:30.525Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~.arthur.fraga./5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social"
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:29d615",
                        "boxpoints": "outliers",
                        "showlegend": true,
                        "orientation": "h",
                        "whiskerwidth": 0.48
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social - Educação"
                            }
                        },
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:a510c0",
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social - Saneamento, Habitação e Meio Ambiente"
                            }
                        },
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:268551",
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social - Saúde"
                            }
                        },
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:525951",
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social - Segurança Pública"
                            }
                        },
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:dc2493",
                        "boxpoints": "outliers"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Índice Mineiro de Responsabilidade Social - Vulnerabilidade"
                            }
                        },
                        "type": "box",
                        "xsrc": ".arthur.fraga.:4:0b5d29",
                        "boxpoints": "outliers"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            -45.27777777777779,
                            940.2777777777778
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~.arthur.fraga.",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 18:28:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": ".arthur.fraga.",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}