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

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA4LTE1KzEzJTNBMDYlM0EwMy4zNjY0MzYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOC0xNSsxOCUzQTAyJTNBMDcuOTY2NTAxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-15T18:02:07.966501Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fatimashehzad/3.embed",
            "fid": "fatimashehzad:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/3/9_37RUF96EYF6E2K84VXLK08CHO3ABE2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/3/2_DX0ZABDIV1UMGDQ49HJEBQ35QTII8Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/3/8_6WSX3WH9QNF4AVLYSV8SMNW02XOPJW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/3/9_37RUF96EYF6E2K84VXLK08CHO3ABE2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fatimashehzad:3",
                "plots": "https://api.plotly.com/v2/plots/fatimashehzad:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=fatimashehzad"
            },
            "owner": "fatimashehzad",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~fatimashehzad/3/",
            "world_readable": true,
            "date_modified": "2025-08-15T18:02:07.978Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fatimashehzad/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "fatimashehzad:2:fff043",
                        "ysrc": "fatimashehzad:2:54e8df",
                        "zsrc": "fatimashehzad:2:8eb9f6",
                        "marker": {
                            "color": "rgb(218, 126, 41)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "No. of Reeds"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "Final Mass (g)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "Final Vol (cm<sup>3</sup>)"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.3117228261558502,
                                "y": 1.3117228261558505,
                                "z": 1.3117228261558505
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.4434389140271493,
                            10.55656108597285
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            21.247086247086248,
                            94.35291375291375
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#020419"
                            ],
                            [
                                0.0625,
                                "#180f29"
                            ],
                            [
                                0.125,
                                "#2f1739"
                            ],
                            [
                                0.1875,
                                "#471c48"
                            ],
                            [
                                0.25,
                                "#611e52"
                            ],
                            [
                                0.3125,
                                "#7b1e59"
                            ],
                            [
                                0.375,
                                "#961b5b"
                            ],
                            [
                                0.4375,
                                "#b11658"
                            ],
                            [
                                0.5,
                                "#cb1a4f"
                            ],
                            [
                                0.5625,
                                "#df2f43"
                            ],
                            [
                                0.625,
                                "#ec4c3d"
                            ],
                            [
                                0.6875,
                                "#f26b49"
                            ],
                            [
                                0.75,
                                "#f4875f"
                            ],
                            [
                                0.8125,
                                "#f5a27a"
                            ],
                            [
                                0.875,
                                "#f6bc99"
                            ],
                            [
                                0.9375,
                                "#f7d4bb"
                            ],
                            [
                                1,
                                "#faeadc"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fatimashehzad",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.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": "2025-08-15 17:25:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fatimashehzad",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T17:57:50.290993Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ksy2165/1.embed",
            "fid": "Ksy2165:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Ksy2165/1/9_VAAFRW6ADXC19UEM11ECX7VLSWXGNU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Ksy2165/1/2_NBK3Y9TN3P7729IEPWOI32WV9OZ37Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ksy2165/1/8_0BQ9IXIJWQLTHB413IKZTDZH7CT9OW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Ksy2165/1/9_VAAFRW6ADXC19UEM11ECX7VLSWXGNU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ksy2165:1",
                "plots": "https://api.plotly.com/v2/plots/Ksy2165:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ksy2165"
            },
            "owner": "Ksy2165",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Ksy2165/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T17:57:50.303Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ksy2165/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Chinese Name",
                                "y": "Frequency"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Ksy2165:0:f05de9",
                        "ysrc": "Ksy2165:0:a03620",
                        "marker": {
                            "color": "rgb(126, 130, 130)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "text": "Table 1: Herb Frequency"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            80.5
                        ],
                        "title": {
                            "font": {
                                "family": "Times New Roman"
                            },
                            "text": "Herb"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            11.578947368421053
                        ],
                        "title": {
                            "font": {
                                "family": "Times New Roman"
                            },
                            "text": "Ksy2165"
                        },
                        "autorange": true
                    },
                    "modebar": {
                        "activecolor": "rgba(96, 92, 92, 0.7)"
                    },
                    "autosize": true,
                    "colorway": [
                        "#1b9e77",
                        "#d95f02",
                        "#7570b3",
                        "#e7298a",
                        "#66a61e",
                        "#e6ab02",
                        "#a6761d",
                        "#666666"
                    ],
                    "dragmode": "lasso",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#a50026"
                            ],
                            [
                                0.1,
                                "#d73027"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee090"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e0f3f8"
                            ],
                            [
                                0.7,
                                "#abd9e9"
                            ],
                            [
                                0.8,
                                "#74add1"
                            ],
                            [
                                0.9,
                                "#4575b4"
                            ],
                            [
                                1,
                                "#313695"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#ffffff"
                            ],
                            [
                                0.125,
                                "#f0f0f0"
                            ],
                            [
                                0.25,
                                "#d9d9d9"
                            ],
                            [
                                0.375,
                                "#bdbdbd"
                            ],
                            [
                                0.5,
                                "#969696"
                            ],
                            [
                                0.625,
                                "#737373"
                            ],
                            [
                                0.75,
                                "#525252"
                            ],
                            [
                                0.875,
                                "#252525"
                            ],
                            [
                                1,
                                "#000000"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#000004"
                            ],
                            [
                                0.1111111111111111,
                                "#1b0c41"
                            ],
                            [
                                0.2222222222222222,
                                "#4a0c6b"
                            ],
                            [
                                0.3333333333333333,
                                "#781c6d"
                            ],
                            [
                                0.4444444444444444,
                                "#a52c60"
                            ],
                            [
                                0.5555555555555556,
                                "#cf4446"
                            ],
                            [
                                0.6666666666666666,
                                "#ed6925"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9b06"
                            ],
                            [
                                0.8888888888888888,
                                "#f7d13d"
                            ],
                            [
                                1,
                                "#fcffa4"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ksy2165",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-15 17:36:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ksy2165",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T17:40:30.710056Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fatimashehzad/1.embed",
            "fid": "fatimashehzad:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/1/9_OEZC6FX48V13QIQQF55ZRMPQGLF0IN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/1/2_5GN9OLHXCQJ73NVFK5HJLRFH3RJY05.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/1/8_8RAUL2V12YDRSY5ISPNCCZEK3LJX5D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fatimashehzad/1/9_OEZC6FX48V13QIQQF55ZRMPQGLF0IN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fatimashehzad:1",
                "plots": "https://api.plotly.com/v2/plots/fatimashehzad:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=fatimashehzad"
            },
            "owner": "fatimashehzad",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~fatimashehzad/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T17:40:30.722Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fatimashehzad/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "fatimashehzad:0:721dea",
                        "ysrc": "fatimashehzad:0:300dcd",
                        "zsrc": "fatimashehzad:0:11ed8e",
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "color"
                                }
                            },
                            "colorsrc": "fatimashehzad:0:eb3b23",
                            "fillcolor": "rgba(31,119,180,1)",
                            "showscale": true,
                            "colorscale": [
                                "#FFE1A1",
                                "#683531"
                            ]
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "Number of Reeds"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "Final Mass (g)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 11
                                },
                                "text": "Final Vol (cm<sup>3</sup>)"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": -0.2485245858707724,
                                "y": 0.9343991273273639,
                                "z": 0.25521324626206593
                            },
                            "eye": {
                                "x": 2.678072621163728,
                                "y": 1.017811544338806,
                                "z": -1.118575676962265
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "yaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "annotations": [
                        {
                            "x": 1.13,
                            "y": 1.05,
                            "text": "Miles/(US) gallon",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fatimashehzad",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.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": "2025-08-15 17:25:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fatimashehzad",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T16:50:47.199075Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cleaaum/3.embed",
            "fid": "cleaaum:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cleaaum/3/9_3WNC157NA778IQZBJ96T94FX1TUYC2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cleaaum/3/2_ODZCOF8NQY16LAVN8FM37TZJCPZLO8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/3/8_8PS051G6TB2B0UDF3XWCRTDBC1IHUJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/3/9_3WNC157NA778IQZBJ96T94FX1TUYC2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cleaaum:3",
                "plots": "https://api.plotly.com/v2/plots/cleaaum:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=cleaaum"
            },
            "owner": "cleaaum",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cleaaum/3/",
            "world_readable": true,
            "date_modified": "2025-08-15T16:51:14.612Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cleaaum/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e52fff",
                        "meta": {
                            "columnNames": {
                                "x": "waiting, x; waiting (1), x",
                                "y": "waiting, y; waiting (1), y"
                            }
                        },
                        "name": "waiting",
                        "type": "histogram2dcontour",
                        "xsrc": "cleaaum:2:ff3db6",
                        "ysrc": "cleaaum:2:7dae9a",
                        "zmax": 66,
                        "zmin": 0,
                        "xbins": {
                            "end": 7,
                            "size": 1,
                            "start": 0
                        },
                        "ybins": {
                            "end": 109.5,
                            "size": 10,
                            "start": 29.5
                        },
                        "colorbar": {
                            "title": {
                                "text": ""
                            }
                        },
                        "contours": {
                            "end": 65.05,
                            "size": 5,
                            "start": 5,
                            "coloring": "fill",
                            "showlines": true
                        },
                        "colorscale": [
                            [
                                0,
                                "rgb(240,249,232)"
                            ],
                            [
                                0.25,
                                "rgb(186,228,188)"
                            ],
                            [
                                0.5,
                                "rgb(123,204,196)"
                            ],
                            [
                                0.75,
                                "rgb(67,162,202)"
                            ],
                            [
                                1,
                                "rgb(8,104,172)"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Old Faithful Geyser"
                    },
                    "width": 1532,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.5,
                            6.5
                        ],
                        "ticks": "",
                        "title": {
                            "text": "eruption size"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            34.5,
                            104.5
                        ],
                        "ticks": "",
                        "title": {
                            "text": "waiting time"
                        },
                        "autorange": true
                    },
                    "height": 1006,
                    "margin": {
                        "b": 80,
                        "t": 80
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": true,
                    "paper_bgcolor": "rgba(236, 249, 226, 1)"
                }
            },
            "height": 1006,
            "width": 1532,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cleaaum",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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": "2025-08-15 15:16:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cleaaum",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T15:18:22.670808Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cleaaum/1.embed",
            "fid": "cleaaum:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cleaaum/1/9_WJOOTGY2U1322IS0P7FLKPPICKRSZ1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cleaaum/1/2_VKL76LQCDH46EV71W8OF60LD9P03RY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/1/8_L7XELAGVX3CWAC7ADJ0WMVD2XO3XN4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/1/9_WJOOTGY2U1322IS0P7FLKPPICKRSZ1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cleaaum:1",
                "plots": "https://api.plotly.com/v2/plots/cleaaum:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cleaaum"
            },
            "owner": "cleaaum",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cleaaum/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T16:51:17.147Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cleaaum/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "x - y - z[0] - z[4] - z[10]"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "cleaaum:0:dcc2a2",
                        "ysrc": "cleaaum:0:a5673b",
                        "zsrc": "cleaaum:0:dcc2a2,a5673b,13be12,318eb1,65e96e",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#8B0000"
                            ],
                            [
                                0.06666666666666667,
                                "#9E051B"
                            ],
                            [
                                0.13333333333333333,
                                "#B0122C"
                            ],
                            [
                                0.2,
                                "#C0223B"
                            ],
                            [
                                0.26666666666666666,
                                "#CF3447"
                            ],
                            [
                                0.3333333333333333,
                                "#DB4551"
                            ],
                            [
                                0.4,
                                "#E75758"
                            ],
                            [
                                0.4666666666666667,
                                "#F06A5E"
                            ],
                            [
                                0.5333333333333333,
                                "#F87D64"
                            ],
                            [
                                0.6,
                                "#FE906A"
                            ],
                            [
                                0.6666666666666666,
                                "#FFA474"
                            ],
                            [
                                0.7333333333333333,
                                "#FFB880"
                            ],
                            [
                                0.8,
                                "#FFCB91"
                            ],
                            [
                                0.8666666666666667,
                                "#FFDEA7"
                            ],
                            [
                                0.9333333333333333,
                                "#FFEEC1"
                            ],
                            [
                                1,
                                "#FFFFE0"
                            ]
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "rgb(68,68,68)",
                        "family": "Balto, sans-serif"
                    },
                    "title": [
                        "A scoreboard for republican candidates as of August 17, 2015 <br> Annotated heatmap"
                    ],
                    "width": 900,
                    "xaxis": {
                        "side": "top",
                        "type": "category",
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "title": {
                            "text": ""
                        },
                        "showgrid": true,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            4.5,
                            -0.5
                        ],
                        "title": {
                            "text": ""
                        },
                        "showgrid": true,
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "height": 450,
                    "margin": {
                        "b": 85,
                        "l": 135,
                        "r": 40,
                        "t": 170
                    },
                    "autosize": false,
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0,
                            "y": -0.1,
                            "font": {
                                "size": 11
                            },
                            "text": "Data source:<a href='http://www.nytimes.com/interactive/2015/08/06/upshot/2016-republican-presidential-candidates-dashboard.html'> [1]</a>",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": "Bush",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "1",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Rubio",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "2",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Walker",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "3",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Trump",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "4",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Kasich",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Cruz",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "6",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Huckabee",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Fiorina",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Paul",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "9",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Carson",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "9",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Christie",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "11",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Santorum",
                            "y": "Prediction Market",
                            "font": {
                                "color": "white"
                            },
                            "text": "11",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Perry",
                            "y": "Prediction Market",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jindal",
                            "y": "Prediction Market",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Graham",
                            "y": "Prediction Market",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Pataki",
                            "y": "Prediction Market",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Bush",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "1",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Rubio",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Walker",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Trump",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Kasich",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Cruz",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "4",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Huckabee",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Fiorina",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Paul",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "2",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Carson",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Christie",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "3",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Santorum",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Perry",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jindal",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Graham",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Pataki",
                            "y": "NationalEndorsements",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Bush",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "4",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Rubio",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Walker",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "2",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Trump",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "1",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Kasich",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "10",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Cruz",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Huckabee",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Fiorina",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "6",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Paul",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "9",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Carson",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "3",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Christie",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Santorum",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "14",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Perry",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jindal",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "11",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Graham",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "15",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Pataki",
                            "y": "Iowa Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "16",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Bush",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "2",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Rubio",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "9",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Walker",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "4",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Trump",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "1",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Kasich",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "3",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Cruz",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "8",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Huckabee",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "11",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Fiorina",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "10",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Paul",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "6",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Carson",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "6",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Christie",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Santorum",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "14",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Perry",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "14",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jindal",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Graham",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "14",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Pataki",
                            "y": "New Hampshire Polls",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Bush",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "1",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Rubio",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "3",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Walker",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "4",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Trump",
                            "y": "Money Raised",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "14",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Kasich",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "8",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Cruz",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "2",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Huckabee",
                            "y": "Money Raised",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "12",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Fiorina",
                            "y": "Money Raised",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "13",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Paul",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "7",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Carson",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "9",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Christie",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "6",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Santorum",
                            "y": "Money Raised",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "16",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Perry",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Jindal",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "10",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Graham",
                            "y": "Money Raised",
                            "font": {
                                "color": "white"
                            },
                            "text": "11",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": "Pataki",
                            "y": "Money Raised",
                            "font": {
                                "color": "rgb(150,150,150)"
                            },
                            "text": "15",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 450,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cleaaum",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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": "2025-08-15 15:16:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cleaaum",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T15:11:22.760301Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Zeon/1.embed",
            "fid": "Zeon:1",
            "filename": "WIP",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Zeon/1/9_SEECZFW566A94AW63UANJD01CJPLMH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Zeon/1/2_4KVSQZ9S91TUJUMZGYSBAWRRKPSOZ5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Zeon/1/8_WM7OO1HMUIK8C15KSWU4802E202A6H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Zeon/1/9_SEECZFW566A94AW63UANJD01CJPLMH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Zeon:1",
                "plots": "https://api.plotly.com/v2/plots/Zeon:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Zeon"
            },
            "owner": "Zeon",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Zeon/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T15:37:16.850Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Zeon/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C",
                                "text": "D",
                                "marker": {
                                    "size": "D",
                                    "color": "D"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "type": "scatter3d",
                        "xsrc": "Zeon:0:2ad3ea",
                        "ysrc": "Zeon:0:7aee2e",
                        "zsrc": "Zeon:0:056ab8",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "D",
                                    "color": "D"
                                }
                            },
                            "size": 11,
                            "cauto": true,
                            "opacity": 1,
                            "sizeref": 0.0015555555555555555,
                            "colorbar": {
                                "x": 0.6882217090069285,
                                "y": 0.5263736263736263,
                                "len": 1,
                                "ticks": "inside",
                                "title": {
                                    "font": {
                                        "size": 13
                                    },
                                    "side": "right",
                                    "text": "Total Conductive Carbon (wt.%)"
                                },
                                "nticks": 0,
                                "lenmode": "fraction",
                                "xanchor": "left",
                                "tickangle": "auto",
                                "tickcolor": "rgb(210, 210, 210)",
                                "outlinewidth": 0,
                                "thicknessmode": "pixels"
                            },
                            "colorsrc": "Zeon:0:19d409",
                            "sizemode": "area",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#f7fcf0"
                                ],
                                [
                                    0.125,
                                    "#e0f3db"
                                ],
                                [
                                    0.25,
                                    "#ccebc5"
                                ],
                                [
                                    0.375,
                                    "#a8ddb5"
                                ],
                                [
                                    0.5,
                                    "#7bccc4"
                                ],
                                [
                                    0.625,
                                    "#4eb3d3"
                                ],
                                [
                                    0.75,
                                    "#2b8cbe"
                                ],
                                [
                                    0.875,
                                    "#0868ac"
                                ],
                                [
                                    1,
                                    "#084081"
                                ]
                            ],
                            "reversescale": false
                        },
                        "opacity": 1,
                        "textsrc": "Zeon:0:19d409",
                        "hoverinfo": "x+y+z",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "hovertemplate": "",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "ticks": "inside",
                            "title": {
                                "text": "SuperP (wt.%)"
                            },
                            "mirror": false,
                            "showgrid": true,
                            "showline": true,
                            "linecolor": "rgb(135, 154, 184)",
                            "linewidth": 1,
                            "tickwidth": 4,
                            "showspikes": true,
                            "showbackground": true,
                            "spikethickness": 2
                        },
                        "yaxis": {
                            "type": "linear",
                            "ticks": "inside",
                            "title": {
                                "text": "Graphite (wt.%)"
                            },
                            "tickwidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "ticks": "inside",
                            "title": {
                                "text": "SWCNT (wt.%)"
                            },
                            "tickwidth": 4
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.226902342645745,
                                "y": 1.7828149664567947,
                                "z": 0.06149338979144603
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -0.10007698229407236,
                            0.19091608929946102
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.608670657738972,
                        "y": 1.1512596479396173,
                        "title": {
                            "text": "<br>"
                        },
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "traceorder": "normal",
                        "bordercolor": "rgb(0, 0, 0)",
                        "orientation": "v"
                    },
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Zeon",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-14 19:55:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Zeon",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T14:52:17.863495Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~spinner/1.embed",
            "fid": "spinner:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/spinner/1/9_3UVZS3PLLEADLVMNEL930ITLAJWVKB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/spinner/1/2_5E94P9QHXU06IY3TGWYH9NL0JU0NLY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/spinner/1/8_0SR3HYW6LI3ZYAJIYCIA6DRCTJFIR7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/spinner/1/9_3UVZS3PLLEADLVMNEL930ITLAJWVKB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/spinner:1",
                "plots": "https://api.plotly.com/v2/plots/spinner:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=spinner"
            },
            "owner": "spinner",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~spinner/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T14:52:17.875Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~spinner/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "472201",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "name": "Mean absorbance",
                        "type": "scatter",
                        "xsrc": "spinner:0:074fb5",
                        "ysrc": "spinner:0:d5c570",
                        "marker": {
                            "size": 6
                        },
                        "error_x": {
                            "type": "constant",
                            "value": 0.5,
                            "visible": true,
                            "symmetric": true,
                            "thickness": 1
                        },
                        "error_y": {
                            "type": "constant",
                            "value": 0.01,
                            "visible": true,
                            "symmetric": true
                        },
                        "visible": true
                    },
                    {
                        "uid": "b29339",
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "M"
                            }
                        },
                        "mode": "markers",
                        "name": "Blank mean absorbance",
                        "type": "scatter",
                        "xsrc": "spinner:0:d82996",
                        "ysrc": "spinner:0:543f6d",
                        "error_x": {
                            "type": "constant",
                            "value": 0.5,
                            "visible": true,
                            "symmetric": true,
                            "thickness": 1
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "uid": "16fafd",
                        "transforms": [
                            {
                                "rms": 72.20522302641474,
                                "type": "fit",
                                "xmid": 7.0000000000000036,
                                "ymid": 105.87990230310243,
                                "inputUid": "472201",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "a",
                                        "error": 1.6481281899824054,
                                        "value": 3.464285714284686
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 23.40109887530982,
                                        "value": -42.79999999998543
                                    },
                                    {
                                        "hold": false,
                                        "name": "c",
                                        "error": 73.71021860323705,
                                        "value": 209.33571428567092
                                    }
                                ],
                                "regressand": "y",
                                "correlation": -0.5031583130646574,
                                "fitfunction": "a*x^2 + b*x + c",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "Processed data table: Mean absorbance of anthocyanins extract mixed with each pH level and blank."
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2,
                            12
                        ],
                        "title": {
                            "text": "pH level (±&nbsp;0.5)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "range": [
                            51.321298190717464,
                            163.31391663657107
                        ],
                        "title": {
                            "text": "Absorbance (A,  ±0.01A)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~spinner",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.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": "2025-08-15 14:50:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "spinner",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T14:27:19.824293Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marialipg14/3.embed",
            "fid": "marialipg14:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marialipg14/3/9_XR1BOUVVLKO51NOUJWY7V1MKUIJANV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marialipg14/3/2_W43NXZWX68H8G4JQ232G5YU9EPFDGB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marialipg14/3/8_A37MFTRX6X4X5I9I5DGQZCEJTZ74SB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marialipg14/3/9_XR1BOUVVLKO51NOUJWY7V1MKUIJANV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marialipg14:3",
                "plots": "https://api.plotly.com/v2/plots/marialipg14:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=marialipg14"
            },
            "owner": "marialipg14",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~marialipg14/3/",
            "world_readable": true,
            "date_modified": "2025-08-15T14:27:19.835Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marialipg14/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<i>Saccharomyces cerevisiae</i>",
                        "type": "scatter",
                        "xsrc": "marialipg14:0:912ebb",
                        "ysrc": "marialipg14:0:7debc4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<i>Pichia kudriavzevii</i>",
                        "type": "scatter",
                        "xsrc": "marialipg14:2:a0c664",
                        "ysrc": "marialipg14:2:6d9248",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 24,
                        "range": [
                            -7.7215189873417724,
                            127.72151898734177
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "family": "Open Sans"
                            },
                            "text": "<b>Tiempo de fermentación (h)</b>"
                        },
                        "ticklen": 6,
                        "tickfont": {
                            "family": "Open Sans"
                        },
                        "tickmode": "linear",
                        "autorange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                0,
                                120
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "spikethickness": 4
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 40,
                        "range": [
                            -4.31121412803532,
                            47.241214128035324
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "family": "Open Sans"
                            },
                            "text": "<b>% de lecturas</b>"
                        },
                        "nticks": 6,
                        "tickfont": {
                            "family": "Open Sans"
                        },
                        "tickmode": "auto",
                        "autorange": true,
                        "tickwidth": 1,
                        "automargin": false,
                        "ticksuffix": "%",
                        "exponentformat": "none",
                        "showticklabels": true,
                        "showticksuffix": "none"
                    },
                    "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/~marialipg14",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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": "2025-08-15 03:45:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marialipg14",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T14:09:07.087597Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JanaG/116.embed",
            "fid": "JanaG:116",
            "filename": "217plot2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JanaG/116/9_0U70XIVCPP90KY5HOZU6IYP1UL0ST7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JanaG/116/2_EM58XAPOO15NZC9QCUE7A8VLWTZCRX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JanaG/116/8_0YGTE5LE0V7WSNYVLS020606CVNMG5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JanaG/116/9_0U70XIVCPP90KY5HOZU6IYP1UL0ST7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JanaG:116",
                "plots": "https://api.plotly.com/v2/plots/JanaG:116",
                "parent": "https://api.plotly.com/v2/folders/home?user=JanaG"
            },
            "owner": "JanaG",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JanaG/116/",
            "world_readable": true,
            "date_modified": "2025-09-09T14:11:22.344Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JanaG/116/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "47800b",
                        "meta": {
                            "columnNames": {
                                "x": "inQuot",
                                "y": "ext217blut",
                                "marker": {
                                    "size": "ext217blut"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "JanaG:115:775f09",
                        "ysrc": "JanaG:115:00805d",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "ext217blut"
                                }
                            },
                            "size": 12,
                            "sizeref": 0.0049382716049382715,
                            "sizemode": "area"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "9a5b6d",
                        "showlegend": false,
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "47800b",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 2.782455067130217,
                                        "value": 11.446662430043329
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.14011203739204928,
                                        "value": 0.08001877054279137
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.13
                        ],
                        "title": {
                            "text": "Interner Quotient"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.05718162562880591,
                            2.107181625628806
                        ],
                        "title": {
                            "text": "pTau217"
                        },
                        "autorange": true
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.13,
                            "y0": 0.185,
                            "y1": 2.1,
                            "line": {
                                "color": "#444444"
                            },
                            "opacity": 0.3,
                            "fillcolor": "rgb(222, 19, 19)"
                        },
                        {
                            "x0": 0.023,
                            "x1": 0.13,
                            "y0": 0,
                            "y1": 2.1,
                            "line": {
                                "color": "#444444"
                            },
                            "opacity": 0.3,
                            "fillcolor": "rgb(47, 163, 148)"
                        }
                    ],
                    "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/~JanaG",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-29 09:29:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JanaG",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-15T13:06:03.366436Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hien231224/1.embed",
            "fid": "hien231224:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hien231224/1/9_OQ7N900OEA7K667UXTVS2LWHADO8AT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hien231224/1/2_9CK7NI90DUS8VGTPMDID83UEA8FRFO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hien231224/1/8_JXTNT8V5E449VNVL19VMNSRQPWTI86.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hien231224/1/9_OQ7N900OEA7K667UXTVS2LWHADO8AT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hien231224:1",
                "plots": "https://api.plotly.com/v2/plots/hien231224:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=hien231224"
            },
            "owner": "hien231224",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hien231224/1/",
            "world_readable": true,
            "date_modified": "2025-08-15T13:06:03.381Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hien231224/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "hien231224:0:de12fd",
                        "ysrc": "hien231224:0:e9aaaa",
                        "marker": {
                            "color": "rgb(125, 121, 109)"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "hien231224:0:33c3fa",
                            "symmetric": true
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -2.183823529411765,
                            38.18382352941177
                        ],
                        "title": {
                            "text": "Thời gian"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.11299944444444443,
                            2.3950905555555555
                        ],
                        "title": {
                            "text": "Abs600nm"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "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"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hien231224",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-15 12:29:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hien231224",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}