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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTA4KzAzJTNBMTAlM0EwMy43NzYxNDUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0wOCsxMCUzQTE3JTNBMjkuMzg5NDA3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-08T10:17:29.389407Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/61.embed",
            "fid": "diannelauc:61",
            "filename": "10% Fly Ash 0% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/61/9_NETBG0P09YLKI272ULRA1HFRAZJ6WV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/61/2_AJ2BSQQHX7BOXKICP1AE2ML7TWMQH5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/61/8_3K0S1XIO4WH6SMY0YE0PGKFFK8X1KX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/61/9_NETBG0P09YLKI272ULRA1HFRAZJ6WV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:61",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:61",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/61/",
            "world_readable": true,
            "date_modified": "2025-08-08T10:28:57.432Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/61/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "12th Day",
                        "type": "box",
                        "ysrc": "diannelauc:60:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:60:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:60:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Compressive Strength of 10% Fly Ash 0% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -2.036666666666667,
                            38.696666666666665
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Compressive Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T10:15:48.823415Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/59.embed",
            "fid": "diannelauc:59",
            "filename": "5% Fly Ash 50% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/59/9_IA8HBXQNB85WE04IM5VOVW4RU2QQ6T.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/59/2_O8CHHMO98LBAB99LQAKLGJK7HY6ISA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/59/8_S0KEN42V16IYA662H9W63IM50CNXG2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/59/9_IA8HBXQNB85WE04IM5VOVW4RU2QQ6T.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:59",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:59",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/59/",
            "world_readable": true,
            "date_modified": "2025-08-08T10:33:04.530Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/59/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "12th Day",
                        "type": "box",
                        "ysrc": "diannelauc:58:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:58:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:58:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Compressive Strength of 5% Fly Ash 50% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -1.7833333333333337,
                            33.88333333333333
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Compressive Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T10:13:45.424757Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ell_mali/1.embed",
            "fid": "ell_mali:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ell_mali/1/9_XUS8NW6AFF34PQVN2P8YQUIT9KQ6RG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ell_mali/1/2_ON568U0ALTH2K7Q1SB3WV74ZTJF02E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ell_mali/1/8_U2CE8UECLR9RJTNS7MVZY8TLIFJLKK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ell_mali/1/9_XUS8NW6AFF34PQVN2P8YQUIT9KQ6RG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ell_mali:1",
                "plots": "https://api.plotly.com/v2/plots/ell_mali:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ell_mali"
            },
            "owner": "ell_mali",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ell_mali/1/",
            "world_readable": true,
            "date_modified": "2025-08-08T10:13:45.435Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ell_mali/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "month",
                                "y": "profit"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ell_mali:0:162eb3",
                        "ysrc": "ell_mali:0:07b194"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            15
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            7804.888888888889,
                            29087.11111111111
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ell_mali",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 10:11:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ell_mali",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T10:08:53.733949Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diannelauc/57.embed",
            "fid": "diannelauc:57",
            "filename": "5% Fly Ash 0% CDW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/diannelauc/57/9_VA9N4YD9HHF0SCP5MTTGBF1UZMH3EO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/diannelauc/57/2_1554OM56IFV8MXBLOYQQ4N5NLYQHAG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/57/8_ZOFHDWIYZESO8EO6BX5UOE9PYGULAO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/diannelauc/57/9_VA9N4YD9HHF0SCP5MTTGBF1UZMH3EO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diannelauc:57",
                "plots": "https://api.plotly.com/v2/plots/diannelauc:57",
                "parent": "https://api.plotly.com/v2/folders/home?user=diannelauc"
            },
            "owner": "diannelauc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~diannelauc/57/",
            "world_readable": true,
            "date_modified": "2025-08-08T10:14:39.161Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diannelauc/57/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "12th Day",
                        "type": "box",
                        "ysrc": "diannelauc:56:13edea",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "notched": false,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "14th Day",
                        "type": "box",
                        "ysrc": "diannelauc:56:8254a2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "28th Day",
                        "type": "box",
                        "ysrc": "diannelauc:56:9f1d4c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "opacity": 1
                        },
                        "boxmean": true,
                        "boxpoints": "outliers",
                        "hoverinfo": "name",
                        "hovertemplate": "<br>"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Compressive Strength of 5% Fly Ash 0% CDW Mix Design Over Time"
                    },
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                2.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            -1.6338888888888892,
                            31.04388888888889
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "text": "Compressive Strength, MPa"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickmode": "auto",
                        "autorange": true,
                        "showspikes": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diannelauc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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 22:45:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diannelauc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T09:54:34.472254Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~IneaIrene/1.embed",
            "fid": "IneaIrene:1",
            "filename": "Total MAs",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/IneaIrene/1/9_RUQ0EJE0HYX5V0CXWFVP6OADD4RGO0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/IneaIrene/1/2_ALQJ6ODUAMLIIFKF93V0JI4V4AV82Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/IneaIrene/1/8_CR2C5AZHV8NAH4KI38PG1URN5D2IIB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/IneaIrene/1/9_RUQ0EJE0HYX5V0CXWFVP6OADD4RGO0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/IneaIrene:1",
                "plots": "https://api.plotly.com/v2/plots/IneaIrene:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=IneaIrene"
            },
            "owner": "IneaIrene",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~IneaIrene/1/",
            "world_readable": true,
            "date_modified": "2025-08-08T12:58:25.694Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~IneaIrene/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "ids": "B",
                                "text": "A",
                                "labels": "A",
                                "values": "B",
                                "parents": "C"
                            }
                        },
                        "mode": "markers",
                        "sort": true,
                        "type": "treemap",
                        "idssrc": "IneaIrene:0:4968bd",
                        "pathbar": {
                            "side": "top",
                            "visible": true
                        },
                        "textsrc": "IneaIrene:0:748e96",
                        "textfont": {
                            "size": 17,
                            "family": "Balto"
                        },
                        "textinfo": "label+value",
                        "labelssrc": "IneaIrene:0:748e96",
                        "valuessrc": "IneaIrene:0:4968bd",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "parentssrc": "IneaIrene:0:a07389",
                        "branchvalues": "total"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "width": 600,
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "height": 450,
                    "margin": {
                        "t": 100
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": false,
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#fcfbfd"
                            ],
                            [
                                0.125,
                                "#efedf5"
                            ],
                            [
                                0.25,
                                "#dadaeb"
                            ],
                            [
                                0.375,
                                "#bcbddc"
                            ],
                            [
                                0.5,
                                "#9e9ac8"
                            ],
                            [
                                0.625,
                                "#807dba"
                            ],
                            [
                                0.75,
                                "#6a51a3"
                            ],
                            [
                                0.875,
                                "#54278f"
                            ],
                            [
                                1,
                                "#3f007d"
                            ]
                        ]
                    },
                    "treemapcolorway": [
                        "rgb(20, 29, 67)",
                        "rgb(28, 72, 93)",
                        "rgb(18, 115, 117)",
                        "rgb(63, 156, 129)",
                        "rgb(153, 189, 156)",
                        "rgb(223, 225, 211)",
                        "rgb(241, 218, 206)",
                        "rgb(224, 160, 137)",
                        "rgb(203, 101, 99)",
                        "rgb(164, 54, 96)",
                        "rgb(111, 23, 91)",
                        "rgb(51, 13, 53)"
                    ],
                    "extendtreemapcolors": true
                }
            },
            "height": 450,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~IneaIrene",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 09:46:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "IneaIrene",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T09:30:27.450220Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~s4199024/1.embed",
            "fid": "s4199024:1",
            "filename": "body-fat-percent",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/s4199024/1/9_6NU0EOYANI2HW5BGMR3XP4YH06PWL3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/s4199024/1/2_K3M34NNIVOUES2MEDDQALEC1NHB89Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/s4199024/1/8_MOT7JU63GWST6BDTDSYL8M1FCL3FWF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/s4199024/1/9_6NU0EOYANI2HW5BGMR3XP4YH06PWL3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/s4199024:1",
                "plots": "https://api.plotly.com/v2/plots/s4199024:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=s4199024"
            },
            "owner": "s4199024",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~s4199024/1/",
            "world_readable": true,
            "date_modified": "2025-08-08T09:30:27.467Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~s4199024/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "s4199024:0:ba78e2",
                        "ysrc": "s4199024:0:112f77",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 262.75,
                            "cmin": 118.5,
                            "line": {
                                "cmax": 262.75,
                                "cmin": 118.5,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "s4199024:0:de34c8",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(165,0,38,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(186,25,39,1)"
                                    ],
                                    [
                                        "0.0833333333333334",
                                        "rgba(207,42,39,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(222,66,46,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(235,91,57,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(245,115,69,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(249,143,82,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(253,169,94,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(254,191,112,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(254,212,132,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(254,229,152,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(255,242,171,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(255,255,191,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(244,250,215,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(230,245,239,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(211,236,244,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(189,226,238,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(167,213,231,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(144,195,221,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(121,177,211,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(101,154,199,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(82,131,187,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(67,106,175,1)"
                                    ],
                                    [
                                        "0.958333333333334",
                                        "rgba(59,80,162,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(49,54,149,1)"
                                    ]
                                ]
                            },
                            "sizesrc": "s4199024:0:cd99fa",
                            "colorbar": {
                                "title": "Weight",
                                "ticklen": 2
                            },
                            "colorsrc": "s4199024:0:7d8f00",
                            "sizemode": "area",
                            "showscale": false,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(165,0,38,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(186,25,39,1)"
                                ],
                                [
                                    "0.0833333333333334",
                                    "rgba(207,42,39,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(222,66,46,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(235,91,57,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(245,115,69,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(249,143,82,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(253,169,94,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(254,191,112,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(254,212,132,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(254,229,152,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(255,242,171,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(255,255,191,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(244,250,215,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(230,245,239,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(211,236,244,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(189,226,238,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(167,213,231,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(144,195,221,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(121,177,211,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(101,154,199,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(82,131,187,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(67,106,175,1)"
                                ],
                                [
                                    "0.958333333333334",
                                    "rgba(59,80,162,1)"
                                ],
                                [
                                    "1",
                                    "rgba(49,54,149,1)"
                                ]
                            ]
                        },
                        "error_x": {
                            "width": []
                        },
                        "error_y": {
                            "width": []
                        },
                        "textsrc": "s4199024:0:409425",
                        "textfont": {
                            "sizesrc": "s4199024:0:8e72c6"
                        },
                        "hoverinfosrc": "s4199024:0:0a7037"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "s4199024:0:cb2ada",
                        "ysrc": "s4199024:0:5b8918",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 262.75,
                            "cmin": 118.5,
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "colorbar": {
                                "y": 1,
                                "len": 0.5,
                                "title": "Weight",
                                "lenmode": "fraction",
                                "ticklen": 2,
                                "yanchor": "top"
                            },
                            "colorsrc": "s4199024:0:817e2b",
                            "showscale": true,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(165,0,38,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(186,25,39,1)"
                                ],
                                [
                                    "0.0833333333333334",
                                    "rgba(207,42,39,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(222,66,46,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(235,91,57,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(245,115,69,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(249,143,82,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(253,169,94,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(254,191,112,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(254,212,132,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(254,229,152,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(255,242,171,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(255,255,191,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(244,250,215,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(230,245,239,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(211,236,244,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(189,226,238,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(167,213,231,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(144,195,221,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(121,177,211,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(101,154,199,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(82,131,187,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(67,106,175,1)"
                                ],
                                [
                                    "0.958333333333334",
                                    "rgba(59,80,162,1)"
                                ],
                                [
                                    "1",
                                    "rgba(49,54,149,1)"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Body Fat Percentage by Abdomen, Weight and Age (point size)",
                    "xaxis": {
                        "title": "Abdomen Circumference (in)",
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "Body Fat % (Siri Method)",
                        "domain": [
                            0,
                            1
                        ],
                        "zeroline": false,
                        "automargin": true
                    },
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~s4199024",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 08:14:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "s4199024",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T09:17:23.882372Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Paul04/1.embed",
            "fid": "Paul04:1",
            "filename": "NIR LED 3D",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Paul04/1/9_FGWU1379UQUCPCEULY3OVGCML1VIQT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Paul04/1/2_GF12VOYFZNPBKSCBE55MIJ0FYMRPBF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Paul04/1/8_1NEGYKWH4UQ7R7CK0FRW788R4YPKS6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Paul04/1/9_FGWU1379UQUCPCEULY3OVGCML1VIQT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Paul04:1",
                "plots": "https://api.plotly.com/v2/plots/Paul04:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Paul04"
            },
            "owner": "Paul04",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Paul04/1/",
            "world_readable": true,
            "date_modified": "2025-08-08T09:17:23.894Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Paul04/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": 1000000,
                        "cmin": 0,
                        "meta": {
                            "columnNames": {
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4] - z[5] - z[6] - z[7] - z[8] - z[9] - z[10] - z[11] - z[12] - z[13] - z[14] - z[15] - z[16] - z[17] - z[18] - z[19] - z[20] - z[21] - z[22] - z[23] - z[24] - z[25] - z[26] - z[27] - z[28] - z[29] - z[30] - z[31] - z[32] - z[33] - z[34] - z[35] - z[36] - z[37] - z[38] - z[39] - z[40] - z[41] - z[42] - z[43] - z[44] - z[45] - z[46] - z[47] - z[48] - z[49] - z[50] - z[51] - z[52] - z[53] - z[54] - z[55] - z[56] - z[57] - z[58] - z[59] - z[60] - BJ - BK - BL - BM - BN - BO - BP - BQ - BR - BS - BT - BU - BV - BW - BX - BY - BZ - CA - CB - CC - CD - CE - CF - CG - CH - CI - CJ - CK - CL - CM - CN - CO - CP - CQ - CR - CS - CT - CU - CV - CW - CX - CY - CZ - DA - DB - DC - DD - DE - DF - DG - DH - DI - DJ - DK - DL - DM - DN - DO - DP - DQ - DR - DS - DT - DU - DV - DW - DX - DY - DZ - EA - EB"
                            }
                        },
                        "type": "surface",
                        "zsrc": "Paul04:0:83e77e,45f7b8,321cb2,dbe8ca,0c4b66,f5a42c,922b92,1dc66a,673041,335359,725d4e,df42fc,291393,a522d0,77fc06,ecdadb,544690,5efe95,efc3b7,abdb79,eac71d,38845c,5af025,0286b5,ebf834,56021a,0783f1,ae0dbe,036ba7,37a0fd,9c38a1,4da6a6,f402f0,962fc9,fb776b,d542a9,99d20d,0c64d3,794fac,4d1559,b17c41,7200c6,a4b99b,d9c949,ddd5c6,ce249f,8fbcfa,2dfae6,30ab01,8f0ffd,cd8404,c32ce1,51f20a,f04cb5,a742b4,14dde2,0a6b08,30c5bf,499194,ec6e44,a33db9,f2dc15,d985af,f5d4d0,230cf3,3afe68,edea88,e99c48,d29170,43f233,dce000,faf988,ba4620,fb9d16,f8cbfe,dd9a4a,2056f8,73d702,2945ad,1c58bb,faa4ff,edeba1,1c3901,abda25,952c48,2bcc3b,fbfde4,945172,b1cf4f,187fdc,1dab54,3bd393,cf2cc1,959b80,c82d79,a2a5f5,dd30e7,7c7e26,a6f1e8,43e6c8,057db5,8ce18f,fbc37c,272fc9,8e3780,8ba6a2,2592bb,6d62c6,a974e2,8e0835,73719d,0fb0d6,eddcf9,837570,e01c68,4ca5e9,8b09ba,dc428e,9c9953,50d900,13ee53,a25bde,728ba0,d1262d,a89f1a,76c456,555229,b1d7b9,39218d,e875e2,9a2dc2,6c42d3",
                        "cauto": true,
                        "inherit": true,
                        "colorbar": {
                            "title": {
                                "text": "volcano"
                            }
                        },
                        "lighting": {
                            "ambient": 0.25,
                            "diffuse": 1,
                            "fresnel": 1.1500000000000001,
                            "specular": 1.48,
                            "roughness": 0.59
                        },
                        "hoverinfo": "x+y+z",
                        "showscale": true,
                        "colorscale": [
                            [
                                0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1,
                                "#f0f921"
                            ]
                        ],
                        "reversescale": false,
                        "lightposition": {
                            "x": 4000,
                            "y": 10000.000000000015
                        },
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "range": [
                                0,
                                113
                            ],
                            "showline": false,
                            "tickmode": "auto",
                            "zeroline": true,
                            "autorange": false,
                            "showbackground": false
                        },
                        "yaxis": {
                            "range": [
                                0,
                                131
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "log",
                            "title": {
                                "text": "volcano"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 0.6732623134831494,
                                "y": 0.9451726839711457,
                                "z": 0.5587821182579588
                            },
                            "center": {
                                "x": 0.013981197695623965,
                                "y": -0.060411961120584334,
                                "z": 0.020530085672520463
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1.1998168358380539,
                            "y": 0.8334605500859763,
                            "z": 1
                        }
                    },
                    "margin": {
                        "r": 80
                    },
                    "autosize": true,
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Paul04",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 09:15:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Paul04",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T08:33:38.328161Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~louislinyx/1.embed",
            "fid": "louislinyx:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/louislinyx:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/louislinyx/1/2_B2KPTI1H5WJLT1WP2O4RX1P4DHOVYI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/louislinyx/1/8_XVL1CXI6KWUS0KPG9CNBC4W3P96VZV.png",
                "list-thumb": "https://api.plotly.com/v2/files/louislinyx:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/louislinyx:1",
                "plots": "https://api.plotly.com/v2/plots/louislinyx:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=louislinyx"
            },
            "owner": "louislinyx",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~louislinyx/1/",
            "world_readable": true,
            "date_modified": "2025-08-08T08:33:38.340Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~louislinyx/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Freq",
                                "y": "Amp"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "louislinyx:0:c04913",
                        "ysrc": "louislinyx:0:39fb5b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "20dB Bandwidth"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            12.806700400000002,
                            14.31142226
                        ],
                        "title": {
                            "text": "CF 13.56 MHz 691pts Span 1.5 MHz"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            17,
                            117
                        ],
                        "title": {
                            "text": "dBuV/m"
                        },
                        "autorange": false
                    },
                    "shapes": [],
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 13.556730234941906,
                            "y": 88.16833510812589,
                            "ax": -10,
                            "ay": -17,
                            "font": {
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "M1 13.56000 MHz 88.39 dBuV/m",
                            "showarrow": true
                        },
                        {
                            "x": 13.339938394539118,
                            "y": 69.0069566323919,
                            "ax": -57,
                            "ay": -13,
                            "font": {
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "T1 13.3400 MHz 68.84 dBuV/m",
                            "showarrow": true
                        },
                        {
                            "x": 13.777018717931837,
                            "y": 70.13804160757238,
                            "ax": 88,
                            "ay": -20,
                            "font": {
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "T2 13.7800 MHz 68.57 dBuV/m"
                        },
                        {
                            "x": 13.109159983787762,
                            "y": 116.34309623430961,
                            "ax": -388,
                            "ay": -243,
                            "text": "<b>Ref Level 117.00 dBuV/m RBW 10kHz VBW 30kHz Att 30 dB SWT 1.5 ms Mode Sweep</b>",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~louislinyx",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 08:32:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "louislinyx",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T07:55:09.363978Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~XueCui/12.embed",
            "fid": "XueCui:12",
            "filename": "收入增长倍数_vs_服务费比率",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/XueCui/12/9_SKLGP7R89GVI40NBNZLICVLONBZKZX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/XueCui/12/2_AJRAOPGAOSYDA8HCRDV5XB5KFF3SXB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/XueCui/12/8_ICFN2RNSZ9CNW4PYHNWQC048IBT51R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/XueCui/12/9_SKLGP7R89GVI40NBNZLICVLONBZKZX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/XueCui:12",
                "plots": "https://api.plotly.com/v2/plots/XueCui:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=XueCui"
            },
            "owner": "XueCui",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~XueCui/12/",
            "world_readable": true,
            "date_modified": "2025-08-08T07:55:09.378Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~XueCui/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "XueCui:11:9357d2",
                        "ysrc": "XueCui:11:00d0f9",
                        "fillcolor": "rgba(255,0,0,0.15)",
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255,0,0)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "销售成本占比66.87%",
                        "type": "scatter",
                        "xsrc": "XueCui:11:f47edf",
                        "ysrc": "XueCui:11:c768fb",
                        "customdatasrc": "XueCui:11:a6682a",
                        "hovertemplate": "销售成本占比66.87%: 服务费占比 = %{y:.2f}%<br>对应服务费金额 = %{customdata:.2f} 万<extra></extra>"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "XueCui:11:b50a63",
                        "ysrc": "XueCui:11:ac9553",
                        "fillcolor": "rgba(0,0,255,0.15)",
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(0,0,255)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "销售成本占比60%",
                        "type": "scatter",
                        "xsrc": "XueCui:11:c0eca1",
                        "ysrc": "XueCui:11:c54229",
                        "customdatasrc": "XueCui:11:523fb7",
                        "hovertemplate": "销售成本占比60%: 服务费占比 = %{y:.2f}%<br>对应服务费金额 = %{customdata:.2f} 万<extra></extra>"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "XueCui:11:18a0ec",
                        "ysrc": "XueCui:11:8368ff",
                        "fillcolor": "rgba(0,128,0,0.15)",
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(0,128,0)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "销售成本占比55%",
                        "type": "scatter",
                        "xsrc": "XueCui:11:8bce8a",
                        "ysrc": "XueCui:11:a44e88",
                        "customdatasrc": "XueCui:11:3de058",
                        "hovertemplate": "销售成本占比55%: 服务费占比 = %{y:.2f}%<br>对应服务费金额 = %{customdata:.2f} 万<extra></extra>"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "XueCui:11:9581df",
                        "ysrc": "XueCui:11:724b45",
                        "fillcolor": "rgba(255,165,0,0.15)",
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255,165,0)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "销售成本占比50%",
                        "type": "scatter",
                        "xsrc": "XueCui:11:8d0097",
                        "ysrc": "XueCui:11:f14ca5",
                        "customdatasrc": "XueCui:11:5f0ae9",
                        "hovertemplate": "销售成本占比50%: 服务费占比 = %{y:.2f}%<br>对应服务费金额 = %{customdata:.2f} 万<extra></extra>"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "color": "rgba(0,0,0,0)"
                        },
                        "mode": "lines",
                        "name": "阴影部分为盈利区",
                        "type": "scatter",
                        "xsrc": "XueCui:11:29470a",
                        "ysrc": "XueCui:11:68ead1",
                        "fillcolor": "rgba(128,128,128,0.15)",
                        "showlegend": true
                    },
                    {
                        "line": {
                            "dash": "dash",
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "服务费占比",
                        "type": "scatter",
                        "xsrc": "XueCui:11:60b199",
                        "ysrc": "XueCui:11:6677f6",
                        "hoverinfo": "skip",
                        "showlegend": true
                    }
                ],
                "layout": {
                    "title": {
                        "text": "收入增长倍数与服务费比率的关系(不同销售成本占比)"
                    },
                    "xaxis": {
                        "title": {
                            "text": "收入增长倍数 k"
                        },
                        "tickformat": ".2f"
                    },
                    "yaxis": {
                        "range": [
                            -5,
                            60
                        ],
                        "title": {
                            "text": "服务费比率 (%)"
                        },
                        "tickformat": ".2f"
                    },
                    "margin": {
                        "b": 80,
                        "l": 60,
                        "r": 40,
                        "t": 80
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "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.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "annotations": [
                        {
                            "x": 2,
                            "y": 48.55,
                            "font": {
                                "size": 12,
                                "color": "black"
                            },
                            "text": "服务费占比50.55%",
                            "xanchor": "center",
                            "yanchor": "top",
                            "showarrow": false
                        },
                        {
                            "x": 0.98,
                            "y": 0.98,
                            "font": {
                                "size": 12,
                                "color": "gray"
                            },
                            "text": "注:基于2025上半年收入160万",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "left",
                            "xanchor": "right",
                            "yanchor": "top",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~XueCui",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-08 05:54:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "XueCui",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-08-08T03:10:03.776145Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Yingbin/5.embed",
            "fid": "Yingbin:5",
            "filename": "flow-信道估计性能对比曲线",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Yingbin/5/9_Z805XY4KH0EVLLOE7WYUL3OC9DJ2CY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Yingbin/5/2_2SNV8CFM0BWHTRGKKIRA82TFP2IJIF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Yingbin/5/8_EU3QLG5PBW5XIKWBNG5S767WKAF83Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Yingbin/5/9_Z805XY4KH0EVLLOE7WYUL3OC9DJ2CY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Yingbin:5",
                "plots": "https://api.plotly.com/v2/plots/Yingbin:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=Yingbin"
            },
            "owner": "Yingbin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Yingbin/5/",
            "world_readable": true,
            "date_modified": "2025-08-08T03:14:27.588Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Yingbin/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "marker": {
                                    "size": "C",
                                    "color": "B"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "MMSE",
                        "type": "scattergl",
                        "xsrc": "Yingbin:4:52069c",
                        "ysrc": "Yingbin:4:bf6b7e",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "C",
                                    "color": "B"
                                }
                            },
                            "size": 11,
                            "symbol": "square",
                            "sizeref": null,
                            "sizemode": "area",
                            "maxdisplayed": 0
                        },
                        "opacity": 0.96,
                        "visible": true,
                        "hovertemplate": ""
                    },
                    {
                        "fill": "none",
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "marker": {
                                    "size": "C",
                                    "color": "B"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "LS",
                        "type": "scatter",
                        "xsrc": "Yingbin:4:52069c",
                        "ysrc": "Yingbin:4:3241b4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "C",
                                    "color": "B"
                                }
                            },
                            "size": 11,
                            "symbol": "square",
                            "sizeref": null,
                            "sizemode": "area",
                            "maxdisplayed": 0
                        },
                        "opacity": 1,
                        "stackgroup": null,
                        "hovertemplate": ""
                    },
                    {
                        "fill": "none",
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D",
                                "marker": {
                                    "size": "C",
                                    "color": "B"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "deeplearning",
                        "type": "scatter",
                        "xsrc": "Yingbin:4:52069c",
                        "ysrc": "Yingbin:4:67cf0c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "C",
                                    "color": "B"
                                }
                            },
                            "size": 11,
                            "symbol": "square",
                            "sizeref": null,
                            "sizemode": "area",
                            "maxdisplayed": 0
                        },
                        "opacity": 1,
                        "stackgroup": null,
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20,
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.48,
                        "font": {
                            "size": 23
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -13.140204865556978,
                            38.14020486555698
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 25
                            },
                            "text": "信噪比(dB)"
                        },
                        "anchor": "y",
                        "domain": [
                            0.125,
                            0.75
                        ],
                        "mirror": "ticks",
                        "nticks": 11,
                        "showgrid": true,
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": true,
                        "gridcolor": "rgb(189, 191, 196)",
                        "linecolor": "rgb(12, 40, 61)",
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -13.179214936208133,
                                38.17921493620813
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(195, 195, 204)",
                        "zerolinewidth": 1,
                        "spikethickness": 1,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -42.18818661229059,
                            13.616331717290592
                        ],
                        "ticks": "",
                        "title": {
                            "text": "NMSE(dB)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 10,
                        "showgrid": true,
                        "showline": false,
                        "autorange": true,
                        "gridcolor": "rgb(198, 201, 206)",
                        "linecolor": "rgb(12, 40, 61)",
                        "showspikes": true,
                        "zerolinecolor": "rgb(195, 198, 204)",
                        "zerolinewidth": 1
                    },
                    "legend": {
                        "x": 0.511693585602215,
                        "y": 0.9584245076586433
                    },
                    "margin": {
                        "t": 80,
                        "pad": 10
                    },
                    "modebar": {
                        "color": "rgba(134, 132, 132, 0.3)",
                        "bgcolor": "rgba(249, 245, 245, 0.5)",
                        "activecolor": "rgba(54, 9, 30, 0.7)",
                        "orientation": "h"
                    },
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "dragmode": "select",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event",
                    "hovermode": "x",
                    "uniformtext": {
                        "mode": false
                    },
                    "plot_bgcolor": "rgb(241, 240, 240)",
                    "paper_bgcolor": "rgb(247, 247, 247)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Yingbin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-07 09:07:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Yingbin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}