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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI0KzExJTNBMTklM0E0Mi4xNzM0MDIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNCsxMSUzQTM1JTNBMzYuMDEwMDgyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-24T11:35:36.010082Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/135.embed",
            "fid": "jej0312:135",
            "filename": "Plot 135",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/135/9_F8O0J6UINJ1OVD7OVWLK90G574N1F0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/135/2_WNOREEW0NUDJ5MUFBR9I1KD1Q1AHJR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/135/8_3DCL61AIHGUGYP3PPH890OAKP0IZOQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/135/9_F8O0J6UINJ1OVD7OVWLK90G574N1F0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:135",
                "plots": "https://api.plotly.com/v2/plots/jej0312:135",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/135/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:35:36.021Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/135/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:134:d881da",
                            "sourcesrc": "jej0312:134:9fdfd8",
                            "targetsrc": "jej0312:134:9942fd"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:134:a6b64e",
                            "labelsrc": "jej0312:134:90b9bd",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30
                    },
                    "title": "Transitions and DTs",
                    "width": 2500,
                    "height": 1000
                }
            },
            "height": 1000,
            "width": 2500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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-24T11:35:25.823785Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mustafaahmadi75/3.embed",
            "fid": "mustafaahmadi75:3",
            "filename": "XRD",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mustafaahmadi75/3/9_94NKTJA6USW1QEQZK4KP3CBPIB6RWT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mustafaahmadi75/3/2_ZLILVWOGLPGEHPWHF38B0BGHCO27MK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mustafaahmadi75/3/8_5Z9C6RU8W6YSSA1UDUVOLN1MZOZW2E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mustafaahmadi75/3/9_94NKTJA6USW1QEQZK4KP3CBPIB6RWT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mustafaahmadi75:3",
                "plots": "https://api.plotly.com/v2/plots/mustafaahmadi75:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=mustafaahmadi75"
            },
            "owner": "mustafaahmadi75",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mustafaahmadi75/3/",
            "world_readable": true,
            "date_modified": "2024-04-24T12:53:02.889Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mustafaahmadi75/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255, 0, 0)",
                            "shape": "spline",
                            "width": 2,
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "name": "TiO<sub>2</sub>",
                        "type": "scatter",
                        "xsrc": "mustafaahmadi75:2:15c6b8",
                        "ysrc": "mustafaahmadi75:2:ca17bf",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "size": 15,
                            "color": "rgb(255, 0, 0)",
                            "symbol": "circle"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(0, 0, 255)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "opacity": 1,
                        "groupnorm": "",
                        "stackgaps": "interpolate",
                        "cliponaxis": true,
                        "stackgroup": "",
                        "orientation": "v",
                        "hovertemplate": ""
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 255)",
                            "shape": "spline",
                            "width": 3,
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "1% Cr-TiO<sub>2</sub>",
                        "type": "scatter",
                        "xsrc": "mustafaahmadi75:2:6920f8",
                        "ysrc": "mustafaahmadi75:2:8bcb89",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 255, 255)",
                                "width": 1
                            },
                            "size": 15,
                            "color": "rgb(0, 0, 255)",
                            "symbol": "star",
                            "opacity": 1
                        },
                        "opacity": 1,
                        "stackgroup": null,
                        "connectgaps": true
                    },
                    {
                        "line": {
                            "color": "rgb(0, 170, 0)",
                            "shape": "spline",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "1%Cr - 1%N - TiO2",
                        "type": "scatter",
                        "xsrc": "mustafaahmadi75:2:030c79",
                        "ysrc": "mustafaahmadi75:2:93b573",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "size": 15,
                            "color": "rgb(0, 170, 0)",
                            "symbol": "triangle-up"
                        },
                        "opacity": 0.7,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            20,
                            80
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 28,
                                "family": "Times New Roman"
                            },
                            "text": "$2\\theta (degree)$"
                        },
                        "nticks": 10,
                        "ticklen": 15,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 25,
                            "family": "Times New Roman"
                        },
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 0,
                        "linecolor": "rgb(22, 104, 235)",
                        "tickangle": 45,
                        "showspikes": true,
                        "tickformat": "",
                        "ticksuffix": "",
                        "rangeslider": {
                            "range": [
                                -0.03455078305583989,
                                1.06882362205584
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "zerolinewidth": 2,
                        "spikethickness": 0,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 50,
                        "range": [
                            0,
                            1
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 30,
                                "family": "Times New Roman"
                            },
                            "text": "Intensity(a.u)"
                        },
                        "nticks": 9,
                        "ticklen": 13,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 25,
                            "family": "Times New Roman"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 2,
                        "tickcolor": "rgb(0, 0, 0)",
                        "tickwidth": 1,
                        "automargin": true,
                        "showspikes": true,
                        "zerolinecolor": "rgb(0, 0, 0)",
                        "zerolinewidth": 2,
                        "spikethickness": 3
                    },
                    "legend": {
                        "x": 0.8242708099316147,
                        "y": 1,
                        "font": {
                            "size": 19,
                            "color": "rgb(0, 0, 0)",
                            "family": "Times New Roman"
                        },
                        "bgcolor": "rgb(255, 255, 255)",
                        "xanchor": "left",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "bordercolor": "rgb(255, 255, 255)",
                        "borderwidth": 1,
                        "orientation": "v"
                    },
                    "margin": {
                        "t": 100,
                        "pad": 0
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "colorway": [
                        "#636efa",
                        "#EF553B",
                        "#00cc96",
                        "#ab63fa",
                        "#19d3f3",
                        "#e763fa",
                        "#fecb52",
                        "#ffa15a",
                        "#ff6692",
                        "#b6e880"
                    ],
                    "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#9e0142"
                            ],
                            [
                                0.1,
                                "#d53e4f"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee08b"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e6f598"
                            ],
                            [
                                0.7,
                                "#abdda4"
                            ],
                            [
                                0.8,
                                "#66c2a5"
                            ],
                            [
                                0.9,
                                "#3288bd"
                            ],
                            [
                                1,
                                "#5e4fa2"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#f7fcfd"
                            ],
                            [
                                0.125,
                                "#e5f5f9"
                            ],
                            [
                                0.25,
                                "#ccece6"
                            ],
                            [
                                0.375,
                                "#99d8c9"
                            ],
                            [
                                0.5,
                                "#66c2a4"
                            ],
                            [
                                0.625,
                                "#41ae76"
                            ],
                            [
                                0.75,
                                "#238b45"
                            ],
                            [
                                0.875,
                                "#006d2c"
                            ],
                            [
                                1,
                                "#00441b"
                            ]
                        ]
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mustafaahmadi75",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-24 11:24:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mustafaahmadi75",
                "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-24T11:34:49.709660Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/133.embed",
            "fid": "jej0312:133",
            "filename": "Plot 133",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/133/9_F5VJSI713FT6Y1C6127UVJKX5BPG10.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/133/2_RIBCTAWJL20PQOC3J9YTLG9IA6P5R1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/133/8_Z2UX6T2UAMCLQ1R2W0B0QYJ2SSC5YL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/133/9_F5VJSI713FT6Y1C6127UVJKX5BPG10.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:133",
                "plots": "https://api.plotly.com/v2/plots/jej0312:133",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/133/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:34:49.723Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/133/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:132:3ca349",
                            "sourcesrc": "jej0312:132:cfe74f",
                            "targetsrc": "jej0312:132:e7eabd"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:132:9f6597",
                            "labelsrc": "jej0312:132:c93984",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 23
                    },
                    "title": "Transitions and DTs",
                    "width": 2500,
                    "height": 1000
                }
            },
            "height": 1000,
            "width": 2500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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-24T11:33:56.971689Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/131.embed",
            "fid": "jej0312:131",
            "filename": "Plot 131",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/131/9_779WF4OJQRNRKPL22WG2Q11DP8K3HE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/131/2_7MMNJ5B1UFW6HBAKT0G9FNO9VV0FX8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/131/8_XA144EDQ66KSCOHM5VL7YOWNI967R0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/131/9_779WF4OJQRNRKPL22WG2Q11DP8K3HE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:131",
                "plots": "https://api.plotly.com/v2/plots/jej0312:131",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/131/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:33:56.983Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/131/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:130:d23e62",
                            "sourcesrc": "jej0312:130:a86d81",
                            "targetsrc": "jej0312:130:68f292"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:130:d64609",
                            "labelsrc": "jej0312:130:cf2358",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 23
                    },
                    "title": "Transitions and DTs",
                    "width": 1500,
                    "height": 772
                }
            },
            "height": 772,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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-24T11:33:52.902833Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janfv.pokorny/82.embed",
            "fid": "janfv.pokorny:82",
            "filename": "Example Plot_20240424113344",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/82/9_FUEWDFZZ64Z75E0B0Q4B8H10G1XREQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/82/2_HNCI8HWN81KZQKVIC52A63WNU39H5O.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/82/8_DPC4IEQ89U1TOTOOYG2D883VZ0E9Y6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/82/9_FUEWDFZZ64Z75E0B0Q4B8H10G1XREQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janfv.pokorny:82",
                "plots": "https://api.plotly.com/v2/plots/janfv.pokorny:82",
                "parent": "https://api.plotly.com/v2/folders/home?user=janfv.pokorny"
            },
            "owner": "janfv.pokorny",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~janfv.pokorny/82/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:33:52.912Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janfv.pokorny/82/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#000001"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "janfv.pokorny:81:16df7e",
                        "ysrc": "janfv.pokorny:81:ce5f8b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "x=%{x}<br>y=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Using Plotly Express"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janfv.pokorny",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.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-17 12:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janfv.pokorny",
                "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-24T11:33:48.376001Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janfv.pokorny/80.embed",
            "fid": "janfv.pokorny:80",
            "filename": "ChartStudio_Plotly_20240424113344",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/80/9_KFIE82I8ESQZDPBD1QSBHDZCOG4N2A.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/80/2_6NNLPM55J4E7FYW3BMGOY7E9LR3HHH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/80/8_5VDD3Y8SANVT2A0PIBU7XYQIHQJ91K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janfv.pokorny/80/9_KFIE82I8ESQZDPBD1QSBHDZCOG4N2A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janfv.pokorny:80",
                "plots": "https://api.plotly.com/v2/plots/janfv.pokorny:80",
                "parent": "https://api.plotly.com/v2/folders/home?user=janfv.pokorny"
            },
            "owner": "janfv.pokorny",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~janfv.pokorny/80/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:33:48.386Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janfv.pokorny/80/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "janfv.pokorny:79:2caf75",
                        "ysrc": "janfv.pokorny:79:697aa2"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janfv.pokorny",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.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-17 12:43:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janfv.pokorny",
                "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-24T11:33:30.711560Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jej0312/129.embed",
            "fid": "jej0312:129",
            "filename": "Plot 129",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jej0312/129/9_AA0KA8WIN84VBK16OQ1ST7FGDBHZRN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jej0312/129/2_M0Q8G3OR5WTVWBDK5CAD16356SWH1J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/129/8_XCN5FJ8950KESVVS3VTMZ55ES0TOW4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jej0312/129/9_AA0KA8WIN84VBK16OQ1ST7FGDBHZRN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jej0312:129",
                "plots": "https://api.plotly.com/v2/plots/jej0312:129",
                "parent": "https://api.plotly.com/v2/folders/home?user=jej0312"
            },
            "owner": "jej0312",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jej0312/129/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:33:30.724Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jej0312/129/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "jej0312:128:05cfb2",
                            "sourcesrc": "jej0312:128:505ec5",
                            "targetsrc": "jej0312:128:aa3477"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "jej0312:128:9a6450",
                            "labelsrc": "jej0312:128:11d6b3",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0.001,
                                0.001,
                                0.001,
                                0.001,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.16,
                                0.001,
                                0.999,
                                0.84,
                                0.84,
                                0.84,
                                0.84,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.5,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33,
                                0.33
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": "Transitions and DTs",
                    "width": 1500,
                    "height": 772
                }
            },
            "height": 772,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jej0312",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2022-12-31 13:50:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jej0312",
                "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-24T11:21:44.728443Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ManonD/2.embed",
            "fid": "ManonD:2",
            "filename": "Policy Stakeholder Map",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ManonD/2/9_XXWNS8VNRL98PEPEXJICYXC5K2FTAO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ManonD/2/2_N08Y0XOYN34WUZP2K82GR9V2HZHKE5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ManonD/2/8_SFT6JNYO9XMNEHKJ7IFXSXTZXO98LP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ManonD/2/9_XXWNS8VNRL98PEPEXJICYXC5K2FTAO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ManonD:2",
                "plots": "https://api.plotly.com/v2/plots/ManonD:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=ManonD"
            },
            "owner": "ManonD",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~ManonD/2/",
            "world_readable": true,
            "date_modified": "2024-04-24T11:23:44.214Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ManonD/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Alignment with Ufi mission ",
                                "y": "Influence over Ufi mission",
                                "text": "Stakeholder name"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ManonD:1:a0ae39",
                        "ysrc": "ManonD:1:d28b0e",
                        "textsrc": "ManonD:1:647b9c",
                        "textfont": {
                            "size": 9,
                            "family": "Arial"
                        },
                        "hoverinfo": "text",
                        "textposition": "top center",
                        "texttemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 13,
                        "color": "rgb(3, 9, 14)"
                    },
                    "title": {
                        "text": "Policy Stakeholder Map"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            100
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "Stakeholder's alignment with our mission"
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "showspikes": false,
                        "tickformat": "",
                        "ticksuffix": "%",
                        "rangeslider": {
                            "range": [
                                -1.6680900621118013,
                                102.6680900621118
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            102
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "Stakeholder's influence over our mission"
                        },
                        "autorange": false,
                        "ticksuffix": "%"
                    },
                    "margin": {
                        "l": 80,
                        "t": 70,
                        "pad": 0
                    },
                    "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"
                    },
                    "clickmode": "event",
                    "annotations": [],
                    "paper_bgcolor": "rgb(95, 208, 223)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ManonD",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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-04-23 16:04:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ManonD",
                "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-24T11:19:50.956182Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Alicia25/18.embed",
            "fid": "Alicia25:18",
            "filename": "Plot 18",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Alicia25:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Alicia25:18/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Alicia25:18/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Alicia25:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Alicia25:18",
                "plots": "https://api.plotly.com/v2/plots/Alicia25:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=Alicia25"
            },
            "owner": "Alicia25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Alicia25/18/",
            "world_readable": true,
            "date_modified": "2024-06-11T14:26:55.064Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Alicia25/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "12ebbf",
                        "line": {
                            "color": "rgb(62, 76, 252)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "O",
                                "y": "N"
                            }
                        },
                        "mode": "markers",
                        "name": "False",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:d69813",
                        "ysrc": "Alicia25:24:19ed7e",
                        "xaxis": "x",
                        "marker": {
                            "line": {
                                "color": "rgb(254, 144, 6)",
                                "width": 2
                            },
                            "size": 8,
                            "color": "rgb(254, 144, 6)",
                            "symbol": "circle",
                            "opacity": 1
                        },
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "cliponaxis": true
                    },
                    {
                        "uid": "b7b388",
                        "line": {
                            "color": "rgb(28, 4, 4)",
                            "width": 0
                        },
                        "transforms": [
                            {
                                "rms": 0.13826965100679844,
                                "type": "fit",
                                "xmid": 0.8167999999999989,
                                "ymid": 0.76191436653075,
                                "inputUid": "12ebbf",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.17090979749527713,
                                        "value": 0.6340736540552397
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.11065411036001331,
                                        "value": 0.3846144447041961
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.5442038528171185,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "3cdad3",
                        "line": {
                            "dash": "dot",
                            "color": "rgb(199, 201, 200)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:2436e0",
                        "ysrc": "Alicia25:24:35281e",
                        "marker": {
                            "color": "rgb(148, 150, 149)"
                        }
                    },
                    {
                        "uid": "636a78",
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "E"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:1e5044",
                        "ysrc": "Alicia25:24:0a113d",
                        "marker": {
                            "line": {
                                "color": "rgb(97, 2, 8)",
                                "width": 0
                            },
                            "size": 8,
                            "color": "rgb(77, 187, 8)",
                            "symbol": "circle",
                            "opacity": 1
                        }
                    },
                    {
                        "uid": "2ccfe6",
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "H"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:72c367",
                        "ysrc": "Alicia25:24:d8ec56",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 0
                            },
                            "size": 10,
                            "color": "rgb(18, 229, 249)",
                            "symbol": "circle"
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "86ba91",
                        "meta": {
                            "columnNames": {
                                "x": "L",
                                "y": "K"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:88461a",
                        "ysrc": "Alicia25:24:480b79",
                        "marker": {
                            "line": {
                                "color": "rgb(12, 141, 12)",
                                "width": 0
                            },
                            "size": 10,
                            "color": "rgb(177, 6, 255)",
                            "symbol": "circle"
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "9d7fbe",
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Alicia25:24:b15716",
                        "ysrc": "Alicia25:24:9fb8b1",
                        "marker": {
                            "size": 6,
                            "color": "rgb(12, 221, 165)",
                            "opacity": 0
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "bb7da6",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(220, 219, 219)",
                            "width": 4
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(11, 11, 11)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "rgb(11, 11, 11)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "opacity": 1,
                        "groupnorm": "",
                        "stackgaps": "infer zero",
                        "showlegend": true,
                        "stackgroup": "",
                        "transforms": [
                            {
                                "rms": 0,
                                "type": "fit",
                                "xmid": 0.55,
                                "ymid": 0.4751469264044753,
                                "inputUid": "9d7fbe",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.037628767306431894,
                                        "value": 0.6482597910790525
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.021427025742966403,
                                        "value": 0.27345930768883925
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.5442038528171086,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ],
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.543720821616104,
                                "y": 0.7466238537590656,
                                "z": 1.3500170304070456
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.5406218001337089,
                            "y": 1.1286962974578372,
                            "z": 1.6388127922548477
                        }
                    },
                    "width": 800,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "dtick": 9,
                        "range": [
                            -0.060445212910225116,
                            1.0666922972606454
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 24,
                                "color": "rgb(255, 255, 255)",
                                "family": "Open Sans"
                            },
                            "text": "DockQ score"
                        },
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(255, 255, 255)"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "linecolor": "rgb(255, 255, 255)",
                        "linewidth": 4,
                        "tickcolor": "rgb(255, 255, 255)",
                        "tickwidth": 2,
                        "automargin": true,
                        "tickprefix": "",
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.0561307901907357,
                            1.0664850136239783
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 24,
                                "color": "rgb(255, 255, 255)",
                                "family": "Open Sans"
                            },
                            "text": "AF confidence score"
                        },
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 24,
                            "color": "rgb(255, 255, 255)"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "linecolor": "rgb(255, 255, 255)",
                        "linewidth": 4,
                        "tickcolor": "rgb(255, 255, 255)",
                        "tickwidth": 2,
                        "automargin": true,
                        "showticklabels": true
                    },
                    "height": 800,
                    "margin": {
                        "b": 100,
                        "r": 93,
                        "t": 100
                    },
                    "shapes": [],
                    "boxmode": "overlay",
                    "modebar": {
                        "bgcolor": "rgba(0, 0, 0, 0.5)"
                    },
                    "autosize": false,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.6,
                            "y": 1.03,
                            "font": {
                                "size": 26,
                                "color": "rgb(255, 255, 255)"
                            },
                            "text": "R=0.93, <i>p</i>&lt;0.01",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(0, 0, 0)",
                    "paper_bgcolor": "rgb(0, 0, 0)"
                }
            },
            "height": 800,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Alicia25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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-02-05 12:01:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Alicia25",
                "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-24T11:19:42.173402Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~weicheng998/19.embed",
            "fid": "weicheng998:19",
            "filename": "crab_ice",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/weicheng998:19/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/weicheng998/19/2_RHB1W02UFHU848SBU6FLHS71CODHLU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/weicheng998/19/8_VG45IVR0UPNKSWOEQTIM69FHCOFDZL.png",
                "list-thumb": "https://api.plotly.com/v2/files/weicheng998:19/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/weicheng998:19",
                "plots": "https://api.plotly.com/v2/plots/weicheng998:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=weicheng998"
            },
            "owner": "weicheng998",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 22,
            "web_url": "https://chart-studio.plotly.com/~weicheng998/19/",
            "world_readable": true,
            "date_modified": "2024-04-28T04:41:34.440Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~weicheng998/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "Harvest",
                        "type": "scatter",
                        "xsrc": "weicheng998:18:0e6c60",
                        "ysrc": "weicheng998:18:90825b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "Ice September (scaled)",
                        "type": "scatter",
                        "xsrc": "weicheng998:18:a24094",
                        "ysrc": "weicheng998:18:606602",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "Ice March (scaled)",
                        "type": "scatter",
                        "xsrc": "weicheng998:18:ec21f8",
                        "ysrc": "weicheng998:18:3eead9",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        }
                    }
                ],
                "layout": {
                    "title": "Crab Harvest vs. Ice Extent in September and March",
                    "xaxis": {
                        "title": "Year",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "Value (USD)",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~weicheng998",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.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": "2023-12-08 19:17:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "weicheng998",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}