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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA2LTA1KzIxJTNBMzElM0ExMC4zODY2OTUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wNi0wNSsyMSUzQTQ2JTNBNDUuNzU2MTEzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-05T21:46:45.756113Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38674.embed",
            "fid": "cpsievert:38674",
            "filename": "Plot 38674",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38674/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38674/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38674/8_BJ7B4YS3D2P5Q0MI1ZRKHVAKD09GKT.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38674/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38674",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38674",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38674/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:46:45.788Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38674/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "mode": "markers",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "cpsievert:38673:324cf1",
                        "ysrc": "cpsievert:38673:1d4dd2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(102,194,165,1)"
                            },
                            "color": "rgba(102,194,165,1)"
                        },
                        "error_x": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "error_y": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "textfont": {
                            "color": "rgba(102,194,165,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(252,141,98,1)"
                        },
                        "mode": "markers",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "cpsievert:38673:39f78f",
                        "ysrc": "cpsievert:38673:cf7c61",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(252,141,98,1)"
                            },
                            "color": "rgba(252,141,98,1)"
                        },
                        "error_x": {
                            "color": "rgba(252,141,98,1)"
                        },
                        "error_y": {
                            "color": "rgba(252,141,98,1)"
                        },
                        "textfont": {
                            "color": "rgba(252,141,98,1)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgba(141,160,203,1)"
                        },
                        "mode": "markers",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "cpsievert:38673:4811b5",
                        "ysrc": "cpsievert:38673:04b80e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(141,160,203,1)"
                            },
                            "color": "rgba(141,160,203,1)"
                        },
                        "error_x": {
                            "color": "rgba(141,160,203,1)"
                        },
                        "error_y": {
                            "color": "rgba(141,160,203,1)"
                        },
                        "textfont": {
                            "color": "rgba(141,160,203,1)"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "mpg",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "wt",
                        "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/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:46:39.326867Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38672.embed",
            "fid": "cpsievert:38672",
            "filename": "Plot 38672",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38672/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38672/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38672/8_X7TND1J68D40G70UG7HM88X1SFCYGG.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38672/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38672",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38672",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38672/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:46:39.361Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38672/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38671:ec1147",
                        "ysrc": "cpsievert:38671:5a8aac",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "mpg",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "wt",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:44:40.092073Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sudalai/7.embed",
            "fid": "sudalai:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sudalai:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sudalai:7/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sudalai/7/8_F2U7OKF5N38LLDEDPJTBJ4V65EL5DM.png",
                "list-thumb": "https://api.plotly.com/v2/files/sudalai:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sudalai:7",
                "plots": "https://api.plotly.com/v2/plots/sudalai:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=sudalai"
            },
            "owner": "sudalai",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sudalai/7/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:54:42.434Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sudalai/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "M"
                            }
                        },
                        "name": "1Y Return (%)",
                        "type": "bar",
                        "xsrc": "sudalai:8:b2f07d",
                        "ysrc": "sudalai:8:8f0c6e",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "N"
                            }
                        },
                        "name": "3Y Return(%)",
                        "type": "bar",
                        "xsrc": "sudalai:8:b2f07d",
                        "ysrc": "sudalai:8:c22d18",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "O"
                            }
                        },
                        "name": "5Y Return(%)",
                        "type": "bar",
                        "xsrc": "sudalai:8:b2f07d",
                        "ysrc": "sudalai:8:d4eb93",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Roboto"
                    },
                    "title": {
                        "text": "Interactive Stock Return Over 1, 3, 5 Years"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "title": {
                            "text": "Stock"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            104.13684210526317
                        ],
                        "title": {
                            "text": "Return(%)"
                        },
                        "autorange": false
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sudalai",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-05 19:23:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sudalai",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:38:08.342533Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sudalai/5.embed",
            "fid": "sudalai:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sudalai:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sudalai:5/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sudalai/5/8_YJJUD8QNFQJH6MURCB7TNE6EZ4NQ2R.png",
                "list-thumb": "https://api.plotly.com/v2/files/sudalai:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sudalai:5",
                "plots": "https://api.plotly.com/v2/plots/sudalai:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=sudalai"
            },
            "owner": "sudalai",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sudalai/5/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:41:40.595Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sudalai/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "K"
                            }
                        },
                        "name": "1Y Return (%)",
                        "type": "bar",
                        "xsrc": "sudalai:4:a64094",
                        "ysrc": "sudalai:4:a86250",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "I"
                            }
                        },
                        "name": "3Y Return(%)",
                        "type": "bar",
                        "xsrc": "sudalai:4:a64094",
                        "ysrc": "sudalai:4:c506a8",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "K"
                            }
                        },
                        "name": "5Y Return(%)",
                        "type": "bar",
                        "xsrc": "sudalai:4:a64094",
                        "ysrc": "sudalai:4:a86250",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Roboto"
                    },
                    "title": {
                        "text": "Interactive Stock Return Over 1, 3, 5 Years"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "title": {
                            "text": "Stock"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            693.4736842105262
                        ],
                        "title": {
                            "text": "Return(%)"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sudalai",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-05 19:23:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sudalai",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:36:15.259304Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Nina99/1.embed",
            "fid": "Nina99:1",
            "filename": "proteins",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Nina99:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Nina99:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Nina99/1/8_CDCC15XSGETSZFJT45Z48GM4I9XFPW.png",
                "list-thumb": "https://api.plotly.com/v2/files/Nina99:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Nina99:1",
                "plots": "https://api.plotly.com/v2/plots/Nina99:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Nina99"
            },
            "owner": "Nina99",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Nina99/1/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:36:15.271Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Nina99/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A",
                                "z": "C - D - E - F - G"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "Nina99:0:74bbcc",
                        "ysrc": "Nina99:0:202646",
                        "zsrc": "Nina99:0:0d1007,6b769f,01faac,0ff13f,3096dd",
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "OKCupid Compatibility by Religion<br>Source: <a href=\"http://blog.okcupid.com/index.php/how-races-and-religions-match-in-online-dating/\">OKTrends, 2009</a>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            10.5
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "colorway": [
                        "#e41a1c",
                        "#377eb8",
                        "#4daf4a",
                        "#984ea3",
                        "#ff7f00",
                        "#ffff33",
                        "#a65628",
                        "#f781bf",
                        "#999999"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#050aac"
                            ],
                            [
                                0.2,
                                "#283cbe"
                            ],
                            [
                                0.4,
                                "#4664f5"
                            ],
                            [
                                0.6,
                                "#5a78f5"
                            ],
                            [
                                0.8,
                                "#6a89f7"
                            ],
                            [
                                1,
                                "#dcdcdc"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Nina99",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-05 21:19:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Nina99",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:32:38.294635Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~OscarWyndham/1.embed",
            "fid": "OscarWyndham:1",
            "filename": "Flow P1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/OscarWyndham:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/OscarWyndham:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/OscarWyndham/1/8_C1KEIG11GUBCRUV3612BNLSW6ONUN4.png",
                "list-thumb": "https://api.plotly.com/v2/files/OscarWyndham:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/OscarWyndham:1",
                "plots": "https://api.plotly.com/v2/plots/OscarWyndham:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=OscarWyndham"
            },
            "owner": "OscarWyndham",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~OscarWyndham/1/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:32:38.305Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~OscarWyndham/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "OscarWyndham:0:05f5a3",
                        "ysrc": "OscarWyndham:0:345261"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.001756535947712412,
                            7.032066993464054
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.8285055071411269,
                            27.458286431856678
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~OscarWyndham",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.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": "2025-06-05 21:29:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "OscarWyndham",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:31:15.839623Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38667.embed",
            "fid": "cpsievert:38667",
            "filename": "Plot 38667",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38667/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38667/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38667/8_621ZW4N1PDTE1LQTC5PTGN9N7VD8ME.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38667/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38667",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38667",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38667/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:31:15.871Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38667/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "cpsievert:38666:311527",
                        "ysrc": "cpsievert:38666:471711",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(89,89,89,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "cpsievert:38666:8b5894",
                        "textsrc": "cpsievert:38666:4134ae",
                        "widthsrc": "cpsievert:38666:bc427f",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.055000000000000104,
                            10.944999999999999
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "1:10"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2.5",
                            "5.0",
                            "7.5",
                            "10.0"
                        ],
                        "tickvals": [
                            2.5,
                            5,
                            7.500000000000001,
                            10
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2.5",
                            "5.0",
                            "7.5",
                            "10.0"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.05,
                            1.05
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "count"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.00",
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00"
                        ],
                        "tickvals": [
                            0,
                            0.25,
                            0.5,
                            0.75,
                            1
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.00",
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 39.69558599695587,
                        "l": 48.94977168949772,
                        "r": 7.305936073059362,
                        "t": 25.74124809741248
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "layer": "below",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:31:13.981918Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38665.embed",
            "fid": "cpsievert:38665",
            "filename": "Plot 38665",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38665/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38665/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38665/8_R5STGSDB7LZ5PP3AC522TPSPUU2JPA.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38665/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38665",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38665",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38665/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:31:14.013Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38665/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38664:6d16b9",
                        "ysrc": "cpsievert:38664:69543d",
                        "frame": "1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 10,
                            "cmin": 1,
                            "line": {
                                "cmax": 10,
                                "cmin": 1,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "cpsievert:38664:8134a2",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(68,1,84,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(70,19,97,1)"
                                    ],
                                    [
                                        "0.0833333333333333",
                                        "rgba(72,32,111,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(71,45,122,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(68,58,128,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(64,70,135,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(60,82,138,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(56,93,140,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(49,104,142,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(46,114,142,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(42,123,142,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(38,133,141,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(37,144,140,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(33,154,138,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(39,164,133,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(47,174,127,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(53,183,121,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(79,191,110,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(98,199,98,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(119,207,85,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(147,214,70,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(172,220,52,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(199,225,42,1)"
                                    ],
                                    [
                                        "0.958333333333333",
                                        "rgba(226,228,40,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(253,231,37,1)"
                                    ]
                                ]
                            },
                            "colorbar": {
                                "title": "",
                                "ticklen": 2
                            },
                            "colorsrc": "cpsievert:38664:e1e3c7",
                            "showscale": false,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(68,1,84,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(70,19,97,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(72,32,111,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(71,45,122,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(68,58,128,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(64,70,135,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(60,82,138,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(56,93,140,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(49,104,142,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(46,114,142,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(42,123,142,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(38,133,141,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(37,144,140,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(33,154,138,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(39,164,133,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(47,174,127,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(53,183,121,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(79,191,110,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(98,199,98,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(119,207,85,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(147,214,70,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(172,220,52,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(199,225,42,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(226,228,40,1)"
                                ],
                                [
                                    "1",
                                    "rgba(253,231,37,1)"
                                ]
                            ]
                        },
                        "visible": true
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38664:13e608",
                        "ysrc": "cpsievert:38664:a8abaa",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 10,
                            "cmin": 1,
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "colorbar": {
                                "y": 1,
                                "len": 0.5,
                                "title": "",
                                "lenmode": "fraction",
                                "ticklen": 2,
                                "yanchor": "top"
                            },
                            "colorsrc": "cpsievert:38664:dba57d",
                            "showscale": true,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(68,1,84,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(70,19,97,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(72,32,111,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(71,45,122,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(68,58,128,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(64,70,135,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(60,82,138,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(56,93,140,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(49,104,142,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(46,114,142,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(42,123,142,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(38,133,141,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(37,144,140,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(33,154,138,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(39,164,133,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(47,174,127,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(53,183,121,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(79,191,110,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(98,199,98,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(119,207,85,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(147,214,70,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(172,220,52,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(199,225,42,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(226,228,40,1)"
                                ],
                                [
                                    "1",
                                    "rgba(253,231,37,1)"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "type": "scatter",
                                "xsrc": "cpsievert:38664:3660d0",
                                "ysrc": "cpsievert:38664:86a680",
                                "frame": "1",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "cmax": 10,
                                    "cmin": 1,
                                    "line": {
                                        "cmax": 10,
                                        "cmin": 1,
                                        "colorbar": {
                                            "title": "",
                                            "ticklen": 2
                                        },
                                        "colorsrc": "cpsievert:38664:3594b4",
                                        "showscale": false,
                                        "colorscale": [
                                            [
                                                "0",
                                                "rgba(68,1,84,1)"
                                            ],
                                            [
                                                "0.0416666666666667",
                                                "rgba(70,19,97,1)"
                                            ],
                                            [
                                                "0.0833333333333333",
                                                "rgba(72,32,111,1)"
                                            ],
                                            [
                                                "0.125",
                                                "rgba(71,45,122,1)"
                                            ],
                                            [
                                                "0.166666666666667",
                                                "rgba(68,58,128,1)"
                                            ],
                                            [
                                                "0.208333333333333",
                                                "rgba(64,70,135,1)"
                                            ],
                                            [
                                                "0.25",
                                                "rgba(60,82,138,1)"
                                            ],
                                            [
                                                "0.291666666666667",
                                                "rgba(56,93,140,1)"
                                            ],
                                            [
                                                "0.333333333333333",
                                                "rgba(49,104,142,1)"
                                            ],
                                            [
                                                "0.375",
                                                "rgba(46,114,142,1)"
                                            ],
                                            [
                                                "0.416666666666667",
                                                "rgba(42,123,142,1)"
                                            ],
                                            [
                                                "0.458333333333333",
                                                "rgba(38,133,141,1)"
                                            ],
                                            [
                                                "0.5",
                                                "rgba(37,144,140,1)"
                                            ],
                                            [
                                                "0.541666666666667",
                                                "rgba(33,154,138,1)"
                                            ],
                                            [
                                                "0.583333333333333",
                                                "rgba(39,164,133,1)"
                                            ],
                                            [
                                                "0.625",
                                                "rgba(47,174,127,1)"
                                            ],
                                            [
                                                "0.666666666666667",
                                                "rgba(53,183,121,1)"
                                            ],
                                            [
                                                "0.708333333333333",
                                                "rgba(79,191,110,1)"
                                            ],
                                            [
                                                "0.75",
                                                "rgba(98,199,98,1)"
                                            ],
                                            [
                                                "0.791666666666667",
                                                "rgba(119,207,85,1)"
                                            ],
                                            [
                                                "0.833333333333333",
                                                "rgba(147,214,70,1)"
                                            ],
                                            [
                                                "0.875",
                                                "rgba(172,220,52,1)"
                                            ],
                                            [
                                                "0.916666666666667",
                                                "rgba(199,225,42,1)"
                                            ],
                                            [
                                                "0.958333333333333",
                                                "rgba(226,228,40,1)"
                                            ],
                                            [
                                                "1",
                                                "rgba(253,231,37,1)"
                                            ]
                                        ]
                                    },
                                    "colorbar": {
                                        "title": "",
                                        "ticklen": 2
                                    },
                                    "colorsrc": "cpsievert:38664:db0b1e",
                                    "showscale": false,
                                    "colorscale": [
                                        [
                                            "0",
                                            "rgba(68,1,84,1)"
                                        ],
                                        [
                                            "0.0416666666666667",
                                            "rgba(70,19,97,1)"
                                        ],
                                        [
                                            "0.0833333333333333",
                                            "rgba(72,32,111,1)"
                                        ],
                                        [
                                            "0.125",
                                            "rgba(71,45,122,1)"
                                        ],
                                        [
                                            "0.166666666666667",
                                            "rgba(68,58,128,1)"
                                        ],
                                        [
                                            "0.208333333333333",
                                            "rgba(64,70,135,1)"
                                        ],
                                        [
                                            "0.25",
                                            "rgba(60,82,138,1)"
                                        ],
                                        [
                                            "0.291666666666667",
                                            "rgba(56,93,140,1)"
                                        ],
                                        [
                                            "0.333333333333333",
                                            "rgba(49,104,142,1)"
                                        ],
                                        [
                                            "0.375",
                                            "rgba(46,114,142,1)"
                                        ],
                                        [
                                            "0.416666666666667",
                                            "rgba(42,123,142,1)"
                                        ],
                                        [
                                            "0.458333333333333",
                                            "rgba(38,133,141,1)"
                                        ],
                                        [
                                            "0.5",
                                            "rgba(37,144,140,1)"
                                        ],
                                        [
                                            "0.541666666666667",
                                            "rgba(33,154,138,1)"
                                        ],
                                        [
                                            "0.583333333333333",
                                            "rgba(39,164,133,1)"
                                        ],
                                        [
                                            "0.625",
                                            "rgba(47,174,127,1)"
                                        ],
                                        [
                                            "0.666666666666667",
                                            "rgba(53,183,121,1)"
                                        ],
                                        [
                                            "0.708333333333333",
                                            "rgba(79,191,110,1)"
                                        ],
                                        [
                                            "0.75",
                                            "rgba(98,199,98,1)"
                                        ],
                                        [
                                            "0.791666666666667",
                                            "rgba(119,207,85,1)"
                                        ],
                                        [
                                            "0.833333333333333",
                                            "rgba(147,214,70,1)"
                                        ],
                                        [
                                            "0.875",
                                            "rgba(172,220,52,1)"
                                        ],
                                        [
                                            "0.916666666666667",
                                            "rgba(199,225,42,1)"
                                        ],
                                        [
                                            "0.958333333333333",
                                            "rgba(226,228,40,1)"
                                        ],
                                        [
                                            "1",
                                            "rgba(253,231,37,1)"
                                        ]
                                    ]
                                },
                                "visible": true
                            }
                        ],
                        "name": "1",
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "mode": "markers",
                                "type": "scatter",
                                "xsrc": "cpsievert:38664:a0a515",
                                "ysrc": "cpsievert:38664:26e0c7",
                                "frame": "2",
                                "xaxis": "x",
                                "yaxis": "y",
                                "marker": {
                                    "cmax": 10,
                                    "cmin": 1,
                                    "line": {
                                        "cmax": 10,
                                        "cmin": 1,
                                        "colorbar": {
                                            "title": "",
                                            "ticklen": 2
                                        },
                                        "colorsrc": "cpsievert:38664:80a380",
                                        "showscale": false,
                                        "colorscale": [
                                            [
                                                "0",
                                                "rgba(68,1,84,1)"
                                            ],
                                            [
                                                "0.0416666666666667",
                                                "rgba(70,19,97,1)"
                                            ],
                                            [
                                                "0.0833333333333333",
                                                "rgba(72,32,111,1)"
                                            ],
                                            [
                                                "0.125",
                                                "rgba(71,45,122,1)"
                                            ],
                                            [
                                                "0.166666666666667",
                                                "rgba(68,58,128,1)"
                                            ],
                                            [
                                                "0.208333333333333",
                                                "rgba(64,70,135,1)"
                                            ],
                                            [
                                                "0.25",
                                                "rgba(60,82,138,1)"
                                            ],
                                            [
                                                "0.291666666666667",
                                                "rgba(56,93,140,1)"
                                            ],
                                            [
                                                "0.333333333333333",
                                                "rgba(49,104,142,1)"
                                            ],
                                            [
                                                "0.375",
                                                "rgba(46,114,142,1)"
                                            ],
                                            [
                                                "0.416666666666667",
                                                "rgba(42,123,142,1)"
                                            ],
                                            [
                                                "0.458333333333333",
                                                "rgba(38,133,141,1)"
                                            ],
                                            [
                                                "0.5",
                                                "rgba(37,144,140,1)"
                                            ],
                                            [
                                                "0.541666666666667",
                                                "rgba(33,154,138,1)"
                                            ],
                                            [
                                                "0.583333333333333",
                                                "rgba(39,164,133,1)"
                                            ],
                                            [
                                                "0.625",
                                                "rgba(47,174,127,1)"
                                            ],
                                            [
                                                "0.666666666666667",
                                                "rgba(53,183,121,1)"
                                            ],
                                            [
                                                "0.708333333333333",
                                                "rgba(79,191,110,1)"
                                            ],
                                            [
                                                "0.75",
                                                "rgba(98,199,98,1)"
                                            ],
                                            [
                                                "0.791666666666667",
                                                "rgba(119,207,85,1)"
                                            ],
                                            [
                                                "0.833333333333333",
                                                "rgba(147,214,70,1)"
                                            ],
                                            [
                                                "0.875",
                                                "rgba(172,220,52,1)"
                                            ],
                                            [
                                                "0.916666666666667",
                                                "rgba(199,225,42,1)"
                                            ],
                                            [
                                                "0.958333333333333",
                                                "rgba(226,228,40,1)"
                                            ],
                                            [
                                                "1",
                                                "rgba(253,231,37,1)"
                                            ]
                                        ]
                                    },
                                    "colorbar": {
                                        "title": "",
                                        "ticklen": 2
                                    },
                                    "colorsrc": "cpsievert:38664:83a3dc",
                                    "showscale": false,
                                    "colorscale": [
                                        [
                                            "0",
                                            "rgba(68,1,84,1)"
                                        ],
                                        [
                                            "0.0416666666666667",
                                            "rgba(70,19,97,1)"
                                        ],
                                        [
                                            "0.0833333333333333",
                                            "rgba(72,32,111,1)"
                                        ],
                                        [
                                            "0.125",
                                            "rgba(71,45,122,1)"
                                        ],
                                        [
                                            "0.166666666666667",
                                            "rgba(68,58,128,1)"
                                        ],
                                        [
                                            "0.208333333333333",
                                            "rgba(64,70,135,1)"
                                        ],
                                        [
                                            "0.25",
                                            "rgba(60,82,138,1)"
                                        ],
                                        [
                                            "0.291666666666667",
                                            "rgba(56,93,140,1)"
                                        ],
                                        [
                                            "0.333333333333333",
                                            "rgba(49,104,142,1)"
                                        ],
                                        [
                                            "0.375",
                                            "rgba(46,114,142,1)"
                                        ],
                                        [
                                            "0.416666666666667",
                                            "rgba(42,123,142,1)"
                                        ],
                                        [
                                            "0.458333333333333",
                                            "rgba(38,133,141,1)"
                                        ],
                                        [
                                            "0.5",
                                            "rgba(37,144,140,1)"
                                        ],
                                        [
                                            "0.541666666666667",
                                            "rgba(33,154,138,1)"
                                        ],
                                        [
                                            "0.583333333333333",
                                            "rgba(39,164,133,1)"
                                        ],
                                        [
                                            "0.625",
                                            "rgba(47,174,127,1)"
                                        ],
                                        [
                                            "0.666666666666667",
                                            "rgba(53,183,121,1)"
                                        ],
                                        [
                                            "0.708333333333333",
                                            "rgba(79,191,110,1)"
                                        ],
                                        [
                                            "0.75",
                                            "rgba(98,199,98,1)"
                                        ],
                                        [
                                            "0.791666666666667",
                                            "rgba(119,207,85,1)"
                                        ],
                                        [
                                            "0.833333333333333",
                                            "rgba(147,214,70,1)"
                                        ],
                                        [
                                            "0.875",
                                            "rgba(172,220,52,1)"
                                        ],
                                        [
                                            "0.916666666666667",
                                            "rgba(199,225,42,1)"
                                        ],
                                        [
                                            "0.958333333333333",
                                            "rgba(226,228,40,1)"
                                        ],
                                        [
                                            "1",
                                            "rgba(253,231,37,1)"
                                        ]
                                    ]
                                },
                                "visible": true
                            }
                        ],
                        "name": "2",
                        "traces": [
                            0
                        ]
                    }
                ],
                "layout": {
                    "xaxis": {
                        "range": [
                            0.55,
                            10.45
                        ],
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "range": [
                            0.55,
                            10.45
                        ],
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "sliders": [
                        {
                            "pad": {
                                "t": 40
                            },
                            "steps": [
                                {
                                    "args": [
                                        [
                                            "1"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "1",
                                    "value": "1",
                                    "method": "animate"
                                },
                                {
                                    "args": [
                                        [
                                            "2"
                                        ],
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            }
                                        }
                                    ],
                                    "label": "2",
                                    "value": "2",
                                    "method": "animate"
                                }
                            ],
                            "visible": true
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": false,
                    "updatemenus": [
                        {
                            "x": 0,
                            "y": 0,
                            "pad": {
                                "r": 5,
                                "t": 60
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 500
                                            },
                                            "transition": {
                                                "easing": "linear",
                                                "duration": 500
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "Play",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "direction": "right",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:31:12.151491Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38663.embed",
            "fid": "cpsievert:38663",
            "filename": "Plot 38663",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38663/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38663/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38663/8_W8UZV9TMSFG6OWDCRMVBO3UTTD0LP1.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38663/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38663",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38663",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38663/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:31:12.185Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38663/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38662:7dd587",
                        "ysrc": "cpsievert:38662:4b6a0a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 10,
                            "cmin": 1,
                            "line": {
                                "cmax": 10,
                                "cmin": 1,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "cpsievert:38662:80f37c",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(68,1,84,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(70,19,97,1)"
                                    ],
                                    [
                                        "0.0833333333333333",
                                        "rgba(72,32,111,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(71,45,122,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(68,58,128,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(64,70,135,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(60,82,138,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(56,93,140,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(49,104,142,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(46,114,142,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(42,123,142,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(38,133,141,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(37,144,140,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(33,154,138,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(39,164,133,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(47,174,127,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(53,183,121,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(79,191,110,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(98,199,98,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(119,207,85,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(147,214,70,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(172,220,52,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(199,225,42,1)"
                                    ],
                                    [
                                        "0.958333333333333",
                                        "rgba(226,228,40,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(253,231,37,1)"
                                    ]
                                ]
                            },
                            "colorbar": {
                                "title": "",
                                "ticklen": 2
                            },
                            "colorsrc": "cpsievert:38662:1b96fb",
                            "showscale": false,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(68,1,84,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(70,19,97,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(72,32,111,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(71,45,122,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(68,58,128,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(64,70,135,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(60,82,138,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(56,93,140,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(49,104,142,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(46,114,142,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(42,123,142,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(38,133,141,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(37,144,140,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(33,154,138,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(39,164,133,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(47,174,127,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(53,183,121,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(79,191,110,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(98,199,98,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(119,207,85,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(147,214,70,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(172,220,52,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(199,225,42,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(226,228,40,1)"
                                ],
                                [
                                    "1",
                                    "rgba(253,231,37,1)"
                                ]
                            ]
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38662:5694cb",
                        "ysrc": "cpsievert:38662:12bd37",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 10,
                            "cmin": 1,
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "colorbar": {
                                "y": 1,
                                "len": 0.5,
                                "title": "",
                                "lenmode": "fraction",
                                "ticklen": 2,
                                "yanchor": "top"
                            },
                            "colorsrc": "cpsievert:38662:317439",
                            "showscale": true,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(68,1,84,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(70,19,97,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(72,32,111,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(71,45,122,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(68,58,128,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(64,70,135,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(60,82,138,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(56,93,140,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(49,104,142,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(46,114,142,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(42,123,142,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(38,133,141,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(37,144,140,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(33,154,138,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(39,164,133,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(47,174,127,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(53,183,121,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(79,191,110,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(98,199,98,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(119,207,85,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(147,214,70,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(172,220,52,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(199,225,42,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(226,228,40,1)"
                                ],
                                [
                                    "1",
                                    "rgba(253,231,37,1)"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-05T21:31:10.386695Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cpsievert/38661.embed",
            "fid": "cpsievert:38661",
            "filename": "Plot 38661",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cpsievert:38661/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cpsievert:38661/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cpsievert/38661/8_OUWTZJ6HQHXR0MGASB6FKKLYZ64TOV.png",
                "list-thumb": "https://api.plotly.com/v2/files/cpsievert:38661/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cpsievert:38661",
                "plots": "https://api.plotly.com/v2/plots/cpsievert:38661",
                "parent": "https://api.plotly.com/v2/folders/home?user=cpsievert"
            },
            "owner": "cpsievert",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cpsievert/38661/",
            "world_readable": true,
            "date_modified": "2025-06-05T21:31:10.420Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cpsievert/38661/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cpsievert:38660:965441",
                        "ysrc": "cpsievert:38660:405805",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "red"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": [],
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cpsievert",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2014-07-23 00:30:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cpsievert",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}