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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE3KzA2JTNBMjElM0EzMC4yNTE0MDclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNyswNiUzQTU3JTNBNDQuNjYyNzY4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-17T06:57:44.662768Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~longyuet96/2.embed",
            "fid": "longyuet96:2",
            "filename": "VSD Frequency(3F)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/longyuet96/2/9_IQ4V0NBJNARFX1DIOIUXEJINLMTL8J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/longyuet96/2/2_A75B5DZ52GQ7YRUBT91CT8OIJ4QK0K.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/longyuet96/2/8_RX63B7S1BKOPLUP2ENO6TDUTNS92VD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/longyuet96/2/9_IQ4V0NBJNARFX1DIOIUXEJINLMTL8J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/longyuet96:2",
                "plots": "https://api.plotly.com/v2/plots/longyuet96:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=longyuet96"
            },
            "owner": "longyuet96",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~longyuet96/2/",
            "world_readable": true,
            "date_modified": "2024-04-17T07:16:59.952Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~longyuet96/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Timestamp",
                                "y": "VSD Control - BACnet Trend Log"
                            }
                        },
                        "mode": "lines",
                        "name": "VSD Control",
                        "type": "scatter",
                        "xsrc": "longyuet96:1:6b11bb",
                        "ysrc": "longyuet96:1:c87cc9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Timestamp",
                                "y": "VSD Frequency - BACnet Trend Log"
                            }
                        },
                        "mode": "lines",
                        "name": "VSD Frequency",
                        "type": "scatter",
                        "xsrc": "longyuet96:1:6b11bb",
                        "ysrc": "longyuet96:1:6f677d",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "VSD Frequency(3F)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            207
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.1544444444444455,
                            105.53444444444445
                        ],
                        "title": {
                            "text": "Frequency(Hz)"
                        },
                        "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/~longyuet96",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-14 14:44:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "longyuet96",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:56:41.910178Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/139.embed",
            "fid": "peter.capcara:139",
            "filename": "Plot 139",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/139/9_D22EU5K3GYGRPOGOF0FKR173GQ83AH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/139/2_1QROI4OKEU4WPUDL2I90429KNWEAGD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/139/8_Z78LIF2HOSG6MK8BGII2MT8L3979I1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/139/9_D22EU5K3GYGRPOGOF0FKR173GQ83AH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:139",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:139",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/139/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:56:41.921Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/139/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:138:524a98",
                        "bsrc": "peter.capcara:138:42dff8",
                        "csrc": "peter.capcara:138:0b1818",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:138:06190f",
                        "bsrc": "peter.capcara:138:4622d5",
                        "csrc": "peter.capcara:138:0b9d30",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:138:627288",
                        "bsrc": "peter.capcara:138:b57b89",
                        "csrc": "peter.capcara:138:afe3bd",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:138:8333e4",
                        "bsrc": "peter.capcara:138:c74817",
                        "csrc": "peter.capcara:138:db0b7f",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:138:b66d1e",
                        "bsrc": "peter.capcara:138:eaa175",
                        "csrc": "peter.capcara:138:2b2bed",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:138:225400",
                        "bsrc": "peter.capcara:138:f3458c",
                        "csrc": "peter.capcara:138:0cb745",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:138:095a81",
                        "bsrc": "peter.capcara:138:d4c26b",
                        "csrc": "peter.capcara:138:6a3071",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:138:1a37dc",
                        "bsrc": "peter.capcara:138:8498c3",
                        "csrc": "peter.capcara:138:919cac",
                        "mode": "markers",
                        "name": "3264",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:1d2c46",
                        "bsrc": "peter.capcara:138:ec3228",
                        "csrc": "peter.capcara:138:c3d1d4",
                        "mode": "markers",
                        "name": "38",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:5c5202",
                        "bsrc": "peter.capcara:138:4f3de1",
                        "csrc": "peter.capcara:138:5a7796",
                        "mode": "markers",
                        "name": "37",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:cef406",
                        "bsrc": "peter.capcara:138:402359",
                        "csrc": "peter.capcara:138:fbd4e3",
                        "mode": "markers",
                        "name": "36",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:820304",
                        "bsrc": "peter.capcara:138:e8ecd8",
                        "csrc": "peter.capcara:138:1faa62",
                        "mode": "markers",
                        "name": "35",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:530e59",
                        "bsrc": "peter.capcara:138:3719f6",
                        "csrc": "peter.capcara:138:e89241",
                        "mode": "markers",
                        "name": "34",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:90a317",
                        "bsrc": "peter.capcara:138:3acf77",
                        "csrc": "peter.capcara:138:5c216f",
                        "mode": "markers",
                        "name": "33",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:d11963",
                        "bsrc": "peter.capcara:138:325b4b",
                        "csrc": "peter.capcara:138:0dea0c",
                        "mode": "markers",
                        "name": "32",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:f035a3",
                        "bsrc": "peter.capcara:138:cdba91",
                        "csrc": "peter.capcara:138:1104bd",
                        "mode": "markers",
                        "name": "31",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:138:129d6c",
                        "bsrc": "peter.capcara:138:8240ac",
                        "csrc": "peter.capcara:138:14a755",
                        "mode": "markers",
                        "name": "phd",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:138:afe282"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:138:04ce68"
                        },
                        "columnwidthsrc": "peter.capcara:138:341811"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "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
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:55:28.087315Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/137.embed",
            "fid": "peter.capcara:137",
            "filename": "Plot 137",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/137/9_5C1RVR2WXBYIT02EH33JXKZOMV13QE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/137/2_ENR06WU3S6QWLSW2SBIZ0GEZWKGVZ6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/137/8_3EIIGPI8AT1TWLQX447XWNK8N545TQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/137/9_5C1RVR2WXBYIT02EH33JXKZOMV13QE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:137",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:137",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/137/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:55:28.099Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/137/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:136:5a7200",
                        "bsrc": "peter.capcara:136:d867eb",
                        "csrc": "peter.capcara:136:3aa497",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:136:a24067",
                        "bsrc": "peter.capcara:136:5b1ddc",
                        "csrc": "peter.capcara:136:efa2ee",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:136:f4dce9",
                        "bsrc": "peter.capcara:136:d42670",
                        "csrc": "peter.capcara:136:68d6d8",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:136:bb06b7",
                        "bsrc": "peter.capcara:136:078b1b",
                        "csrc": "peter.capcara:136:ae520c",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:136:f0a86a",
                        "bsrc": "peter.capcara:136:ce68e0",
                        "csrc": "peter.capcara:136:3bf69b",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:136:f076cb",
                        "bsrc": "peter.capcara:136:033c26",
                        "csrc": "peter.capcara:136:47fd62",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:136:716d89",
                        "bsrc": "peter.capcara:136:6fc295",
                        "csrc": "peter.capcara:136:1eeb69",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:136:28893a",
                        "bsrc": "peter.capcara:136:6ecd81",
                        "csrc": "peter.capcara:136:157bb0",
                        "mode": "markers",
                        "name": "3264",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:a1d9c7",
                        "bsrc": "peter.capcara:136:0e526a",
                        "csrc": "peter.capcara:136:24c757",
                        "mode": "markers",
                        "name": "38",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:3cb496",
                        "bsrc": "peter.capcara:136:2abaa3",
                        "csrc": "peter.capcara:136:b83d4d",
                        "mode": "markers",
                        "name": "37",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:f277c2",
                        "bsrc": "peter.capcara:136:c3e739",
                        "csrc": "peter.capcara:136:997a81",
                        "mode": "markers",
                        "name": "36",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:0eb327",
                        "bsrc": "peter.capcara:136:fbe4a2",
                        "csrc": "peter.capcara:136:2715aa",
                        "mode": "markers",
                        "name": "35",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:309b71",
                        "bsrc": "peter.capcara:136:d909c1",
                        "csrc": "peter.capcara:136:dc889e",
                        "mode": "markers",
                        "name": "34",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:810a22",
                        "bsrc": "peter.capcara:136:72d870",
                        "csrc": "peter.capcara:136:b63d9d",
                        "mode": "markers",
                        "name": "33",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:2218a5",
                        "bsrc": "peter.capcara:136:1d9298",
                        "csrc": "peter.capcara:136:ec7282",
                        "mode": "markers",
                        "name": "32",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:252618",
                        "bsrc": "peter.capcara:136:72bbab",
                        "csrc": "peter.capcara:136:060987",
                        "mode": "markers",
                        "name": "31",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:136:b1d6bf",
                        "bsrc": "peter.capcara:136:52b9ba",
                        "csrc": "peter.capcara:136:a0c9f8",
                        "mode": "markers",
                        "name": "phd",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:136:761991"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:136:9d6b4c"
                        },
                        "columnwidthsrc": "peter.capcara:136:27ebb2"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "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
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:51:49.978524Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~roudnins/1.embed",
            "fid": "roudnins:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/roudnins/1/9_OM6ZHAAS9EHQADEGV8P3OJVR1X6HZQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/roudnins/1/2_C0U5VTDXDRZL50XSWMOPM12F02FC7U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/roudnins/1/8_Y8VY01BTN0HXFEGBV2FA0HVHJBPBQB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/roudnins/1/9_OM6ZHAAS9EHQADEGV8P3OJVR1X6HZQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/roudnins:1",
                "plots": "https://api.plotly.com/v2/plots/roudnins:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=roudnins"
            },
            "owner": "roudnins",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~roudnins/1/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:51:49.989Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~roudnins/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "723fe8",
                        "meta": {
                            "columnNames": {
                                "x": "radius of curvature",
                                "y": "Displacement5"
                            }
                        },
                        "mode": "lines",
                        "name": "Avg per project",
                        "type": "scatter",
                        "xsrc": "roudnins:0:b64f32",
                        "ysrc": "roudnins:0:cda5e1",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "sizeref": 0.028149617325,
                            "sizemode": "area"
                        },
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "thickness"
                                    }
                                },
                                "type": "groupby",
                                "styles": [
                                    {
                                        "value": {},
                                        "target": "157.71298"
                                    },
                                    {
                                        "value": {},
                                        "target": "134.04389"
                                    },
                                    {
                                        "value": {},
                                        "target": "121.19906"
                                    },
                                    {
                                        "value": {},
                                        "target": "108.11014"
                                    },
                                    {
                                        "value": {},
                                        "target": "96.12427"
                                    },
                                    {
                                        "value": {},
                                        "target": "87.92809"
                                    },
                                    {
                                        "value": {},
                                        "target": "82.36397"
                                    },
                                    {
                                        "value": {},
                                        "target": "76.00153"
                                    },
                                    {
                                        "value": {},
                                        "target": "70.86709"
                                    },
                                    {
                                        "value": {},
                                        "target": "65.03906"
                                    },
                                    {
                                        "value": {},
                                        "target": "61.95837"
                                    },
                                    {
                                        "value": {},
                                        "target": "101.0407"
                                    },
                                    {
                                        "value": {},
                                        "target": "86.27806"
                                    },
                                    {
                                        "value": {},
                                        "target": "76.96283"
                                    },
                                    {
                                        "value": {},
                                        "target": "50.04305"
                                    },
                                    {
                                        "value": {},
                                        "target": "61.54753"
                                    },
                                    {
                                        "value": {},
                                        "target": "56.1425"
                                    },
                                    {
                                        "value": {},
                                        "target": "52.11128"
                                    },
                                    {
                                        "value": {},
                                        "target": "48.20032"
                                    },
                                    {
                                        "value": {},
                                        "target": "44.78959"
                                    },
                                    {
                                        "value": {},
                                        "target": "41.81767"
                                    },
                                    {
                                        "value": {},
                                        "target": "39.09811"
                                    },
                                    {
                                        "value": {},
                                        "target": "69.78802"
                                    },
                                    {
                                        "value": {},
                                        "target": "59.82644"
                                    },
                                    {
                                        "value": {},
                                        "target": "52.678"
                                    },
                                    {
                                        "value": {},
                                        "target": "39.14395"
                                    },
                                    {
                                        "value": {},
                                        "target": "42.5191"
                                    },
                                    {
                                        "value": {},
                                        "target": "38.75336"
                                    },
                                    {
                                        "value": {},
                                        "target": "35.82612"
                                    },
                                    {
                                        "value": {},
                                        "target": "33.1273"
                                    },
                                    {
                                        "value": {},
                                        "target": "30.8161"
                                    },
                                    {
                                        "value": {},
                                        "target": "29.06592"
                                    },
                                    {
                                        "value": {},
                                        "target": "27.56277"
                                    },
                                    {
                                        "value": {},
                                        "target": "50.98851"
                                    },
                                    {
                                        "value": {},
                                        "target": "43.9479"
                                    },
                                    {
                                        "value": {},
                                        "target": "38.65344"
                                    },
                                    {
                                        "value": {},
                                        "target": "30.66007"
                                    },
                                    {
                                        "value": {},
                                        "target": "31.0998"
                                    },
                                    {
                                        "value": {},
                                        "target": "28.37276"
                                    },
                                    {
                                        "value": {},
                                        "target": "26.13292"
                                    },
                                    {
                                        "value": {},
                                        "target": "24.19753"
                                    },
                                    {
                                        "value": {},
                                        "target": "22.82236"
                                    },
                                    {
                                        "value": {},
                                        "target": "21.58628"
                                    },
                                    {
                                        "value": {},
                                        "target": "20.54083"
                                    },
                                    {
                                        "value": {},
                                        "target": "38.79328"
                                    },
                                    {
                                        "value": {},
                                        "target": "33.40771"
                                    },
                                    {
                                        "value": {},
                                        "target": "29.41086"
                                    },
                                    {
                                        "value": {},
                                        "target": "24.32511"
                                    },
                                    {
                                        "value": {},
                                        "target": "23.71508"
                                    },
                                    {
                                        "value": {},
                                        "target": "21.62211"
                                    },
                                    {
                                        "value": {},
                                        "target": "19.92179"
                                    },
                                    {
                                        "value": {},
                                        "target": "18.67873"
                                    },
                                    {
                                        "value": {},
                                        "target": "16.44228"
                                    },
                                    {
                                        "value": {},
                                        "target": "16.7173"
                                    },
                                    {
                                        "value": {},
                                        "target": "15.92804"
                                    },
                                    {
                                        "value": {},
                                        "target": "30.53203"
                                    },
                                    {
                                        "value": {},
                                        "target": "26.29141"
                                    },
                                    {
                                        "value": {},
                                        "target": "23.09195"
                                    },
                                    {
                                        "value": {},
                                        "target": "19.61532"
                                    },
                                    {
                                        "value": {},
                                        "target": "18.66932"
                                    },
                                    {
                                        "value": {},
                                        "target": "17.03562"
                                    },
                                    {
                                        "value": {},
                                        "target": "15.85084"
                                    },
                                    {
                                        "value": {},
                                        "target": "14.8863"
                                    },
                                    {
                                        "value": {},
                                        "target": "13.41073"
                                    },
                                    {
                                        "value": {},
                                        "target": "13.33351"
                                    },
                                    {
                                        "value": {},
                                        "target": "12.71431"
                                    },
                                    {
                                        "value": {},
                                        "target": "24.64382"
                                    },
                                    {
                                        "value": {},
                                        "target": "21.20331"
                                    },
                                    {
                                        "value": {},
                                        "target": "18.65826"
                                    },
                                    {
                                        "value": {},
                                        "target": "16.09777"
                                    },
                                    {
                                        "value": {},
                                        "target": "15.07383"
                                    },
                                    {
                                        "value": {},
                                        "target": "13.86417"
                                    },
                                    {
                                        "value": {},
                                        "target": "12.92551"
                                    },
                                    {
                                        "value": {},
                                        "target": "12.14048"
                                    },
                                    {
                                        "value": {},
                                        "target": "11.11705"
                                    },
                                    {
                                        "value": {},
                                        "target": "10.89768"
                                    },
                                    {
                                        "value": {},
                                        "target": "10.40175"
                                    }
                                ],
                                "groupssrc": "roudnins:0:e39b5c"
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Project reads by the length of the project's title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            10,
                            20
                        ],
                        "title": {
                            "text": "Project title length by characters"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.2177927777777775,
                            165.89693722222222
                        ],
                        "title": {
                            "text": "Average number of project reads"
                        },
                        "autorange": true
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~roudnins",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 06:50:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "roudnins",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:50:15.372176Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ploting34/13.embed",
            "fid": "ploting34:13",
            "filename": "Plot 13",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ploting34/13/9_R6C2GLELDYRBG9WLGNYVCS61FQA0JK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ploting34/13/2_JCFKF179WRLMP6EGHHIIUYJY8Z8DNI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ploting34/13/8_7NNRJS5TQ62QI0S02MQD3UP0VN9CTR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ploting34/13/9_R6C2GLELDYRBG9WLGNYVCS61FQA0JK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ploting34:13",
                "plots": "https://api.plotly.com/v2/plots/ploting34:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=ploting34"
            },
            "owner": "ploting34",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~ploting34/13/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:50:15.385Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ploting34/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "VINST"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:1b165f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "VC"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:e5ca23",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "LCS"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:d01bca",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "LCI"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:dc6178",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "LS"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:59eac6",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DISTMETROS",
                                "y": "LI"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "ploting34:12:8a1751",
                        "ysrc": "ploting34:12:2986d2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "veloidad instantanea"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4986.6635,
                            14959.9905
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            9.66940125444444,
                            15.654539565555554
                        ],
                        "autorange": false
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ploting34",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.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": "2023-12-13 06:35:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ploting34",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:49:24.960961Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peter.capcara/135.embed",
            "fid": "peter.capcara:135",
            "filename": "Plot 135",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/135/9_JJOPQRNRMBC4DHPD50QO7A0TP4JPU6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/135/2_E7FCBQ0OJWXT6N5I246TY83SZS38RU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/135/8_WCBFBUIZJ60MAUGVLP3OUFALFDP6ML.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peter.capcara/135/9_JJOPQRNRMBC4DHPD50QO7A0TP4JPU6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peter.capcara:135",
                "plots": "https://api.plotly.com/v2/plots/peter.capcara:135",
                "parent": "https://api.plotly.com/v2/folders/home?user=peter.capcara"
            },
            "owner": "peter.capcara",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~peter.capcara/135/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:49:24.975Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peter.capcara/135/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a1a8b8",
                        "asrc": "peter.capcara:134:8f7666",
                        "bsrc": "peter.capcara:134:af5ebe",
                        "csrc": "peter.capcara:134:f6c036",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "PD",
                        "text": "PD",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#8dd3c7"
                    },
                    {
                        "uid": "c72344",
                        "asrc": "peter.capcara:134:6fb2a6",
                        "bsrc": "peter.capcara:134:3e9e4d",
                        "csrc": "peter.capcara:134:95047b",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D1",
                        "text": "D1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#ffffb3"
                    },
                    {
                        "uid": "3eab74",
                        "asrc": "peter.capcara:134:a512ff",
                        "bsrc": "peter.capcara:134:441881",
                        "csrc": "peter.capcara:134:a79abc",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "D2",
                        "text": "D2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#bebada"
                    },
                    {
                        "uid": "b9dc9f",
                        "asrc": "peter.capcara:134:8712f7",
                        "bsrc": "peter.capcara:134:88ccbe",
                        "csrc": "peter.capcara:134:57cbd1",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "DT",
                        "text": "DT",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fb8072"
                    },
                    {
                        "uid": "381ad2",
                        "asrc": "peter.capcara:134:184038",
                        "bsrc": "peter.capcara:134:8c808a",
                        "csrc": "peter.capcara:134:54595d",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T1",
                        "text": "T1",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#80b1d3"
                    },
                    {
                        "uid": "8cc163",
                        "asrc": "peter.capcara:134:e66413",
                        "bsrc": "peter.capcara:134:c3552e",
                        "csrc": "peter.capcara:134:1e24d4",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T2",
                        "text": "T2",
                        "type": "scatterternary",
                        "subplot": "ternary",
                        "fillcolor": "#fdb462"
                    },
                    {
                        "uid": "6f33dc",
                        "asrc": "peter.capcara:134:687ed3",
                        "bsrc": "peter.capcara:134:82fee1",
                        "csrc": "peter.capcara:134:69869b",
                        "fill": "toself",
                        "line": {
                            "color": "#444"
                        },
                        "mode": "lines",
                        "name": "T3",
                        "text": "T3",
                        "type": "scatterternary",
                        "opacity": 0.5,
                        "subplot": "ternary",
                        "fillcolor": "#b3de69"
                    },
                    {
                        "asrc": "peter.capcara:134:4d3c73",
                        "bsrc": "peter.capcara:134:98213e",
                        "csrc": "peter.capcara:134:67fa30",
                        "mode": "markers",
                        "name": "3264",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:90cdaf",
                        "bsrc": "peter.capcara:134:fd8b81",
                        "csrc": "peter.capcara:134:64c1ab",
                        "mode": "markers",
                        "name": "38",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:728c84",
                        "bsrc": "peter.capcara:134:271cc7",
                        "csrc": "peter.capcara:134:1cfc20",
                        "mode": "markers",
                        "name": "37",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:8a6c67",
                        "bsrc": "peter.capcara:134:20dbc0",
                        "csrc": "peter.capcara:134:c3ff37",
                        "mode": "markers",
                        "name": "36",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:21f9fb",
                        "bsrc": "peter.capcara:134:c852d7",
                        "csrc": "peter.capcara:134:786754",
                        "mode": "markers",
                        "name": "35",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:fe3656",
                        "bsrc": "peter.capcara:134:be61fa",
                        "csrc": "peter.capcara:134:bd3fb1",
                        "mode": "markers",
                        "name": "34",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:d1d7dc",
                        "bsrc": "peter.capcara:134:fbbed7",
                        "csrc": "peter.capcara:134:294a07",
                        "mode": "markers",
                        "name": "33",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:bebdfe",
                        "bsrc": "peter.capcara:134:b3b035",
                        "csrc": "peter.capcara:134:f4237a",
                        "mode": "markers",
                        "name": "32",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:1cb617",
                        "bsrc": "peter.capcara:134:233de3",
                        "csrc": "peter.capcara:134:366054",
                        "mode": "markers",
                        "name": "31",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "asrc": "peter.capcara:134:9b80ac",
                        "bsrc": "peter.capcara:134:6f607a",
                        "csrc": "peter.capcara:134:70613c",
                        "mode": "markers",
                        "name": "phd",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "blue",
                            "symbol": "diamond"
                        },
                        "subplot": "ternary"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "lavender"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:134:ce9d91"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                0.255
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "paleturquoise"
                            },
                            "align": "left",
                            "valuessrc": "peter.capcara:134:325291"
                        },
                        "columnwidthsrc": "peter.capcara:134:09d4e4"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Duval Triangle for DGA Interpretation"
                    },
                    "height": 1000,
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "CH4(Methane)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H2(Acetylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0.01,
                            "ticks": "outside",
                            "title": {
                                "text": "C2H4(Ethylene)"
                            },
                            "linewidth": 2,
                            "ticksuffix": "%"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.405,
                                1.0
                            ]
                        }
                    },
                    "autosize": true,
                    "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
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peter.capcara",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.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": "2024-04-08 08:11:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peter.capcara",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:45:59.026647Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hwbingpi/1.embed",
            "fid": "hwbingpi:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hwbingpi/1/9_KW87ZW2A3OC3WYDUB5JK8364Y2H8QF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hwbingpi/1/2_UDC4QX3KDBDE2TSGB4XA11T61QMFUP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hwbingpi/1/8_L5S94IDDINEKIERAM08R5MZI1A16GX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hwbingpi/1/9_KW87ZW2A3OC3WYDUB5JK8364Y2H8QF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hwbingpi:1",
                "plots": "https://api.plotly.com/v2/plots/hwbingpi:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=hwbingpi"
            },
            "owner": "hwbingpi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hwbingpi/1/",
            "world_readable": true,
            "date_modified": "2024-04-17T06:48:20.212Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hwbingpi/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": 372.8826,
                        "cmin": -0.1835741,
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "Z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "hwbingpi:0:2dbd83",
                        "ysrc": "hwbingpi:0:520d93",
                        "zsrc": "hwbingpi:0:fd6f01",
                        "cauto": true,
                        "marker": {
                            "size": 1,
                            "opacity": 0.65
                        },
                        "opacity": 0.27,
                        "colorscale": [
                            [
                                0,
                                "#f7fbff"
                            ],
                            [
                                0.125,
                                "#deebf7"
                            ],
                            [
                                0.25,
                                "#c6dbef"
                            ],
                            [
                                0.375,
                                "#9ecae1"
                            ],
                            [
                                0.5,
                                "#6baed6"
                            ],
                            [
                                0.625,
                                "#4292c6"
                            ],
                            [
                                0.75,
                                "#2171b5"
                            ],
                            [
                                0.875,
                                "#08519c"
                            ],
                            [
                                1,
                                "#08306b"
                            ]
                        ],
                        "reversescale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 9
                    },
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "X (mm)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Y (mm)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Z (µm)"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.4053561959720378,
                                "y": -1.401224919403439,
                                "z": 0.865472522779223
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.969665645359258,
                            "y": 0.6199780270947358,
                            "z": 1.663419135364857
                        }
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 12
                        },
                        "text": "Electrochemical Deposition Profile "
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hwbingpi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/62.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-17 06:29:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hwbingpi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:31:38.805038Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xbxb30/9.embed",
            "fid": "xbxb30:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xbxb30/9/9_LOO1ZV34PUQDIZ72CV7O10LARXRMN0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xbxb30/9/2_KVO7Y7D832WLILIIXUV2K8P0EFXFOR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xbxb30/9/8_T3WHQ69DLR9GVR059JH7CC2G0T4F1D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xbxb30/9/9_LOO1ZV34PUQDIZ72CV7O10LARXRMN0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xbxb30:9",
                "plots": "https://api.plotly.com/v2/plots/xbxb30:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=xbxb30"
            },
            "owner": "xbxb30",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~xbxb30/9/",
            "world_readable": true,
            "date_modified": "2024-04-17T22:58:10.051Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xbxb30/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Clados Omicron",
                                "y": "Mutaciones",
                                "z": "S:Y505H - S:Y145D - S:V83A - S:V445P - S:V3G - S:V213G - S:V213E - S:V127F - S:T95I - S:T547K - S:T478K - S:T376A - S:T19I - S:S704L - S:S50L - S:S477N - S:S375F - S:S373P - S:S371L - S:S371F - S:R408S - S:R403K - S:R346T - S:R21T - S:R158G - S:Q954H - S:Q52H - S:Q498R - S:Q493R - S:Q183E - S:Q14R - S:P681H - S:N969K - S:N856K - S:N764K - S:N679K - S:N658S - S:N501Y - S:N460K - S:N440K - S:L981F - S:L452R - S:L452Q - S:L368I - S:L216F - S:L212I - S:K444T - S:K444N - S:K417N - S:K356T - S:I332V - S:H655Y - S:H245N - S:H146Q - S:G496S - S:G446S - S:G339H - S:G339D - S:G252V - S:G142D - S:F490S - S:F486V - S:F486S - S:F486P - S:F456L - S:F157S - S:F157L - S:E484A - S:E180V - S:D796Y - S:D614G - S:D405N - S:D253G - S:A67V - S:A27S - S:A264D"
                            }
                        },
                        "mode": "markers",
                        "type": "heatmap",
                        "xgap": 2,
                        "xsrc": "xbxb30:8:6d9bd5",
                        "ygap": 2,
                        "ysrc": "xbxb30:8:44369d",
                        "zsrc": "xbxb30:8:b943e8,821525,e1793f,fc03cc,65994e,0cfbba,196f35,214bf2,db161d,5d0cc0,e2f9a1,d5b58b,1f4f49,4f69f3,505ff4,fe9608,b35262,6274de,023340,f7ebec,c149a5,b0e9e3,d01d9c,51c09f,af5a23,b4ddaa,6ff73c,8294e2,889d59,fedc5f,df1791,fb5528,8acdf8,64091d,d6c36d,2c53f5,71f1c8,fa93de,aebb7a,c72393,87c020,31aa36,5d3307,440416,7e4a1c,0d09a8,c4fea4,e4067e,db0168,2a9497,11145a,83293d,28b165,c59ef7,46a8e9,3f853b,c25e6c,f9aa70,9f92de,7c26a9,525d24,007153,302ecb,5918c4,0ad689,5d864a,6568b2,6f899e,26e9ed,750696,eb6aed,f643ad,46ebdf,5a0800,49b022,e13b0a",
                        "colorbar": {
                            "x": 0.6800000000000002,
                            "y": 0.5,
                            "len": 1,
                            "ypad": 10,
                            "ticks": "outside",
                            "nticks": 10,
                            "lenmode": "fraction",
                            "thickness": 28,
                            "tickwidth": 2,
                            "borderwidth": 0,
                            "outlinewidth": 2,
                            "thicknessmode": "pixels",
                            "showticklabels": true
                        },
                        "showscale": true,
                        "transpose": true,
                        "colorscale": [
                            [
                                0,
                                "#f7fbff"
                            ],
                            [
                                0.125,
                                "#deebf7"
                            ],
                            [
                                0.25,
                                "#c6dbef"
                            ],
                            [
                                0.375,
                                "#9ecae1"
                            ],
                            [
                                0.5,
                                "#6baed6"
                            ],
                            [
                                0.625,
                                "#4292c6"
                            ],
                            [
                                0.75,
                                "#2171b5"
                            ],
                            [
                                0.875,
                                "#08519c"
                            ],
                            [
                                1,
                                "#08306b"
                            ]
                        ],
                        "hoverongaps": true,
                        "reversescale": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 16,
                        "family": "Arial"
                    },
                    "width": 1200,
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            13.5
                        ],
                        "title": {
                            "font": {
                                "size": 19,
                                "family": "Arial"
                            },
                            "text": "<b>NEXTCLADE CLADES</b>"
                        },
                        "domain": [
                            0,
                            0.625
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            75.5
                        ],
                        "title": {
                            "font": {
                                "size": 19,
                                "family": "Arial"
                            },
                            "text": "<b>SPIKE MUTATIONS</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "height": 1800,
                    "margin": {
                        "b": 88,
                        "l": 96,
                        "r": 94,
                        "pad": 4
                    },
                    "autosize": false,
                    "hoverlabel": {
                        "font": {
                            "size": 14
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 1800,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xbxb30",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-11-06 05:44:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xbxb30",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:28:07.635851Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ashwin_Raikar/10.embed",
            "fid": "Ashwin_Raikar:10",
            "filename": "Histogram 250, 500, 1K",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Ashwin_Raikar:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Ashwin_Raikar/10/2_IDSW7UA3FBF0WA6DYEOCHBUCSCK27C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ashwin_Raikar/10/8_8IN6Q1JNO3UJRL6S7ON3GDP2DT4AL0.png",
                "list-thumb": "https://api.plotly.com/v2/files/Ashwin_Raikar:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ashwin_Raikar:10",
                "plots": "https://api.plotly.com/v2/plots/Ashwin_Raikar:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ashwin_Raikar"
            },
            "owner": "Ashwin_Raikar",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~Ashwin_Raikar/10/",
            "world_readable": true,
            "date_modified": "2024-05-23T06:46:38.396Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ashwin_Raikar/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Params"
                            }
                        },
                        "mode": "markers",
                        "name": "250, 500, 1000 Hz",
                        "type": "histogram",
                        "xsrc": "Ashwin_Raikar:7:e9b01b",
                        "xbins": {
                            "end": 0.7,
                            "start": -0.7
                        },
                        "marker": {
                            "line": {
                                "width": 0.5
                            }
                        },
                        "nbinsx": 100,
                        "visible": true,
                        "histnorm": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Params"
                            }
                        },
                        "name": "1000 Hz",
                        "type": "histogram",
                        "xsrc": "Ashwin_Raikar:9:7ebafa",
                        "xbins": {
                            "end": 0.7,
                            "start": -0.7
                        },
                        "marker": {
                            "line": {
                                "width": 0.5
                            }
                        },
                        "nbinsx": 100,
                        "visible": "legendonly"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Params"
                            }
                        },
                        "name": "500 Hz",
                        "type": "histogram",
                        "xsrc": "Ashwin_Raikar:8:9f41eb",
                        "xbins": {
                            "end": 0.7,
                            "start": -0.7
                        },
                        "marker": {
                            "line": {
                                "width": 0.5
                            }
                        },
                        "nbinsx": 100,
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Params"
                            }
                        },
                        "name": "250 Hz",
                        "type": "histogram",
                        "xsrc": "Ashwin_Raikar:6:1d68f1",
                        "xbins": {
                            "end": 0.7,
                            "start": -0.7
                        },
                        "marker": {
                            "line": {
                                "width": 0.5
                            }
                        },
                        "nbinsx": 100,
                        "opacity": 1,
                        "visible": "legendonly",
                        "cumulative": {
                            "enabled": false
                        },
                        "legendgroup": ""
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Params"
                            }
                        },
                        "name": "Pretrained 500 Hz",
                        "type": "histogram",
                        "xsrc": "Ashwin_Raikar:20:1a0a91",
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Histogram plot of parameter values from the last hidden layer"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1.56,
                            1.35
                        ],
                        "title": {
                            "text": "Parameter values"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            736.8421052631579
                        ],
                        "title": {
                            "text": "Number of occurences"
                        },
                        "autorange": true
                    },
                    "bargap": 0.19999999999999996,
                    "barmode": "overlay",
                    "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"
                    },
                    "bargroupgap": 0
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ashwin_Raikar",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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": "2024-04-16 07:27:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ashwin_Raikar",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-17T06:21:30.251407Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~awerook/18.embed",
            "fid": "awerook:18",
            "filename": "bearingSmooth4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/awerook/18/9_O09CKWZJT02UGZWQV3749H8VHYD5CJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/awerook/18/2_QBZ5M71JRAQLWXQZANS6P80ZKTTTJY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/18/8_GSIEC6VQWNBSQGALZLLXWEJXR2C8UW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/18/9_O09CKWZJT02UGZWQV3749H8VHYD5CJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/awerook:18",
                "plots": "https://api.plotly.com/v2/plots/awerook:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=awerook"
            },
            "owner": "awerook",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~awerook/18/",
            "world_readable": true,
            "date_modified": "2024-04-17T07:06:34.056Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~awerook/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "awerook:19:c42aea",
                        "ysrc": "awerook:19:f2fafb"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~awerook",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-15 21:33:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "awerook",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}