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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE4KzE0JTNBMjklM0E0OS41NTk2ODAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOCsxNSUzQTEzJTNBNDQuMjIzMzMyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-18T15:13:44.223332Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tiendatluu/7.embed",
            "fid": "tiendatluu:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tiendatluu/7/9_14ONBFGJUHXJKXO87N5C0KCYEYONPO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tiendatluu/7/2_APEPF7N3MUXULJS9GCZX69FETXYWRD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tiendatluu/7/8_5I5DGEGH8W9XQ7I8PGQ3YPUVVIJ1MH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tiendatluu/7/9_14ONBFGJUHXJKXO87N5C0KCYEYONPO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tiendatluu:7",
                "plots": "https://api.plotly.com/v2/plots/tiendatluu:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=tiendatluu"
            },
            "owner": "tiendatluu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~tiendatluu/7/",
            "world_readable": true,
            "date_modified": "2024-04-18T15:16:48.681Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tiendatluu/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "name": "Submissions",
                        "type": "bar",
                        "xsrc": "tiendatluu:6:4bcf75",
                        "ysrc": "tiendatluu:6:1eb918",
                        "orientation": "v"
                    },
                    {
                        "x": [],
                        "y": [],
                        "name": "Comments",
                        "type": "bar"
                    },
                    {
                        "x": [],
                        "y": [],
                        "name": "Replies",
                        "type": "bar"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Posts Per Day"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2024-04-04 12:00",
                            "2024-04-18 12:00"
                        ],
                        "title": {
                            "text": "Date"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            28.42105263157895
                        ],
                        "title": {
                            "text": "Posts"
                        },
                        "autorange": true
                    },
                    "barmode": "stack",
                    "autosize": true,
                    "colorway": [
                        "#8dd3c7",
                        "#ffffb3",
                        "#bebada",
                        "#fb8072",
                        "#80b1d3",
                        "#fdb462",
                        "#b3de69",
                        "#fccde5",
                        "#d9d9d9",
                        "#bc80bd",
                        "#ccebc5",
                        "#ffed6f"
                    ],
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#f7fbff"
                            ],
                            [
                                0.125,
                                "#deebf7"
                            ],
                            [
                                0.25,
                                "#c6dbef"
                            ],
                            [
                                0.375,
                                "#9ecae1"
                            ],
                            [
                                0.5,
                                "#6baed6"
                            ],
                            [
                                0.625,
                                "#4292c6"
                            ],
                            [
                                0.75,
                                "#2171b5"
                            ],
                            [
                                0.875,
                                "#08519c"
                            ],
                            [
                                1,
                                "#08306b"
                            ]
                        ]
                    },
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tiendatluu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-01 08:28:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tiendatluu",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:08:47.787851Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rschap/226.embed",
            "fid": "rschap:226",
            "filename": "MOF 3 & 3.2 IR",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rschap/226/9_71FIIZTRI32873M12W4F8U48PWAWNG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rschap/226/2_HNPC6L80SL7RQ6DHRRDV373NKG4A8D.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/226/8_MR4OMW1SP4JDGJC3J6HFDXRDDQMP3Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/226/9_71FIIZTRI32873M12W4F8U48PWAWNG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rschap:226",
                "plots": "https://api.plotly.com/v2/plots/rschap:226",
                "parent": "https://api.plotly.com/v2/folders/home?user=rschap"
            },
            "owner": "rschap",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rschap/226/",
            "world_readable": true,
            "date_modified": "2024-04-18T16:04:45.778Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rschap/226/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 423 By Analyst Date Thursday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 3",
                        "type": "scatter",
                        "xsrc": "rschap:224:e40de1",
                        "ysrc": "rschap:224:3561d0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 421 By Analyst Date Thursday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 3.2",
                        "type": "scatter",
                        "xsrc": "rschap:225:b26b7a",
                        "ysrc": "rschap:225:c38942"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 044 By Analyst Date Wednesday"
                            }
                        },
                        "mode": "lines",
                        "name": "CD 5",
                        "type": "scatter",
                        "xsrc": "rschap:146:937ce0",
                        "ysrc": "rschap:146:90d76c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "IR Spectrum Comparison MOF 3 and MOF 3.2"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            4000,
                            650
                        ],
                        "title": {
                            "text": "Wavenumber (cm-1)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            48.52166666666666,
                            102.68833333333333
                        ],
                        "title": {
                            "text": "Transmittance (T%)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rschap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-09-30 16:39:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rschap",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:07:36.126713Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~romanroff/1.embed",
            "fid": "romanroff:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/romanroff/1/9_9Q3JJ5MGM41HKZ22CPDU519RD3IS6S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/romanroff/1/2_LEVCQRSTF6WK8WSCJXA00W7X1HDHNC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/romanroff/1/8_HFCTGKFLJ3IW1IQAV5DOCNIMLS4NEX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/romanroff/1/9_9Q3JJ5MGM41HKZ22CPDU519RD3IS6S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/romanroff:1",
                "plots": "https://api.plotly.com/v2/plots/romanroff:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=romanroff"
            },
            "owner": "romanroff",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~romanroff/1/",
            "world_readable": true,
            "date_modified": "2024-04-18T15:10:49.975Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~romanroff/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Africa, x",
                                "y": "Africa, y",
                                "text": "Africa, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Africa",
                        "type": "scatter",
                        "xsrc": "romanroff:0:3beda5",
                        "ysrc": "romanroff:0:b11489",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Africa, size"
                                }
                            },
                            "symbol": "circle",
                            "sizeref": 0.85,
                            "sizesrc": "romanroff:0:affae1",
                            "sizemode": "diameter"
                        },
                        "textsrc": "romanroff:0:08d97f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Americas, x",
                                "y": "Americas, y",
                                "text": "Americas, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Americas",
                        "type": "scatter",
                        "xsrc": "romanroff:0:d83fed",
                        "ysrc": "romanroff:0:3f7fd2",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Americas, size"
                                }
                            },
                            "sizeref": 0.85,
                            "sizesrc": "romanroff:0:8ebc15",
                            "sizemode": "diameter"
                        },
                        "textsrc": "romanroff:0:83626d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Asia, x",
                                "y": "Asia, y",
                                "text": "Asia, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Asia",
                        "type": "scatter",
                        "xsrc": "romanroff:0:670f31",
                        "ysrc": "romanroff:0:1e15d1",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Asia, size"
                                }
                            },
                            "sizeref": 0.85,
                            "sizesrc": "romanroff:0:0ab91c",
                            "sizemode": "diameter"
                        },
                        "textsrc": "romanroff:0:4aeca3"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Europe, x",
                                "y": "Europe, y",
                                "text": "Europe, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Europe",
                        "type": "scatter",
                        "xsrc": "romanroff:0:4124f4",
                        "ysrc": "romanroff:0:47ece0",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Europe, size"
                                }
                            },
                            "sizeref": 0.85,
                            "sizesrc": "romanroff:0:115a07",
                            "sizemode": "diameter"
                        },
                        "textsrc": "romanroff:0:5898e7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oceania, x",
                                "y": "Oceania, y",
                                "text": "Oceania, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Oceania",
                        "type": "scatter",
                        "xsrc": "romanroff:0:c3bb18",
                        "ysrc": "romanroff:0:d089b5",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Oceania, size"
                                }
                            },
                            "sizeref": 0.85,
                            "sizesrc": "romanroff:0:28cd9a",
                            "sizemode": "diameter"
                        },
                        "textsrc": "romanroff:0:edf791"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Life Expectancy v. Per Capita GDP, 2007"
                    },
                    "xaxis": {
                        "type": "log",
                        "range": [
                            2.003297660701705,
                            5.191505530708712
                        ],
                        "title": {
                            "text": "GDP per capita (2000 dollars)"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            36.12621671352166,
                            91.72921793264332
                        ],
                        "title": {
                            "text": "Life Expectancy (years)"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(231,231,240)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(183,183,191)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(234,234,242)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "rgb(234,234,242)",
                                "radialaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                }
                            },
                            "xaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "rgb(234,234,242)"
                            },
                            "colorway": [
                                "rgb(76,114,176)",
                                "rgb(221,132,82)",
                                "rgb(85,168,104)",
                                "rgb(196,78,82)",
                                "rgb(129,114,179)",
                                "rgb(147,120,96)",
                                "rgb(218,139,195)",
                                "rgb(140,140,140)",
                                "rgb(204,185,116)",
                                "rgb(100,181,205)"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#67001f"
                                    ],
                                    [
                                        0.1,
                                        "#b2182b"
                                    ],
                                    [
                                        0.2,
                                        "#d6604d"
                                    ],
                                    [
                                        0.3,
                                        "#f4a582"
                                    ],
                                    [
                                        0.4,
                                        "#fddbc7"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d1e5f0"
                                    ],
                                    [
                                        0.7,
                                        "#92c5de"
                                    ],
                                    [
                                        0.8,
                                        "#4393c3"
                                    ],
                                    [
                                        0.9,
                                        "#2166ac"
                                    ],
                                    [
                                        1,
                                        "#053061"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1,
                                        "rgb(250,234,220)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(234,234,242)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.5,
                                "fillcolor": "rgb(67,103,167)"
                            },
                            "annotationdefaults": {
                                "arrowcolor": "rgb(67,103,167)"
                            }
                        },
                        "themeRef": "SEABORN"
                    },
                    "plot_bgcolor": "rgb(243, 243, 243)",
                    "paper_bgcolor": "rgb(243, 243, 243)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~romanroff",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 15:07:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "romanroff",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:06:16.097484Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rayrayhey/1.embed",
            "fid": "rayrayhey:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rayrayhey/1/9_671NYMT1AH9TZOO83KFN5RDPD1HVP4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rayrayhey/1/2_WZG3Q0SM3AU1AOOH5N7LJOCCOU0OV9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rayrayhey/1/8_61QN3SVUBOSN9HRPBOTWWWZ2RX9R2A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rayrayhey/1/9_671NYMT1AH9TZOO83KFN5RDPD1HVP4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rayrayhey:1",
                "plots": "https://api.plotly.com/v2/plots/rayrayhey:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=rayrayhey"
            },
            "owner": "rayrayhey",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rayrayhey/1/",
            "world_readable": true,
            "date_modified": "2024-04-18T15:06:21.987Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rayrayhey/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f9a94a",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(106, 168, 79)",
                            "shape": "linear",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "% of Articles_x",
                                "y": "Revenue"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Revenue",
                        "type": "scatter",
                        "xsrc": "rayrayhey:0:a043b4",
                        "ysrc": "rayrayhey:0:a60e68",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgb(190, 115, 5)",
                                "width": 2
                            },
                            "size": 10,
                            "symbol": "star-diamond"
                        },
                        "error_x": {},
                        "error_y": {},
                        "textfont": {},
                        "connectgaps": false
                    },
                    {
                        "uid": "18fe64",
                        "meta": {
                            "columnNames": {
                                "x": "% of Articles_x",
                                "y": "Filings",
                                "text": ""
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Filings",
                        "type": "bar",
                        "xsrc": "rayrayhey:0:a043b4",
                        "ysrc": "rayrayhey:0:d85286",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgb(109, 158, 235)",
                                "width": 2
                            },
                            "color": "rgb(92, 114, 151)",
                            "opacity": 0.7
                        },
                        "error_x": {},
                        "error_y": {},
                        "textfont": {},
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "Georgia, serif"
                    },
                    "smith": false,
                    "title": {
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "text": "CFIUS"
                    },
                    "width": 1360,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            2010.25233281493,
                            2023.74766718507
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "Year"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "nticks": 0,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "#eee",
                        "gridwidth": 1,
                        "linecolor": "#444",
                        "linewidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "automargin": false,
                        "fixedrange": false,
                        "overlaying": false,
                        "showspikes": false,
                        "tickformat": "",
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "bargap": 0.75,
                    "boxgap": 0.3,
                    "height": 557,
                    "legend": {
                        "x": 1.02,
                        "y": 1,
                        "font": {
                            "size": 11,
                            "color": "",
                            "family": ""
                        },
                        "bgcolor": "#fff",
                        "xanchor": "left",
                        "yanchor": "top",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 100,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "dtick": 2,
                        "range": [
                            21375.377444506623,
                            5300142.33389007
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "Revenue"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "nticks": 0,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "#eee",
                        "gridwidth": 1,
                        "linecolor": "#444",
                        "linewidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            31.57894736842105
                        ],
                        "ticks": "",
                        "title": {
                            "text": "Filings"
                        },
                        "ticklen": 4,
                        "showgrid": false,
                        "autorange": true,
                        "automargin": false,
                        "overlaying": "y2"
                    },
                    "barmode": "group",
                    "boxmode": "overlay",
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "separators": ".,",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": -0.05758064516129032,
                            "y": -0.17827902581159932,
                            "ax": -10,
                            "ay": -28.76666259765625,
                            "tag": "",
                            "font": {
                                "size": 0,
                                "color": "",
                                "family": ""
                            },
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "bgcolor": "rgba(0, 0, 0, 0)",
                            "opacity": 1,
                            "xanchor": "auto",
                            "yanchor": "auto",
                            "arrowhead": 1,
                            "arrowsize": 1,
                            "borderpad": 1,
                            "showarrow": false,
                            "arrowcolor": "",
                            "arrowwidth": 0,
                            "bordercolor": "",
                            "borderwidth": 1
                        }
                    ],
                    "bargroupgap": 0.14,
                    "boxgroupgap": 0.3,
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 557,
            "width": 1360,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rayrayhey",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 15:06:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rayrayhey",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:05:41.439193Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~YungGeery/1.embed",
            "fid": "YungGeery:1",
            "filename": "LMH Cupooo",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/YungGeery/1/9_G1E5S0HZ95ZHOO8YY49D72W0JZM6OE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/YungGeery/1/2_QSNL8XB5G2YSVKLG12F1ZOQJAW1JRC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/YungGeery/1/8_E1D9SQ8QOR2LTY39VTR1IZT63TAFC7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/YungGeery/1/9_G1E5S0HZ95ZHOO8YY49D72W0JZM6OE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/YungGeery:1",
                "plots": "https://api.plotly.com/v2/plots/YungGeery:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=YungGeery"
            },
            "owner": "YungGeery",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~YungGeery/1/",
            "world_readable": true,
            "date_modified": "2024-04-18T15:05:41.448Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~YungGeery/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(125, 57, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Timon P."
                            }
                        },
                        "mode": "lines",
                        "name": "Timon P.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:3ec78a",
                        "stackgroup": ""
                    },
                    {
                        "line": {
                            "color": "rgb(125, 57, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Joris T."
                            }
                        },
                        "mode": "lines",
                        "name": "Joris T.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:731269",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(176, 11, 27)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Elke K."
                            }
                        },
                        "mode": "lines",
                        "name": "Elke K.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:fe02ef",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(176, 11, 27)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Andy W."
                            }
                        },
                        "mode": "lines",
                        "name": "Andy W.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:28389b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(243, 96, 25)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Jutta E."
                            }
                        },
                        "mode": "lines",
                        "name": "Jutta E.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:52e2f0",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(243, 96, 25)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Monika C."
                            }
                        },
                        "mode": "lines",
                        "name": "Monika C.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:4cb81c",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(16, 85, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Joy C."
                            }
                        },
                        "mode": "lines",
                        "name": "Joy C.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:956aab",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(16, 85, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Sinan S."
                            }
                        },
                        "mode": "lines",
                        "name": "Sinan S.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:a95cbb",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(90, 118, 187)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Lukas L."
                            }
                        },
                        "mode": "lines",
                        "name": "Lukas L.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:a725e4",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(90, 118, 187)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Oliver W."
                            }
                        },
                        "mode": "lines",
                        "name": "Oliver W.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:7b2bf2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(250, 0, 17)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Sascha L."
                            }
                        },
                        "mode": "lines",
                        "name": "Sascha L.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:f5b900",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(250, 0, 17)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Lucas H."
                            }
                        },
                        "mode": "lines",
                        "name": "Lucas H.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:094b34",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(7, 141, 245)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Micha W."
                            }
                        },
                        "mode": "lines",
                        "name": "Micha W.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:fcf1f3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(7, 141, 245)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Lennart D."
                            }
                        },
                        "mode": "lines",
                        "name": "Lennart D.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:28f156",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(231, 243, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Justin H."
                            }
                        },
                        "mode": "lines",
                        "name": "Justin H.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:748d77",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(231, 243, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Martin H."
                            }
                        },
                        "mode": "lines",
                        "name": "Martin H.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:62195d",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(231, 243, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Christina K."
                            }
                        },
                        "mode": "lines",
                        "name": "Christina K.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:e917b8",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(10, 17, 253)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Annalena R."
                            }
                        },
                        "mode": "lines",
                        "name": "Annalena R.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:fd35e3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(10, 17, 253)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Emilia O."
                            }
                        },
                        "mode": "lines",
                        "name": "Emilia O.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:fb5823",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(18, 159, 3)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Maik F."
                            }
                        },
                        "mode": "lines",
                        "name": "Maik F.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:3b5d85",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(18, 159, 3)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Phil C."
                            }
                        },
                        "mode": "lines",
                        "name": "Phil C.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:eabe75",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(253, 1, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Jannik B."
                            }
                        },
                        "mode": "lines",
                        "name": "Jannik B.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:0e7b30",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(253, 1, 1)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "Ralf C."
                            }
                        },
                        "mode": "lines",
                        "name": "Ralf C.",
                        "type": "scatter",
                        "xsrc": "YungGeery:0:d22dc8",
                        "ysrc": "YungGeery:0:05a9f1",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "LMH Cup 2023"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            29
                        ],
                        "title": {
                            "text": "Circuits"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -19.666666666666668,
                            373.6666666666667
                        ],
                        "title": {
                            "text": "Points"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~YungGeery",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 11:31:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "YungGeery",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:05:28.736391Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rschap/223.embed",
            "fid": "rschap:223",
            "filename": "MOF 2 & 2.2 IR",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rschap/223/9_AMW7SGHETZZF1VYLXCWWGI8QXOC5A7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rschap/223/2_WG5GK9WA4EOXSKO7N4CG7EG4R8S8EG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/223/8_WNSWF70YNO4EARXZ0TESHKSIFBUH5Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/223/9_AMW7SGHETZZF1VYLXCWWGI8QXOC5A7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rschap:223",
                "plots": "https://api.plotly.com/v2/plots/rschap:223",
                "parent": "https://api.plotly.com/v2/folders/home?user=rschap"
            },
            "owner": "rschap",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rschap/223/",
            "world_readable": true,
            "date_modified": "2024-04-18T16:04:33.415Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rschap/223/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 422 By Analyst Date Thursday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 2",
                        "type": "scatter",
                        "xsrc": "rschap:221:7aefcb",
                        "ysrc": "rschap:221:311b79"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 420 By Analyst Date Thursday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 2.2",
                        "type": "scatter",
                        "xsrc": "rschap:222:ebbcc7",
                        "ysrc": "rschap:222:f5f0aa"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 044 By Analyst Date Wednesday"
                            }
                        },
                        "mode": "lines",
                        "name": "CD 5",
                        "type": "scatter",
                        "xsrc": "rschap:146:937ce0",
                        "ysrc": "rschap:146:90d76c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "IR Spectrum Comparison MOF 2 and MOF 2.2"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            4000,
                            650
                        ],
                        "title": {
                            "text": "Wavenumber (cm-1)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            48.536111111111104,
                            102.41388888888889
                        ],
                        "title": {
                            "text": "Transmittance (T%)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rschap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-09-30 16:39:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rschap",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:02:06.510296Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dianamindroc/17.embed",
            "fid": "dianamindroc:17",
            "filename": "test3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/17/9_MONLGWBVEZC38ACAIFETHMSBWJAQV8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/17/2_JS31FOM2V9ARH0E8BCUWO0W34UPGK9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/17/8_5C6LF4M8IVZU2TQTZNQA75FA132XPI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/17/9_MONLGWBVEZC38ACAIFETHMSBWJAQV8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dianamindroc:17",
                "plots": "https://api.plotly.com/v2/plots/dianamindroc:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=dianamindroc"
            },
            "owner": "dianamindroc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://chart-studio.plotly.com/~dianamindroc/17/",
            "world_readable": true,
            "date_modified": "2024-04-18T15:02:06.521Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dianamindroc/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "predicted_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:91dc64",
                        "ysrc": "dianamindroc:16:a8f519",
                        "zsrc": "dianamindroc:16:a234a7",
                        "scene": "scene",
                        "marker": {
                            "size": 2,
                            "color": "darkturquoise",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_pred_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:6618f2",
                        "ysrc": "dianamindroc:16:320e8d",
                        "zsrc": "dianamindroc:16:d800c3",
                        "scene": "scene",
                        "marker": {
                            "size": 7,
                            "color": "yellow",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:1d6102",
                        "textposition": "top center"
                    },
                    {
                        "mode": "markers",
                        "name": "ground truth_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:a94f63",
                        "ysrc": "dianamindroc:16:590572",
                        "zsrc": "dianamindroc:16:b72597",
                        "scene": "scene",
                        "marker": {
                            "size": 2,
                            "color": "red",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_gt_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:7b6b44",
                        "ysrc": "dianamindroc:16:2ff612",
                        "zsrc": "dianamindroc:16:ac89fa",
                        "scene": "scene",
                        "marker": {
                            "size": 7,
                            "color": "green",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:97b85b",
                        "textposition": "top center"
                    },
                    {
                        "mode": "markers",
                        "name": "input_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:9c6bb5",
                        "ysrc": "dianamindroc:16:1c10c1",
                        "zsrc": "dianamindroc:16:9d2c69",
                        "scene": "scene",
                        "marker": {
                            "size": 2,
                            "color": "white",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_input_0",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:90df5b",
                        "ysrc": "dianamindroc:16:f15791",
                        "zsrc": "dianamindroc:16:52ef04",
                        "scene": "scene",
                        "marker": {
                            "size": 7,
                            "color": "white",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:4b8c21",
                        "textposition": "top center"
                    },
                    {
                        "mode": "markers",
                        "name": "predicted_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:0858e4",
                        "ysrc": "dianamindroc:16:5398dc",
                        "zsrc": "dianamindroc:16:0b61a9",
                        "scene": "scene2",
                        "marker": {
                            "size": 2,
                            "color": "darkturquoise",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_pred_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:7cba5b",
                        "ysrc": "dianamindroc:16:572b30",
                        "zsrc": "dianamindroc:16:c3fc96",
                        "scene": "scene2",
                        "marker": {
                            "size": 7,
                            "color": "yellow",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:6efdb8",
                        "textposition": "top center"
                    },
                    {
                        "mode": "markers",
                        "name": "ground truth_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:22b720",
                        "ysrc": "dianamindroc:16:d00828",
                        "zsrc": "dianamindroc:16:b9bf99",
                        "scene": "scene2",
                        "marker": {
                            "size": 2,
                            "color": "red",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_gt_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:939fe7",
                        "ysrc": "dianamindroc:16:426aa4",
                        "zsrc": "dianamindroc:16:8df11a",
                        "scene": "scene2",
                        "marker": {
                            "size": 7,
                            "color": "green",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:b21797",
                        "textposition": "top center"
                    },
                    {
                        "mode": "markers",
                        "name": "input_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:8724fc",
                        "ysrc": "dianamindroc:16:207a81",
                        "zsrc": "dianamindroc:16:5f0f82",
                        "scene": "scene2",
                        "marker": {
                            "size": 2,
                            "color": "white",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers+text",
                        "name": "Center of Mass_input_1",
                        "type": "scatter3d",
                        "xsrc": "dianamindroc:16:3c6ffe",
                        "ysrc": "dianamindroc:16:6e55c4",
                        "zsrc": "dianamindroc:16:1073d6",
                        "scene": "scene2",
                        "marker": {
                            "size": 7,
                            "color": "white",
                            "symbol": "diamond",
                            "opacity": 0.7
                        },
                        "textsrc": "dianamindroc:16:f39816",
                        "textposition": "top center"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "yaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "zaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "domain": {
                            "x": [
                                0.0,
                                0.49
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "scene2": {
                        "xaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "yaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "zaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "domain": {
                            "x": [
                                0.51,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "scene3": {
                        "xaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "yaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        },
                        "zaxis": {
                            "title": {
                                "font": {
                                    "size": 4
                                }
                            },
                            "showticklabels": false
                        }
                    },
                    "template": {
                        "data": {
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "color": "gray"
                                    }
                                }
                            ]
                        },
                        "layout": {
                            "font": {
                                "size": 16,
                                "color": "#FFFFFF",
                                "family": "Helvetica Neue, Helvetica, Sans-serif"
                            },
                            "title": {
                                "font": {
                                    "size": 30,
                                    "color": "#FFFFFF",
                                    "family": "HelveticaNeue-CondensedBold, Helvetica, Sans-serif"
                                }
                            },
                            "colorway": [
                                "#ec7424",
                                "#a4abab"
                            ],
                            "hovermode": "closest",
                            "plot_bgcolor": "#000000",
                            "paper_bgcolor": "#000000"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dianamindroc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-03-11 09:16:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dianamindroc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T15:01:43.601499Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rschap/220.embed",
            "fid": "rschap:220",
            "filename": "MOF 1 & 1.2 IR",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rschap/220/9_ETPPZ4W6ZM8M31509ENAM0Y731PQ6L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rschap/220/2_AJR3HQKSKYS5BWRKLCAHU1DWCON4O3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/220/8_VQHWR3FB4OJ5NHQTNNU9WEBJ981N7S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rschap/220/9_ETPPZ4W6ZM8M31509ENAM0Y731PQ6L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rschap:220",
                "plots": "https://api.plotly.com/v2/plots/rschap:220",
                "parent": "https://api.plotly.com/v2/folders/home?user=rschap"
            },
            "owner": "rschap",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rschap/220/",
            "world_readable": true,
            "date_modified": "2024-04-18T16:03:17.693Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rschap/220/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 064 By Analyst Date Wednesday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 1",
                        "type": "scatter",
                        "xsrc": "rschap:218:f93f3e",
                        "ysrc": "rschap:218:fd495f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 419 By Analyst Date Thursday"
                            }
                        },
                        "mode": "lines",
                        "name": "MOF 1.2",
                        "type": "scatter",
                        "xsrc": "rschap:219:be7a20",
                        "ysrc": "rschap:219:d263a3",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Created as New Dataset",
                                "y": "Sample 044 By Analyst Date Wednesday"
                            }
                        },
                        "mode": "lines",
                        "name": "CD 5",
                        "type": "scatter",
                        "xsrc": "rschap:146:937ce0",
                        "ysrc": "rschap:146:90d76c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "IR Spectrum Comparison MOF 1 and MOF 1.2"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            4000,
                            650
                        ],
                        "title": {
                            "text": "Wavenumber (cm-1)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            48.52055555555555,
                            102.70944444444444
                        ],
                        "title": {
                            "text": "Transmittance (T%)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rschap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-09-30 16:39:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rschap",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T14:41:33.269964Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScretXgh/1.embed",
            "fid": "ScretXgh:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScretXgh/1/9_Q4WJ3D9WR44I8C4XH0MTO275IXNRVW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScretXgh/1/2_MAT8K62OUEX6MMEE3FYB1ZO221ARP6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScretXgh/1/8_GITYG95KTTS22WTMFCKGNCBF2XLE1F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScretXgh/1/9_Q4WJ3D9WR44I8C4XH0MTO275IXNRVW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScretXgh:1",
                "plots": "https://api.plotly.com/v2/plots/ScretXgh:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScretXgh"
            },
            "owner": "ScretXgh",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ScretXgh/1/",
            "world_readable": true,
            "date_modified": "2024-04-18T14:41:33.282Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScretXgh/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ScretXgh:0:cf6a53",
                        "ysrc": "ScretXgh:0:1b6719"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ScretXgh:0:cf6a53",
                        "ysrc": "ScretXgh:0:1b6719"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            3.39960594662368,
                            316.6003940533763
                        ],
                        "title": {
                            "text": "Station"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            34.51096185286103,
                            35.252038147138975
                        ],
                        "title": {
                            "text": "Elevation"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScretXgh",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/63.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 14:41:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScretXgh",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-18T14:29:49.559680Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tlacroix/173.embed",
            "fid": "tlacroix:173",
            "filename": "Plot 173",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tlacroix/173/9_1EJ07AFSS3408BJ8TBDYEPELBONUYL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tlacroix/173/2_76EZDG4S7MBXQU6XKLNT2NQG9Y1IVB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/173/8_D0OOPL6Z9PTJYY5DH1RDLGBM22LL0O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/173/9_1EJ07AFSS3408BJ8TBDYEPELBONUYL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tlacroix:173",
                "plots": "https://api.plotly.com/v2/plots/tlacroix:173",
                "parent": "https://api.plotly.com/v2/folders/home?user=tlacroix"
            },
            "owner": "tlacroix",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tlacroix/173/",
            "world_readable": true,
            "date_modified": "2024-04-18T18:53:16.536Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tlacroix/173/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "trace 0",
                        "type": "scatter",
                        "xsrc": "tlacroix:172:07d8d4",
                        "ysrc": "tlacroix:172:a788ce",
                        "visible": true,
                        "groupnorm": "fraction",
                        "stackgaps": "infer zero",
                        "stackgroup": 1,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "tlacroix:172:07d8d4",
                        "ysrc": "tlacroix:172:4bcc03",
                        "visible": true,
                        "stackgroup": 1,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "tlacroix:172:07d8d4",
                        "ysrc": "tlacroix:172:9c8f8a",
                        "visible": true,
                        "stackgroup": 1,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "tlacroix:172:07d8d4",
                        "ysrc": "tlacroix:172:5a36ae",
                        "visible": true,
                        "stackgroup": 1,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            4
                        ],
                        "autorange": false,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1.0526315789473684
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tlacroix",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-29 15:30:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tlacroix",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}