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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA2LTI3KzA1JTNBMzIlM0EzNy45MTE2NTglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0yNyswOSUzQTIxJTNBMjIuNDU5NDg4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-27T09:21:22.459488Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Astha19/36.embed",
            "fid": "Astha19:36",
            "filename": "sda_sdf_temp",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Astha19/36/9_RDO0JDIG0AWT0VRZXZA8UC9KSY6BRM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Astha19/36/2_WYVT6PCMZXF9TSH1VYLH2FO3WRBAY1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Astha19/36/8_8XER0EATK721VXEQC9C8OGE61N5GZG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Astha19/36/9_RDO0JDIG0AWT0VRZXZA8UC9KSY6BRM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Astha19:36",
                "plots": "https://api.plotly.com/v2/plots/Astha19:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=Astha19"
            },
            "owner": "Astha19",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 34,
            "web_url": "https://chart-studio.plotly.com/~Astha19/36/",
            "world_readable": true,
            "date_modified": "2025-06-27T09:21:22.468Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Astha19/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sda_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:fa2335",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sdb_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:5fe0cb",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sdc_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:26b95d",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sdd_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:eea64d",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sde_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:13b6c6",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "testtype - timestamp",
                                "y": "sdf_temp"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "Astha19:35:578e3c,4648a8*",
                        "ysrc": "Astha19:35:c818f4",
                        "yaxis": "y2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Temperature vs Time"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            0,
                            1377
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            27,
                            45
                        ],
                        "title": {
                            "text": "temperature"
                        },
                        "domain": [
                            0,
                            0.48
                        ],
                        "autorange": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            28,
                            45
                        ],
                        "title": {
                            "text": "temperature"
                        },
                        "domain": [
                            0.53,
                            1
                        ],
                        "autorange": false,
                        "overlaying": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Astha19",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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-06-25 10:39:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Astha19",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T08:46:26.847275Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sanazafsharian/21.embed",
            "fid": "sanazafsharian:21",
            "filename": "Bulge test full",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/21/9_BCKSAHC7FBXI2FU07JDO3NVNP7UEC7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/21/2_DNS6C19JQ3PEI9KNMEDU3N6QKYV6UC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/21/8_0FY3WYYHKE6RWAPIUA54ZO2X4ELUJT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/21/9_BCKSAHC7FBXI2FU07JDO3NVNP7UEC7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sanazafsharian:21",
                "plots": "https://api.plotly.com/v2/plots/sanazafsharian:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=sanazafsharian"
            },
            "owner": "sanazafsharian",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sanazafsharian/21/",
            "world_readable": true,
            "date_modified": "2025-06-27T10:17:31.791Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sanazafsharian/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "MD_strain (MD)",
                                "text": "MD_strain (MD)",
                                "error_y": {
                                    "array": "error 1"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "<b>Uncoated paperboard - MD strain&nbsp;</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:20:9c4404",
                        "ysrc": "sanazafsharian:20:4c1abc",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 1"
                                }
                            },
                            "type": "data",
                            "color": "#444",
                            "value": 10,
                            "width": 3,
                            "visible": true,
                            "arraysrc": "sanazafsharian:20:af02a0",
                            "symmetric": true,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "textsrc": "sanazafsharian:20:4c1abc",
                        "textfont": {
                            "size": 30,
                            "color": "rgb(23, 23, 23)",
                            "family": "Arial"
                        },
                        "orientation": "v",
                        "textposition": "inside"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "PET MD_strain (MD)",
                                "text": "PET MD_strain (MD)",
                                "error_y": {
                                    "array": "error 1"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard - MD strain</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:20:9c4404",
                        "ysrc": "sanazafsharian:20:2bc348",
                        "marker": {
                            "color": "rgb(225, 81, 21)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET error 1"
                                }
                            },
                            "type": "data",
                            "width": 3,
                            "visible": true,
                            "arraysrc": "sanazafsharian:20:6fbe32",
                            "symmetric": true,
                            "thickness": 2
                        },
                        "textsrc": "sanazafsharian:20:2bc348",
                        "textfont": {
                            "size": 30,
                            "color": "rgb(23, 23, 23)",
                            "family": "Arial"
                        },
                        "orientation": "v",
                        "textposition": "inside"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "CD_strain (CD)",
                                "text": "CD_strain (CD)",
                                "error_y": {
                                    "array": "error 4"
                                }
                            }
                        },
                        "name": "<b>Uncoated paperboard - CD strain&nbsp;</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:20:9c4404",
                        "ysrc": "sanazafsharian:20:313e1d",
                        "marker": {
                            "color": "rgb(130, 123, 133)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 4"
                                }
                            },
                            "type": "data",
                            "width": 3,
                            "visible": true,
                            "arraysrc": "sanazafsharian:20:f1d8f9",
                            "symmetric": true,
                            "thickness": 2
                        },
                        "textsrc": "sanazafsharian:20:313e1d",
                        "textfont": {
                            "size": 30,
                            "color": "rgb(23, 23, 23)",
                            "family": "Arial"
                        },
                        "textangle": "auto",
                        "orientation": "v",
                        "textposition": "inside",
                        "constraintext": "inside"
                    },
                    {
                        "line": {
                            "color": "rgb(130, 123, 133)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "PET CD_strain (CD)",
                                "text": "PET CD_strain (CD)",
                                "error_y": {
                                    "array": "error 4"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard - CD strain</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:20:9c4404",
                        "ysrc": "sanazafsharian:20:7eb309",
                        "marker": {
                            "color": "rgb(17, 216, 155)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET error 4"
                                }
                            },
                            "type": "data",
                            "color": "rgb(68, 68, 68)",
                            "width": 3,
                            "visible": true,
                            "arraysrc": "sanazafsharian:20:d6ff1d",
                            "symmetric": true,
                            "thickness": 2
                        },
                        "textsrc": "sanazafsharian:20:7eb309",
                        "textfont": {
                            "size": 30,
                            "color": "rgb(23, 23, 23)",
                            "family": "Arial"
                        },
                        "orientation": "v",
                        "textposition": "inside",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.78,
                        "font": {
                            "size": 40
                        },
                        "text": "<b>Strain properties of studied materials obtained in bulge test</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "title": {
                            "font": {
                                "size": 30
                            }
                        },
                        "tickfont": {
                            "size": 30
                        },
                        "autorange": true,
                        "tickangle": "auto",
                        "fixedrange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 0.5,
                        "range": [
                            0,
                            7.634875670526316
                        ],
                        "tick0": 1,
                        "title": {
                            "font": {
                                "size": 35
                            },
                            "text": "<br><b>Strain properties (%)</b><br>\n &nbsp;"
                        },
                        "tickfont": {
                            "size": 25
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "bargap": 0.19999999999999996,
                    "legend": {
                        "x": 0.5,
                        "y": -0.22,
                        "font": {
                            "size": 32,
                            "family": "Arial"
                        },
                        "valign": "bottom",
                        "bgcolor": "rgb(250, 247, 247)",
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "orientation": "h",
                        "tracegroupgap": 20
                    },
                    "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#9e0142"
                            ],
                            [
                                0.1,
                                "#d53e4f"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee08b"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e6f598"
                            ],
                            [
                                0.7,
                                "#abdda4"
                            ],
                            [
                                0.8,
                                "#66c2a5"
                            ],
                            [
                                0.9,
                                "#3288bd"
                            ],
                            [
                                1,
                                "#5e4fa2"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ]
                    },
                    "bargroupgap": 0.3,
                    "paper_bgcolor": "rgb(250, 246, 246)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sanazafsharian",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-30 11:17:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sanazafsharian",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T08:14:28.848508Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janas3/6.embed",
            "fid": "janas3:6",
            "filename": "Plot 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janas3/6/9_BVDIHDLQEHKT7VLSG9NAXO5PIH1UCV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janas3/6/2_FUHH83B1AM3AATKXNRUXTKKEFGRGQK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janas3/6/8_3YW5OOAYLDUGVVJKPE9AN6EYI95AYT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janas3/6/9_BVDIHDLQEHKT7VLSG9NAXO5PIH1UCV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janas3:6",
                "plots": "https://api.plotly.com/v2/plots/janas3:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=janas3"
            },
            "owner": "janas3",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~janas3/6/",
            "world_readable": true,
            "date_modified": "2025-06-27T08:14:28.859Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janas3/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TimeStamp",
                                "y": "Mean",
                                "text": "Version"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "janas3:5:907236",
                        "ysrc": "janas3:5:4294af",
                        "textsrc": "janas3:5:1603f6",
                        "hoverinfo": "text"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12
                    },
                    "title": {
                        "x": 0.06,
                        "font": {
                            "size": 16
                        }
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.2957128099173554,
                            5.295712809917355
                        ],
                        "zeroline": true,
                        "autorange": true,
                        "tickangle": 90,
                        "zerolinecolor": "rgb(34, 70, 126)",
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            16706965.463917525,
                            16923934.536082473
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": [
                        {
                            "text": "",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janas3",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-07-11 11:00:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janas3",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T07:44:53.949454Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~spraharaju/10.embed",
            "fid": "spraharaju:10",
            "filename": "2-Myers MDACC SIG ISS Jun2025",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/spraharaju/10/9_SACI9353W8UWUJUBMLP0M7V75M7UZS.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/spraharaju:10/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/spraharaju/10/8_MKX50HQL8U1IHH30UKHKSDKRECIZUJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/spraharaju/10/9_SACI9353W8UWUJUBMLP0M7V75M7UZS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/spraharaju:10",
                "plots": "https://api.plotly.com/v2/plots/spraharaju:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=spraharaju"
            },
            "owner": "spraharaju",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~spraharaju/10/",
            "world_readable": true,
            "date_modified": "2025-07-02T02:44:40.221Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~spraharaju/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(235,242,246,1)",
                            "width": 11.338582677165356
                        },
                        "mode": "lines",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:1cd241",
                        "ysrc": "spraharaju:9:dceee5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "(ctDNA,Negative)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:b157ca",
                        "ysrc": "spraharaju:9:68167e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(163,197,242,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(163,197,242,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:7d2056",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Negative)"
                    },
                    {
                        "mode": "markers",
                        "name": "(ctDNA,Pending)",
                        "text": "<b>Subject:</b> S48-1<br><b>Visit Type:</b> Follow-up (~9 months)<br><b>Collection Date:</b> 2025-06-13<br><b>Received Date:</b> 2025-06-17<br><b>Result:</b> Pending<br>",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:b99ec3",
                        "ysrc": "spraharaju:9:f41c54",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(204,215,90,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(204,215,90,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Pending)"
                    },
                    {
                        "mode": "markers",
                        "name": "(ctDNA,Positive)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:1ec139",
                        "ysrc": "spraharaju:9:bf6882",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,63,144,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(0,63,144,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:4c965b",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Positive)"
                    },
                    {
                        "mode": "markers",
                        "name": "(ctDNA,TNP)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:bca6d9",
                        "ysrc": "spraharaju:9:790b78",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:c0d970",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,TNP)"
                    },
                    {
                        "mode": "markers",
                        "name": "(EDTA,Performed)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:b2d18e",
                        "ysrc": "spraharaju:9:972648",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(137,206,200,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(137,206,200,1)",
                            "symbol": "triangle-up",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:1ca66a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(EDTA,Performed)"
                    },
                    {
                        "mode": "markers",
                        "name": "(EDTA,TNP)",
                        "text": "<b>Subject:</b> S29-1<br><b>Visit Type:</b> NA<br><b>Collection Date:</b> 2023-11-07<br><b>Received Date:</b> 2023-11-08<br><b>Result:</b> TNP<br>",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:b861ad",
                        "ysrc": "spraharaju:9:d7e4f2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "triangle-up",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(EDTA,TNP)"
                    },
                    {
                        "mode": "markers",
                        "name": "(Tissue,Performed)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:f9ce77",
                        "ysrc": "spraharaju:9:7161f6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(137,206,200,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(137,206,200,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:de953f",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(Tissue,Performed)"
                    },
                    {
                        "mode": "markers",
                        "name": "(Tissue,TNP)",
                        "type": "scatter",
                        "xsrc": "spraharaju:9:39986b",
                        "ysrc": "spraharaju:9:3a8d0d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:9:92c6a8",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(Tissue,TNP)"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.53424657534247,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Myers MDACC Resectable HNSCC 2021-0384 SIG ISS",
                        "xref": "paper"
                    },
                    "width": 1200,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            19377.2,
                            20296.8
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Date of Collection (Month, Year)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Feb 2023",
                            "Mar 2023",
                            "Apr 2023",
                            "May 2023",
                            "Jun 2023",
                            "Jul 2023",
                            "Aug 2023",
                            "Sep 2023",
                            "Oct 2023",
                            "Nov 2023",
                            "Dec 2023",
                            "Jan 2024",
                            "Feb 2024",
                            "Mar 2024",
                            "Apr 2024",
                            "May 2024",
                            "Jun 2024",
                            "Jul 2024",
                            "Aug 2024",
                            "Sep 2024",
                            "Oct 2024",
                            "Nov 2024",
                            "Dec 2024",
                            "Jan 2025",
                            "Feb 2025",
                            "Mar 2025",
                            "Apr 2025",
                            "May 2025",
                            "Jun 2025",
                            "Jul 2025"
                        ],
                        "tickvals": [
                            19389,
                            19417,
                            19448,
                            19478,
                            19509,
                            19539,
                            19570,
                            19601,
                            19631,
                            19662,
                            19692,
                            19723,
                            19754,
                            19783,
                            19814,
                            19844,
                            19875,
                            19905,
                            19936,
                            19967,
                            19997,
                            20028,
                            20058,
                            20089,
                            20120,
                            20148,
                            20179,
                            20209,
                            20240,
                            20270
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Feb 2023",
                            "Mar 2023",
                            "Apr 2023",
                            "May 2023",
                            "Jun 2023",
                            "Jul 2023",
                            "Aug 2023",
                            "Sep 2023",
                            "Oct 2023",
                            "Nov 2023",
                            "Dec 2023",
                            "Jan 2024",
                            "Feb 2024",
                            "Mar 2024",
                            "Apr 2024",
                            "May 2024",
                            "Jun 2024",
                            "Jul 2024",
                            "Aug 2024",
                            "Sep 2024",
                            "Oct 2024",
                            "Nov 2024",
                            "Dec 2024",
                            "Jan 2025",
                            "Feb 2025",
                            "Mar 2025",
                            "Apr 2025",
                            "May 2025",
                            "Jun 2025",
                            "Jul 2025"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            24.6
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Subject ID"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "S05-1",
                            "S06-1",
                            "S07-1",
                            "S08-1",
                            "S09-1",
                            "S10-1",
                            "S11-1",
                            "S16-1",
                            "S17-1",
                            "S19-1",
                            "S21-1",
                            "S22-1",
                            "S26-1",
                            "S27-1",
                            "S28-1",
                            "S29-1",
                            "S32-1",
                            "S35-1",
                            "S38-1",
                            "S40-1",
                            "S41-1",
                            "S44-1",
                            "S45-1",
                            "S48-1"
                        ],
                        "tickvals": [
                            1,
                            2.0000000000000004,
                            3,
                            3.9999999999999996,
                            5,
                            6,
                            7.000000000000001,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "S05-1",
                            "S06-1",
                            "S07-1",
                            "S08-1",
                            "S09-1",
                            "S10-1",
                            "S11-1",
                            "S16-1",
                            "S17-1",
                            "S19-1",
                            "S21-1",
                            "S22-1",
                            "S26-1",
                            "S27-1",
                            "S28-1",
                            "S29-1",
                            "S32-1",
                            "S35-1",
                            "S38-1",
                            "S40-1",
                            "S41-1",
                            "S44-1",
                            "S45-1",
                            "S48-1"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "height": 800,
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Sample Type<br />Result Details"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 55.530856108634055,
                        "l": 54.79452054794521,
                        "r": 7.305936073059362,
                        "t": 45.48130085188107
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": 800,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~spraharaju",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-29 06:06:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "spraharaju",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T07:26:59.884151Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sanazafsharian/19.embed",
            "fid": "sanazafsharian:19",
            "filename": "Bulge test copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/19/9_PP0X5WW0D9BM0NGBQCFGMJ7VV8ICG2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/19/2_J1EI0QIQGZ0L8CI3MSSLJY1QQXCQJY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/19/8_87S9ODJN7SIJMZGN5IE7UJ0KWD2VMX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sanazafsharian/19/9_PP0X5WW0D9BM0NGBQCFGMJ7VV8ICG2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sanazafsharian:19",
                "plots": "https://api.plotly.com/v2/plots/sanazafsharian:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=sanazafsharian"
            },
            "owner": "sanazafsharian",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~sanazafsharian/19/",
            "world_readable": true,
            "date_modified": "2025-06-27T08:38:26.333Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sanazafsharian/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "MD_strain (MD)",
                                "error_y": {
                                    "array": "error 1"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "<b>Uncoated paperboard- MD strain (MD)</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:c539f2",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 1"
                                }
                            },
                            "type": "data",
                            "color": "#444",
                            "value": 10,
                            "width": 4,
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:7feaa7",
                            "symmetric": true,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "MD_strain (CD)",
                                "error_y": {
                                    "array": "error 2"
                                }
                            }
                        },
                        "name": "<b>Uncoated paperboard- MD strain (CD)</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:85a424",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 2"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:1ad244",
                            "symmetric": true
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "CD_strain (MD)",
                                "error_y": {
                                    "array": "error 3"
                                }
                            }
                        },
                        "name": "<b>Uncoated paperboard- CD strain (MD)</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:7ecf62",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 3"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:3965e8",
                            "symmetric": true
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "CD_strain (CD)",
                                "error_y": {
                                    "array": "error 4"
                                }
                            }
                        },
                        "name": "<b>Uncoated paperboard- CD strain (CD)</b>",
                        "type": "bar",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:6f279d",
                        "marker": {
                            "color": "rgb(130, 123, 133)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "error 4"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:538045",
                            "symmetric": true
                        },
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "MD_strain (MD)",
                                "error_y": {
                                    "array": "error 1"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard- MD strain (MD)</b>",
                        "type": "scatter",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:c539f2",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET error 1"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:38e2b4",
                            "symmetric": true
                        },
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "PET MD_strain (CD)",
                                "error_y": {
                                    "array": "MD_strain (MD)"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard- MD strain (CD)</b>",
                        "type": "scatter",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:d73593",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET MD_strain (MD)"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:bceda5",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(0, 204, 150)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "CD_strain (MD)",
                                "error_y": {
                                    "array": "error 3"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard- CD strain (MD)</b>",
                        "type": "scatter",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:7ecf62",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET error 3"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:dbc4bc",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(130, 123, 133)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "sample name",
                                "y": "CD_strain (CD)",
                                "error_y": {
                                    "array": "error 4"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "<b>PET-coated paperboard- CD strain (CD)</b>",
                        "type": "scatter",
                        "xsrc": "sanazafsharian:18:c26b47",
                        "ysrc": "sanazafsharian:18:6f279d",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "PET error 4"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "sanazafsharian:18:8214b7",
                            "symmetric": true
                        },
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.7,
                        "font": {
                            "size": 35
                        },
                        "text": "<b>Strain properties of studied materials obtained in bulge test</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            6.5
                        ],
                        "tickfont": {
                            "size": 25
                        },
                        "autorange": false,
                        "tickangle": 45,
                        "fixedrange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 0.5,
                        "range": [
                            0,
                            8
                        ],
                        "tick0": 1,
                        "title": {
                            "font": {
                                "size": 30
                            },
                            "text": "<br><b>Strain properties (%)</b>"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "tickmode": "linear",
                        "autorange": false
                    },
                    "bargap": 0.19999999999999996,
                    "height": 1200,
                    "legend": {
                        "x": 1.014140625,
                        "y": 0.6887816646562123,
                        "font": {
                            "size": 25,
                            "family": "Arial"
                        },
                        "bgcolor": "rgb(224, 197, 197)",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "tracegroupgap": 20
                    },
                    "autosize": false,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#9e0142"
                            ],
                            [
                                0.1,
                                "#d53e4f"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee08b"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e6f598"
                            ],
                            [
                                0.7,
                                "#abdda4"
                            ],
                            [
                                0.8,
                                "#66c2a5"
                            ],
                            [
                                0.9,
                                "#3288bd"
                            ],
                            [
                                1,
                                "#5e4fa2"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ]
                    },
                    "bargroupgap": 0.3,
                    "paper_bgcolor": "rgb(250, 246, 246)"
                }
            },
            "height": 1200,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sanazafsharian",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-30 11:17:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sanazafsharian",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T07:25:41.922992Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~spraharaju/5.embed",
            "fid": "spraharaju:5",
            "filename": "Myers MDACC SIG ISS Jun2025",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/spraharaju/5/9_21MWFAEW4Z93APGKMLJX2V7PDV7F93.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/spraharaju/5/2_1N9MI26VK90HIPR7J01YZT5Z6CNZM9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/spraharaju/5/8_XR3AQE2JU58KE6NRCTO1M8JI4ZOU0E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/spraharaju/5/9_21MWFAEW4Z93APGKMLJX2V7PDV7F93.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/spraharaju:5",
                "plots": "https://api.plotly.com/v2/plots/spraharaju:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=spraharaju"
            },
            "owner": "spraharaju",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~spraharaju/5/",
            "world_readable": true,
            "date_modified": "2025-06-27T07:39:52.700Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~spraharaju/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(235,242,246,1)",
                            "width": 11.338582677165356
                        },
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "lines",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:b8f153",
                        "ysrc": "spraharaju:6:9bed52",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x",
                                "y": "data.2.y",
                                "text": "data.2.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(ctDNA,Negative)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:c77843",
                        "ysrc": "spraharaju:6:8be325",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(163,197,242,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(163,197,242,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:8ebfdc",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Negative)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.3.x",
                                "y": "data.3.y"
                            }
                        },
                        "mode": "markers",
                        "name": "(ctDNA,Pending)",
                        "text": "<b>Subject:</b> S48-1<br><b>Visit Type:</b> Follow-up (~9 months)<br><b>Collection Date:</b> 2025-06-13<br><b>Received Date:</b> 2025-06-17<br><b>Result:</b> Pending<br>",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:3fdb89",
                        "ysrc": "spraharaju:6:7d3c9d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(204,215,90,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(204,215,90,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Pending)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.4.x",
                                "y": "data.4.y",
                                "text": "data.4.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(ctDNA,Positive)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:2dc677",
                        "ysrc": "spraharaju:6:7d8e47",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,63,144,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(0,63,144,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:d5e035",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,Positive)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.5.x",
                                "y": "data.5.y",
                                "text": "data.5.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(ctDNA,TNP)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:13b644",
                        "ysrc": "spraharaju:6:4b265c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "square",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:12b741",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(ctDNA,TNP)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.6.x",
                                "y": "data.6.y",
                                "text": "data.6.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(EDTA,Performed)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:c2a9f1",
                        "ysrc": "spraharaju:6:a3cae5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(137,206,200,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(137,206,200,1)",
                            "symbol": "triangle-up",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:2d733f",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(EDTA,Performed)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.7.x",
                                "y": "data.7.y"
                            }
                        },
                        "mode": "markers",
                        "name": "(EDTA,TNP)",
                        "text": "<b>Subject:</b> S29-1<br><b>Visit Type:</b> NA<br><b>Collection Date:</b> 2023-11-07<br><b>Received Date:</b> 2023-11-08<br><b>Result:</b> TNP<br>",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:6894ed",
                        "ysrc": "spraharaju:6:3ccb00",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "triangle-up",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(EDTA,TNP)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.8.x",
                                "y": "data.8.y",
                                "text": "data.8.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(Tissue,Performed)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:db97b3",
                        "ysrc": "spraharaju:6:c249cf",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(137,206,200,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(137,206,200,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:9c30b0",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(Tissue,Performed)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.9.x",
                                "y": "data.9.y",
                                "text": "data.9.text"
                            }
                        },
                        "mode": "markers",
                        "name": "(Tissue,TNP)",
                        "type": "scatter",
                        "xsrc": "spraharaju:6:583fec",
                        "ysrc": "spraharaju:6:14fcb9",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(254,228,162,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 18.897637795275593,
                            "color": "rgba(254,228,162,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "spraharaju:6:0e10b3",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(Tissue,TNP)"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "rgba(0, 0, 0, 1)",
                        "family": "Open Sans"
                    },
                    "title": {
                        "x": 0.02,
                        "font": {
                            "size": 18,
                            "color": "rgba(0, 0, 0, 1)",
                            "family": ""
                        },
                        "text": "<b>Myers MDACC Resectable HNSCC 2021-0384 SIG ISS</b><br>Collection Timeline of Samples with WES Bundle Completed<br>\n<br>",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            19377.2,
                            20296.8
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 13,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "Date of Collection (Month, Year)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 10,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Feb 2023",
                            "Mar 2023",
                            "Apr 2023",
                            "May 2023",
                            "Jun 2023",
                            "Jul 2023",
                            "Aug 2023",
                            "Sep 2023",
                            "Oct 2023",
                            "Nov 2023",
                            "Dec 2023",
                            "Jan 2024",
                            "Feb 2024",
                            "Mar 2024",
                            "Apr 2024",
                            "May 2024",
                            "Jun 2024",
                            "Jul 2024",
                            "Aug 2024",
                            "Sep 2024",
                            "Oct 2024",
                            "Nov 2024",
                            "Dec 2024",
                            "Jan 2025",
                            "Feb 2025",
                            "Mar 2025",
                            "Apr 2025",
                            "May 2025",
                            "Jun 2025",
                            "Jul 2025"
                        ],
                        "tickvals": [
                            19389,
                            19417,
                            19448,
                            19478,
                            19509,
                            19539,
                            19570,
                            19601,
                            19631,
                            19662,
                            19692,
                            19723,
                            19754,
                            19783,
                            19814,
                            19844,
                            19875,
                            19905,
                            19936,
                            19967,
                            19997,
                            20028,
                            20058,
                            20089,
                            20120,
                            20148,
                            20179,
                            20209,
                            20240,
                            20270
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgb(10, 10, 10)",
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "fixedrange": false,
                        "hoverformat": ".2f",
                        "rangeslider": {
                            "range": [
                                19355.25851951441,
                                20318.74148048559
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "categoryarray": [
                            "Feb 2023",
                            "Mar 2023",
                            "Apr 2023",
                            "May 2023",
                            "Jun 2023",
                            "Jul 2023",
                            "Aug 2023",
                            "Sep 2023",
                            "Oct 2023",
                            "Nov 2023",
                            "Dec 2023",
                            "Jan 2024",
                            "Feb 2024",
                            "Mar 2024",
                            "Apr 2024",
                            "May 2024",
                            "Jun 2024",
                            "Jul 2024",
                            "Aug 2024",
                            "Sep 2024",
                            "Oct 2024",
                            "Nov 2024",
                            "Dec 2024",
                            "Jan 2025",
                            "Feb 2025",
                            "Mar 2025",
                            "Apr 2025",
                            "May 2025",
                            "Jun 2025",
                            "Jul 2025"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            24.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 13,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "Subject ID"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            0.98
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "S05-1",
                            "S06-1",
                            "S07-1",
                            "S08-1",
                            "S09-1",
                            "S10-1",
                            "S11-1",
                            "S16-1",
                            "S17-1",
                            "S19-1",
                            "S21-1",
                            "S22-1",
                            "S26-1",
                            "S27-1",
                            "S28-1",
                            "S29-1",
                            "S32-1",
                            "S35-1",
                            "S38-1",
                            "S40-1",
                            "S41-1",
                            "S44-1",
                            "S45-1",
                            "S48-1"
                        ],
                        "tickvals": [
                            1,
                            2.0000000000000004,
                            3,
                            3.9999999999999996,
                            5,
                            6,
                            7.000000000000001,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgb(10, 10, 10)",
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "S05-1",
                            "S06-1",
                            "S07-1",
                            "S08-1",
                            "S09-1",
                            "S10-1",
                            "S11-1",
                            "S16-1",
                            "S17-1",
                            "S19-1",
                            "S21-1",
                            "S22-1",
                            "S26-1",
                            "S27-1",
                            "S28-1",
                            "S29-1",
                            "S32-1",
                            "S35-1",
                            "S38-1",
                            "S40-1",
                            "S41-1",
                            "S44-1",
                            "S45-1",
                            "S48-1"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 12,
                            "color": "rgba(0, 0, 0, 1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "Sample Type, Result Type:<br>"
                        },
                        "bgcolor": null,
                        "itemsizing": "trace",
                        "traceorder": "grouped",
                        "bordercolor": null,
                        "borderwidth": 1,
                        "tracegroupgap": 6
                    },
                    "margin": {
                        "b": 68,
                        "l": 74.76,
                        "r": 180,
                        "t": 62.9,
                        "pad": 0
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "modebar": {
                        "color": "rgb(29, 29, 31)",
                        "activecolor": "rgba(157, 157, 162, 0.7)"
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "hovermode": "closest",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.1111111111111111,
                                "#482878"
                            ],
                            [
                                0.2222222222222222,
                                "#3e4989"
                            ],
                            [
                                0.3333333333333333,
                                "#31688e"
                            ],
                            [
                                0.4444444444444444,
                                "#26828e"
                            ],
                            [
                                0.5555555555555556,
                                "#1f9e89"
                            ],
                            [
                                0.6666666666666666,
                                "#35b779"
                            ],
                            [
                                0.7777777777777778,
                                "#6ece58"
                            ],
                            [
                                0.8888888888888888,
                                "#b5de2b"
                            ],
                            [
                                1,
                                "#fde725"
                            ]
                        ]
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~spraharaju",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-29 06:06:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "spraharaju",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T06:09:11.149355Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~janset1/1.embed",
            "fid": "janset1:1",
            "filename": "Syrup parameter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/janset1/1/9_VM8FCFH480CSEDWO2WLVVMHVP8P3P4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/janset1/1/2_VEB8PZRI2OKWQABLL0T64GAWXZ01NP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janset1/1/8_MAVG3L9GMSH07PEBDX4CPI863OMR44.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janset1/1/9_VM8FCFH480CSEDWO2WLVVMHVP8P3P4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/janset1:1",
                "plots": "https://api.plotly.com/v2/plots/janset1:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=janset1"
            },
            "owner": "janset1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~janset1/1/",
            "world_readable": true,
            "date_modified": "2025-06-27T06:09:11.159Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~janset1/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Material",
                                "y": "Dry substance (%)"
                            }
                        },
                        "mode": "markers",
                        "name": "Dry Substance",
                        "type": "bar",
                        "xsrc": "janset1:0:c693b8",
                        "ysrc": "janset1:0:73136f",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Material",
                                "y": "Brix (20°C)"
                            }
                        },
                        "name": "Brix (20°C)",
                        "type": "bar",
                        "xsrc": "janset1:0:c693b8",
                        "ysrc": "janset1:0:d96087",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Material",
                                "y": "Refractive Index"
                            }
                        },
                        "name": "Refractive index",
                        "type": "bar",
                        "xsrc": "janset1:0:c693b8",
                        "ysrc": "janset1:0:de97e9",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Material",
                                "y": "SO2 (mg/kg)"
                            }
                        },
                        "mode": "markers",
                        "name": "SO2 (mg/kg)",
                        "type": "bar",
                        "xsrc": "janset1:0:c693b8",
                        "ysrc": "janset1:0:57c465",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Material",
                                "y": "pH Upper Limit"
                            }
                        },
                        "mode": "markers",
                        "name": "pH",
                        "type": "bar",
                        "xsrc": "janset1:0:c693b8",
                        "ysrc": "janset1:0:c6185a",
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Syrup parameters"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            88.31578947368422
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1.0702702702702702
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~janset1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-27 05:36:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "janset1",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T05:44:09.479869Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~4e/456.embed",
            "fid": "4e:456",
            "filename": "Plot 456",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/4e/456/9_UH64ZD50W191QYX2PB5W801RUX0TDE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/4e/456/2_4MVOU10SEK1CHTA4DAZC5TJCXA5P1Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/4e/456/8_7GWSO8P7GL6LLDZU8H7BB3CHHLCGI9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/4e/456/9_UH64ZD50W191QYX2PB5W801RUX0TDE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/4e:456",
                "plots": "https://api.plotly.com/v2/plots/4e:456",
                "parent": "https://api.plotly.com/v2/folders/home?user=4e"
            },
            "owner": "4e",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~4e/456/",
            "world_readable": true,
            "date_modified": "2025-06-29T20:35:28.213Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~4e/456/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(99, 188, 250)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:455:d6846b",
                        "ysrc": "4e:455:91ee24"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:455:d6846b",
                        "ysrc": "4e:455:fb59d3",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Counterfeit Dominus"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            3587
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -18333.333333333332,
                            348333.3333333333
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~4e",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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": "2024-09-12 13:44:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "4e",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T05:35:28.898239Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~n00r/77.embed",
            "fid": "n00r:77",
            "filename": "Gradient Boosting Testing: Class vs F1-Score",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/n00r/77/9_DMUO5FUWTRG9UEP4FTBIA7Y8JLKLIG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/n00r/77/2_L6R3C6S6ZK0DAYYXA29C42IBSNXBOC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/77/8_NV9WBWRUQX72DRB6MPB9LSC054Z4UW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/77/9_DMUO5FUWTRG9UEP4FTBIA7Y8JLKLIG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/n00r:77",
                "plots": "https://api.plotly.com/v2/plots/n00r:77",
                "parent": "https://api.plotly.com/v2/folders/home?user=n00r"
            },
            "owner": "n00r",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~n00r/77/",
            "world_readable": true,
            "date_modified": "2025-06-27T05:35:28.907Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~n00r/77/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "class",
                                "y": "f1-score"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "n00r:76:963bf3",
                        "ysrc": "n00r:76:9943e8",
                        "colorbar": {
                            "title": {
                                "text": "F1-Score Level"
                            }
                        },
                        "contours": {
                            "end": 2.5,
                            "size": 0.2,
                            "start": 0.5,
                            "showlines": false
                        },
                        "colorscale": [
                            [
                                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"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "Gradient Boosting Testing: Class vs F1-Score"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3,
                            12
                        ],
                        "title": {
                            "text": "Class"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.6,
                            1.2000000000000002
                        ],
                        "title": {
                            "text": "F1-Score"
                        },
                        "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~n00r",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 10:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "n00r",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-27T05:32:37.911658Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~n00r/75.embed",
            "fid": "n00r:75",
            "filename": "Gradient Boosting Testing: Class vs Recall",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/n00r/75/9_UC9Q4Y80XR8ASEUWKERZXX5XQLWZQ6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/n00r/75/2_R8CPHB7364M3C02OZD80M26TJWWQM6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/75/8_LIZVYK1BJIY3KAGITY2IU861K4J3EV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/n00r/75/9_UC9Q4Y80XR8ASEUWKERZXX5XQLWZQ6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/n00r:75",
                "plots": "https://api.plotly.com/v2/plots/n00r:75",
                "parent": "https://api.plotly.com/v2/folders/home?user=n00r"
            },
            "owner": "n00r",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~n00r/75/",
            "world_readable": true,
            "date_modified": "2025-06-27T05:32:37.922Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~n00r/75/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "class",
                                "y": "recall"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "n00r:74:348839",
                        "ysrc": "n00r:74:f93ad4",
                        "colorbar": {
                            "title": {
                                "text": "Recall Level"
                            }
                        },
                        "contours": {
                            "end": 3.5,
                            "size": 0.5,
                            "start": 0.5,
                            "showlines": false
                        },
                        "colorscale": [
                            [
                                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"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "Gradient Boosting Testing: Class vs Recall"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3,
                            12
                        ],
                        "title": {
                            "text": "Class"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.5,
                            1.1
                        ],
                        "title": {
                            "text": "Recall"
                        },
                        "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~n00r",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-25 10:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "n00r",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}