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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI4KzEwJTNBNDQlM0E1NC41NTQyNTIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yOCsxMSUzQTIzJTNBMjYuMDA3MTE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-28T11:23:26.007119Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~koslowto/48.embed",
            "fid": "koslowto:48",
            "filename": "Nachrichtenzahl",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/koslowto/48/9_QRMID5ZI5DVV907WS00ETXNQAWQK3N.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/koslowto/48/2_3X20TSOX9ZRBXW7PZZHF2QHX1MF8PL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/koslowto/48/8_7PAW663JNJJXL56WM20MZ7EI2U167X.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/koslowto/48/9_QRMID5ZI5DVV907WS00ETXNQAWQK3N.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/koslowto:48",
                "plots": "https://api.plotly.com/v2/plots/koslowto:48",
                "parent": "https://api.plotly.com/v2/folders/home?user=koslowto"
            },
            "owner": "koslowto",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~koslowto/48/",
            "world_readable": true,
            "date_modified": "2024-03-28T17:53:52.594Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~koslowto/48/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Monat",
                                "y": "Nachrichtenanzahl"
                            }
                        },
                        "mode": "lines",
                        "type": "bar",
                        "xsrc": "koslowto:47:c98f38",
                        "ysrc": "koslowto:47:e33bb2",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Nachrichtenzahl pro Monat seit November 2019"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            52.5
                        ],
                        "title": {
                            "text": "Monat"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1640
                        ],
                        "title": {
                            "text": "Anzahl der versendeten Nachrichten"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~koslowto",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/YVB7UAIRAECOTJ0BFGGGSGKAN50KQU.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-03-23 16:28:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "koslowto",
                "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-03-28T11:20:04.557207Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Amuthan/1.embed",
            "fid": "Amuthan:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Amuthan/1/9_3SBWT39PKWVSO17O3UAXKY19DOOSBX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Amuthan/1/2_C9DES54KE7X530QAUT2VRSL9D4NG6N.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Amuthan/1/8_ENX0JEWMAU0WJZEIVZTB2C0YUSSI3X.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Amuthan/1/9_3SBWT39PKWVSO17O3UAXKY19DOOSBX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Amuthan:1",
                "plots": "https://api.plotly.com/v2/plots/Amuthan:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Amuthan"
            },
            "owner": "Amuthan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Amuthan/1/",
            "world_readable": true,
            "date_modified": "2024-03-28T11:20:46.832Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Amuthan/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Amuthan:0:807bfe",
                        "ysrc": "Amuthan:0:ec92d3"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "FTIR "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            234.65073529411765,
                            4215.349264705882
                        ],
                        "title": {
                            "text": "WAVELENGTH CM-1"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            51.87688915375447,
                            102.70311084624554
                        ],
                        "title": {
                            "text": "TRANSMITTANCE %"
                        },
                        "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/~Amuthan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 11:19:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Amuthan",
                "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-03-28T11:06:11.234311Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~evess.1/1.embed",
            "fid": "evess.1:1",
            "filename": "Principles analytics",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/evess.1/1/9_D9WW2M5HJF7UCG1HGL1E187JLGR2EJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/evess.1/1/2_T5HW0H59635RSC09LEF0VZ8LVPJVFN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/evess.1/1/8_RX402RHM7HQXQ5BHXVRK0DADZSPORB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/evess.1/1/9_D9WW2M5HJF7UCG1HGL1E187JLGR2EJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/evess.1:1",
                "plots": "https://api.plotly.com/v2/plots/evess.1:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=evess.1"
            },
            "owner": "evess.1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~evess.1/1/",
            "world_readable": true,
            "date_modified": "2024-03-28T11:06:11.244Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~evess.1/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "Team ",
                                "values": "Average Length of Service (months m/year’s yr)"
                            }
                        },
                        "mode": "markers",
                        "type": "pie",
                        "labelssrc": "evess.1:0:af9a8c",
                        "valuessrc": "evess.1:0:29170e"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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/~evess.1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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": "2024-03-28 11:05:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "evess.1",
                "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-03-28T11:04:11.942022Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esthersun/15.embed",
            "fid": "Esthersun:15",
            "filename": "linechart_counts",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Esthersun/15/9_04WAQAH1M1KESHZXQUY8VANSI5DT6W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Esthersun/15/2_OGU80O6E73EK911RQVWJUYBNJWZ9T1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esthersun/15/8_3VLV103A7BKZITZ5Z0SLTW78M2W6R7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Esthersun/15/9_04WAQAH1M1KESHZXQUY8VANSI5DT6W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esthersun:15",
                "plots": "https://api.plotly.com/v2/plots/Esthersun:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esthersun"
            },
            "owner": "Esthersun",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~Esthersun/15/",
            "world_readable": true,
            "date_modified": "2024-03-28T11:04:11.952Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esthersun/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "Esthersun:14:d39fbd",
                        "ysrc": "Esthersun:14:fbef8b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "Month=%{x}<br>Count=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Counts of Videos About \"Princess Catherine\""
                    },
                    "xaxis": {
                        "title": {
                            "text": "Month"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Count"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esthersun",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 08:29:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esthersun",
                "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-03-28T11:01:27.971015Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Esthersun/13.embed",
            "fid": "Esthersun:13",
            "filename": "barchart_sentiment",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Esthersun:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Esthersun:13/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Esthersun/13/8_FI7AHL3W5G8WGHJIP8CAYPZA4SW4C2.png",
                "list-thumb": "https://api.plotly.com/v2/files/Esthersun:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Esthersun:13",
                "plots": "https://api.plotly.com/v2/plots/Esthersun:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=Esthersun"
            },
            "owner": "Esthersun",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~Esthersun/13/",
            "world_readable": true,
            "date_modified": "2024-03-28T11:01:27.981Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Esthersun/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "labelssrc": "Esthersun:12:f2e7b5",
                        "valuessrc": "Esthersun:12:706a63",
                        "showlegend": true,
                        "legendgroup": "",
                        "hovertemplate": "sentiment=%{label}<br>Count=%{value}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Proportion of Public Sentiment"
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "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
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Esthersun",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 08:29:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Esthersun",
                "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-03-28T10:52:47.020568Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/140.embed",
            "fid": "asongupup:140",
            "filename": "Ch1_40hz50uv",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asongupup:140/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asongupup:140/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/asongupup:140/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/asongupup:140/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:140",
                "plots": "https://api.plotly.com/v2/plots/asongupup:140",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~asongupup/140/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-28T10:52:47.795Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/140/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:141:250ed5",
                        "ysrc": "asongupup:141:971f13",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:141:e95966",
                        "ysrc": "asongupup:141:bee69e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:141:250ed5",
                        "ysrc": "asongupup:141:bcebb8",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:141:e95966",
                        "ysrc": "asongupup:141:2c8735",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "scene3": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene4": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            41.198
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            41.198
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y3",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y4",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -61.6908146966475,
                            -13.4557501620949
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -62.2141252204024,
                            -13.5954150639227
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x3",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x4",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.297329545454545,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.297329545454545,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.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-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-28T10:52:25.719096Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/138.embed",
            "fid": "asongupup:138",
            "filename": "Ch1_4hz_50uv",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asongupup:138/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asongupup:138/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/asongupup:138/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/asongupup:138/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:138",
                "plots": "https://api.plotly.com/v2/plots/asongupup:138",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~asongupup/138/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-28T10:52:26.685Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/138/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:139:988070",
                        "ysrc": "asongupup:139:405cb3",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:139:f618bd",
                        "ysrc": "asongupup:139:078c8d",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:139:988070",
                        "ysrc": "asongupup:139:f50020",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:139:f618bd",
                        "ysrc": "asongupup:139:3a4d81",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "scene3": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene4": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            40
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            40
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y3",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y4",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -64.5741897313821,
                            -14.7968548294133
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -64.5995334939673,
                            -14.9156908350883
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x3",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-60",
                            "-50",
                            "-40",
                            "-30",
                            "-20"
                        ],
                        "tickvals": [
                            -60,
                            -50,
                            -40,
                            -30,
                            -20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            80
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x4",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "20",
                            "40",
                            "60",
                            "80"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            60,
                            80
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.297329545454545,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.297329545454545,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.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-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-28T10:51:51.765058Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/136.embed",
            "fid": "asongupup:136",
            "filename": "Ch1_04hz_50uv",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asongupup:136/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asongupup:136/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/asongupup:136/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/asongupup:136/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:136",
                "plots": "https://api.plotly.com/v2/plots/asongupup:136",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~asongupup/136/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-28T10:51:52.585Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/136/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:137:25f5e5",
                        "ysrc": "asongupup:137:a10f78",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:137:6a7d0d",
                        "ysrc": "asongupup:137:8f0740",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:137:25f5e5",
                        "ysrc": "asongupup:137:c4b5a6",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:137:6a7d0d",
                        "ysrc": "asongupup:137:221c91",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "scene3": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene4": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            45.342
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            45.342
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y3",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30",
                            "40"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30,
                            40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y4",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -114.150358933253,
                            -29.5713579143712
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-100",
                            "-80",
                            "-60",
                            "-40"
                        ],
                        "tickvals": [
                            -100,
                            -80,
                            -60,
                            -40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            150
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -113.973837832339,
                            -29.6215277531692
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x3",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-100",
                            "-80",
                            "-60",
                            "-40"
                        ],
                        "tickvals": [
                            -100,
                            -80,
                            -60,
                            -40
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            150
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x4",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50",
                            "100",
                            "150"
                        ],
                        "tickvals": [
                            0,
                            50,
                            100,
                            150
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.297329545454545,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.297329545454545,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.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-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-28T10:46:50.395763Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asongupup/134.embed",
            "fid": "asongupup:134",
            "filename": "ad1299_Ch1_fu150mv",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/asongupup/134/9_AKMYR9MEDJ2CDAEAJXG68M1W7UODNR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/asongupup/134/2_53VA0OI2KZJUHB3P96Y5KX5LTK72QA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/134/8_XTI1CIAJQI2FS66QO5EPJ8ZUKP048M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/asongupup/134/9_AKMYR9MEDJ2CDAEAJXG68M1W7UODNR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asongupup:134",
                "plots": "https://api.plotly.com/v2/plots/asongupup:134",
                "parent": "https://api.plotly.com/v2/folders/home?user=asongupup"
            },
            "owner": "asongupup",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Raw eeg",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~asongupup/134/raw-eeg/",
            "world_readable": true,
            "date_modified": "2024-03-28T10:46:51.023Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asongupup/134/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:135:b80a0f",
                        "ysrc": "asongupup:135:8a79c5",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0,113.985,188.955)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:135:100289",
                        "ysrc": "asongupup:135:1b1558",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(0,113.985,188.955)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:135:b80a0f",
                        "ysrc": "asongupup:135:d310af",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255,0,0)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "asongupup:135:100289",
                        "ysrc": "asongupup:135:34c94e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 3.6,
                            "color": "rgb(255,0,0)"
                        },
                        "visible": true,
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Raw eeg",
                    "width": 840,
                    "height": 630,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "scene1": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene2": {
                        "domain": {
                            "x": [
                                0.13,
                                0.464659090909091
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "scene3": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.583837209302326,
                                0.925
                            ]
                        }
                    },
                    "scene4": {
                        "domain": {
                            "x": [
                                0.570340909090909,
                                0.905
                            ],
                            "y": [
                                0.11,
                                0.451162790697674
                            ]
                        }
                    },
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            30
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y1",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y2",
                        "domain": [
                            0.13,
                            0.464659090909091
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            30
                        ],
                        "ticks": "inside",
                        "title": "Time (s)",
                        "anchor": "y3",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "10",
                            "20",
                            "30"
                        ],
                        "tickvals": [
                            0,
                            10,
                            20,
                            30
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            300
                        ],
                        "ticks": "inside",
                        "title": "Frequency (Hz)",
                        "anchor": "y4",
                        "domain": [
                            0.570340909090909,
                            0.905
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -500,
                            1000
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x1",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-500",
                            "0",
                            "500",
                            "1000"
                        ],
                        "tickvals": [
                            -500,
                            0,
                            500,
                            1000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            400
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x2",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300,
                            400
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -500,
                            1000
                        ],
                        "ticks": "inside",
                        "title": "uV",
                        "anchor": "x3",
                        "domain": [
                            0.583837209302326,
                            0.925
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "-500",
                            "0",
                            "500",
                            "1000"
                        ],
                        "tickvals": [
                            -500,
                            0,
                            500,
                            1000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            400
                        ],
                        "ticks": "inside",
                        "title": "Amplitude",
                        "anchor": "x4",
                        "domain": [
                            0.11,
                            0.451162790697674
                        ],
                        "mirror": "ticks",
                        "ticklen": 2.81113636363636,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100",
                            "200",
                            "300",
                            "400"
                        ],
                        "tickvals": [
                            0,
                            100,
                            200,
                            300,
                            400
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(38.250000,,38.250000,38.250000,0.150000)",
                        "linecolor": "rgb(38.250000,38.250000,38.250000)",
                        "linewidth": 1,
                        "tickangle": 0,
                        "tickcolor": "rgb(38.250000,38.250000,38.250000)",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 9.9,
                            "color": "rgb(38.250000,38.250000,38.250000)",
                            "family": "Arial, sans-serif"
                        },
                        "exponentformat": "none",
                        "showticklabels": true
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "titlefont": {
                        "color": "rgba(0,0,0,0)"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.297329545454545,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.297329545454545,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Raw FFT",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.935,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        },
                        {
                            "x": 0.737670454545455,
                            "y": 0.461162790697674,
                            "font": {
                                "size": 9.9,
                                "color": "rgb(0,0,0)",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Filtered eeg",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "center",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "borderpad": 3,
                            "showarrow": false,
                            "textangle": 0,
                            "bordercolor": "rgba(0,0,0,0)",
                            "borderwidth": 0.5
                        }
                    ],
                    "paper_bgcolor": "rgb(255,255,255)"
                }
            },
            "height": 630,
            "width": 840,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asongupup",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.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-02-27 02:46:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asongupup",
                "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-03-28T10:44:54.554252Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~subbulakshmi030/1.embed",
            "fid": "subbulakshmi030:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/subbulakshmi030/1/9_KO1SFEAIZDF7NWTWYQX8ADC2LN2JER.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/subbulakshmi030/1/2_OO9Z8EJZ3UY68ODB8JXM512AZVCL5B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/subbulakshmi030/1/8_BRU32OWLW7LONHMMIHZ40DFKPYXP5P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/subbulakshmi030/1/9_KO1SFEAIZDF7NWTWYQX8ADC2LN2JER.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/subbulakshmi030:1",
                "plots": "https://api.plotly.com/v2/plots/subbulakshmi030:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=subbulakshmi030"
            },
            "owner": "subbulakshmi030",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~subbulakshmi030/1/",
            "world_readable": true,
            "date_modified": "2024-03-28T10:44:54.564Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~subbulakshmi030/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "252198",
                        "meta": {
                            "columnNames": {
                                "x": "setosa_Petal Width (cm)",
                                "y": "setosa_Petal Length (cm)"
                            }
                        },
                        "mode": "markers",
                        "name": "Setosa",
                        "type": "barpolar",
                        "xsrc": "subbulakshmi030:0:5ed319",
                        "ysrc": "subbulakshmi030:0:e5bbce",
                        "marker": {
                            "line": {
                                "color": "rgb(102, 102, 102)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#66c2a5"
                        },
                        "boxpoints": false
                    },
                    {
                        "uid": "bc471b",
                        "meta": {
                            "columnNames": {
                                "x": "versicolor_Petal Width (cm)",
                                "y": "versicolor_Petal Length (cm)"
                            }
                        },
                        "mode": "markers",
                        "name": "Versicolor",
                        "type": "barpolar",
                        "xsrc": "subbulakshmi030:0:3a871b",
                        "ysrc": "subbulakshmi030:0:5a0c5a",
                        "marker": {
                            "line": {
                                "color": "rgb(102, 102, 102)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#fc8d62"
                        },
                        "visible": true
                    },
                    {
                        "uid": "9b06a1",
                        "meta": {
                            "columnNames": {
                                "x": "virginica_Petal Width (cm)",
                                "y": "virginica_Petal Length (cm)"
                            }
                        },
                        "mode": "markers",
                        "name": "Virginica",
                        "type": "barpolar",
                        "xsrc": "subbulakshmi030:0:db02f6",
                        "ysrc": "subbulakshmi030:0:058442",
                        "marker": {
                            "line": {
                                "color": "rgb(102, 102, 102)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "#8da0cb"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "range": [
                                0,
                                1
                            ],
                            "autorange": true
                        },
                        "angularaxis": {}
                    },
                    "width": 1532,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1.3313739957370059,
                            2.568626004262994
                        ],
                        "title": {
                            "text": "Width"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            4.339209225700165,
                            7.060790774299836
                        ],
                        "title": {
                            "text": "Length"
                        },
                        "autorange": true
                    },
                    "height": 1006,
                    "legend": {
                        "x": 0.02228484386900228,
                        "y": 1.0157384987893463
                    },
                    "mapbox": {
                        "zoom": 2.2413408295497117,
                        "pitch": 0,
                        "center": {
                            "lat": 10.073049834550176,
                            "lon": 5.077465557456321
                        },
                        "bearing": 0
                    },
                    "autosize": true
                }
            },
            "height": 1006,
            "width": 1532,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~subbulakshmi030",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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": "2024-03-28 10:44:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "subbulakshmi030",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}