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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTIxKzEzJTNBNDElM0EwMi42MzQwNTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0yMSsxNSUzQTMxJTNBMDEuMDUwNTg2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-21T15:31:01.050586Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rf1212/11.embed",
            "fid": "rf1212:11",
            "filename": "S2A1L",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rf1212/11/9_UDHV34RTZZ5PXKMFGNEWV0MVK8UZQN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rf1212/11/2_Z0VSH7IGO3BHBBVXH4UGEHFM5JR06R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/11/8_WVQ5JFLJK98CA8DYAWNPZJEUVIZ24N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/11/9_UDHV34RTZZ5PXKMFGNEWV0MVK8UZQN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rf1212:11",
                "plots": "https://api.plotly.com/v2/plots/rf1212:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=rf1212"
            },
            "owner": "rf1212",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rf1212/11/",
            "world_readable": true,
            "date_modified": "2024-04-21T17:12:13.722Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rf1212/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "Electric guitar",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HC",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HS",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HC",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HS",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HC",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HS",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1St",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "K",
                                "z": "J"
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:24c2c9",
                        "ysrc": "rf1212:8:a73daf",
                        "zsrc": "rf1212:8:07455e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Q",
                                "y": "S",
                                "z": "R"
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:380cfb",
                        "ysrc": "rf1212:8:1016b9",
                        "zsrc": "rf1212:8:0d0fe7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Y",
                                "y": "AA",
                                "z": "Z"
                            }
                        },
                        "mode": "markers",
                        "name": "S2StL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:1c964a",
                        "ysrc": "rf1212:8:b93c1a",
                        "zsrc": "rf1212:8:929115"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2StR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "AG",
                                "y": "AI",
                                "z": "AH"
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:f19510",
                        "ysrc": "rf1212:8:e7ca89",
                        "zsrc": "rf1212:8:60d2fc",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "AO",
                                "y": "AQ",
                                "z": "AP"
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:6f62cf",
                        "ysrc": "rf1212:8:220529",
                        "zsrc": "rf1212:8:d4fabe",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HSL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "z": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "BGVL",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:bb4351",
                        "ysrc": "rf1212:8:55809f",
                        "zsrc": "rf1212:8:33a781"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "BGVR",
                        "type": "scatter3d"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                4
                            ],
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 0.09013323768905954,
                                "y": -2.0726225313881512,
                                "z": 0.13498836284230442
                            },
                            "center": {
                                "x": 0.09067657516041036,
                                "y": 0.11467630523844366,
                                "z": -0.14768932352447456
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Question #3 "
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rf1212",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-20 03:15:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rf1212",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T15:28:36.125105Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Paul182/1.embed",
            "fid": "Paul182:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Paul182/1/9_12POQK4V2KGRW99I310R8UF0TFBAKG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Paul182/1/2_OFSNH81E7YJWHXGUZRAFM0DZSZVHMY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Paul182/1/8_2NWGVFUHTDLR29ZUEDPWTODQMQEIA8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Paul182/1/9_12POQK4V2KGRW99I310R8UF0TFBAKG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Paul182:1",
                "plots": "https://api.plotly.com/v2/plots/Paul182:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Paul182"
            },
            "owner": "Paul182",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Paul182/1/",
            "world_readable": true,
            "date_modified": "2024-04-21T15:28:36.138Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Paul182/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "UNIVERSITIES",
                                "y": "TOTAL"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Paul182:0:3474a1",
                        "ysrc": "Paul182:0:912a49",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            12.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            10293437524.210526
                        ],
                        "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/~Paul182",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 15:00:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Paul182",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T15:00:37.522380Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rf1212/10.embed",
            "fid": "rf1212:10",
            "filename": "S1B",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rf1212/10/9_1U4G6UCGCIZSDJSFXMAX5WFYT2W7UE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rf1212/10/2_9VYCS8CW8AGA6QZYZA7YKTY6EOL5JD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/10/8_WWZ8N3QA374DMPZHXZXZIY6CMQGKVG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/10/9_1U4G6UCGCIZSDJSFXMAX5WFYT2W7UE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rf1212:10",
                "plots": "https://api.plotly.com/v2/plots/rf1212:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=rf1212"
            },
            "owner": "rf1212",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rf1212/10/",
            "world_readable": true,
            "date_modified": "2024-04-21T17:12:13.722Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rf1212/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "z": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Electric guitar",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:bb4351",
                        "ysrc": "rf1212:8:55809f",
                        "zsrc": "rf1212:8:33a781"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "G",
                                "z": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HC",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:7263de",
                        "ysrc": "rf1212:8:c9cdaa",
                        "zsrc": "rf1212:8:051d14"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "K",
                                "z": "J"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HS",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:24c2c9",
                        "ysrc": "rf1212:8:a73daf",
                        "zsrc": "rf1212:8:07455e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "O",
                                "z": "N"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HC",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:d60fca",
                        "ysrc": "rf1212:8:e998c0",
                        "zsrc": "rf1212:8:ac2787",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Q",
                                "y": "S",
                                "z": "R"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HS",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:380cfb",
                        "ysrc": "rf1212:8:1016b9",
                        "zsrc": "rf1212:8:0d0fe7",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "U",
                                "y": "W",
                                "z": "V"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HC",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:64191d",
                        "ysrc": "rf1212:8:eec07b",
                        "zsrc": "rf1212:8:cdf6fe",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Y",
                                "y": "AA",
                                "z": "Z"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HS",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:1c964a",
                        "ysrc": "rf1212:8:b93c1a",
                        "zsrc": "rf1212:8:929115",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "AC",
                                "y": "AE",
                                "z": "AD"
                            }
                        },
                        "mode": "markers",
                        "name": "S1St",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:fe1b88",
                        "ysrc": "rf1212:8:12e0f5",
                        "zsrc": "rf1212:8:be187f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2StL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2StR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HSL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                4
                            ],
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.6181085090579825,
                                "y": -1.2785569937364318,
                                "z": 0.037382706561578355
                            },
                            "center": {
                                "x": 0.03186248269049927,
                                "y": -0.007893033450281531,
                                "z": -0.10676733105942107
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1.0137003325955667,
                            "y": 0.8109602660764534,
                            "z": 1.2164403991146802
                        }
                    },
                    "title": {
                        "text": "Question #3"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rf1212",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-20 03:15:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rf1212",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T14:55:39.110252Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rf1212/9.embed",
            "fid": "rf1212:9",
            "filename": "S1A",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rf1212/9/9_AY824GARHFKRKGKN7KQWJP888QVRMF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rf1212/9/2_PB9DCHR56093YQ4J2312SG4HTMXWWS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/9/8_YIJO2RDJUBFFVEY1YVB4C5X00G0DA1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/9/9_AY824GARHFKRKGKN7KQWJP888QVRMF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rf1212:9",
                "plots": "https://api.plotly.com/v2/plots/rf1212:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=rf1212"
            },
            "owner": "rf1212",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~rf1212/9/",
            "world_readable": true,
            "date_modified": "2024-04-21T17:12:13.722Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rf1212/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "z": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "Electric guitar",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:bb4351",
                        "ysrc": "rf1212:8:55809f",
                        "zsrc": "rf1212:8:33a781"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "G",
                                "z": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HC",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:7263de",
                        "ysrc": "rf1212:8:c9cdaa",
                        "zsrc": "rf1212:8:051d14"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "K",
                                "z": "J"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT1HS",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:24c2c9",
                        "ysrc": "rf1212:8:a73daf",
                        "zsrc": "rf1212:8:07455e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "O",
                                "z": "N"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HC",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:d60fca",
                        "ysrc": "rf1212:8:e998c0",
                        "zsrc": "rf1212:8:ac2787",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Q",
                                "y": "S",
                                "z": "R"
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT2HS",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:380cfb",
                        "ysrc": "rf1212:8:1016b9",
                        "zsrc": "rf1212:8:0d0fe7",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HC",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S1MT3HS",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "AC",
                                "y": "AE",
                                "z": "AD"
                            }
                        },
                        "mode": "markers",
                        "name": "S1St",
                        "type": "scatter3d",
                        "xsrc": "rf1212:8:fe1b88",
                        "ysrc": "rf1212:8:12e0f5",
                        "zsrc": "rf1212:8:be187f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT1HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2StL",
                        "type": "scatter3d"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2StR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT2HSR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HSL",
                        "type": "scatter3d",
                        "scene": "scene"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "",
                                "z": ""
                            }
                        },
                        "mode": "markers",
                        "name": "S2MT3HCR",
                        "type": "scatter3d",
                        "scene": "scene"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                2
                            ],
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                4
                            ],
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.8617567054394462,
                                "y": -1.1789353197706829,
                                "z": 0.10034473286679488
                            },
                            "center": {
                                "x": 0.063295351072546,
                                "y": 0.05969936914766337,
                                "z": -0.20869253762054232
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1.0137003325955667,
                            "y": 0.8109602660764534,
                            "z": 1.2164403991146802
                        }
                    },
                    "title": {
                        "text": "Question #3"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rf1212",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-20 03:15:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rf1212",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T14:53:50.326061Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~denisesales12/1.embed",
            "fid": "denisesales12:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/denisesales12/1/9_K6HWBTBLZ84MZBMZJZOF8J8FFP2QDV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/denisesales12/1/2_QI5L3M1IDEY6A17N44R31AHSHB8KX9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/denisesales12/1/8_JD1RBT3LZO6S0KGFQ4259XWHZ9HZHX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/denisesales12/1/9_K6HWBTBLZ84MZBMZJZOF8J8FFP2QDV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/denisesales12:1",
                "plots": "https://api.plotly.com/v2/plots/denisesales12:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=denisesales12"
            },
            "owner": "denisesales12",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~denisesales12/1/",
            "world_readable": true,
            "date_modified": "2024-04-21T14:53:50.336Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~denisesales12/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "TABLE 1",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Intensity",
                        "type": "scatter",
                        "xsrc": "denisesales12:0:4161ff",
                        "ysrc": "denisesales12:0:2e1c28"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Patient's Concentration Log"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            60
                        ],
                        "title": {
                            "text": "Minutes since Dose"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.07166666666666668,
                            1.4383333333333335
                        ],
                        "title": {
                            "text": "Concentrationin mg/L"
                        },
                        "autorange": true,
                        "showspikes": 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/~denisesales12",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 14:53:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "denisesales12",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T14:41:33.853106Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~elab/62.embed",
            "fid": "elab:62",
            "filename": "Cntry_perform",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/elab/62/9_NT0WLUNDA56DBR2K8L5DYKZNC8G8RN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/elab/62/2_DB6SV5X9V4QVTQE9OTR2JZ96OL6JQN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elab/62/8_7C759ZJ0NXX7S9RSBS5NU2R152QQ67.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/elab/62/9_NT0WLUNDA56DBR2K8L5DYKZNC8G8RN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/elab:62",
                "plots": "https://api.plotly.com/v2/plots/elab:62",
                "parent": "https://api.plotly.com/v2/folders/home?user=elab"
            },
            "owner": "elab",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 91,
            "web_url": "https://chart-studio.plotly.com/~elab/62/",
            "world_readable": true,
            "date_modified": "2024-04-21T14:57:46.137Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~elab/62/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "name": "",
                        "type": "choropleth",
                        "zsrc": "elab:64:37499e",
                        "coloraxis": "coloraxis",
                        "hovertextsrc": "elab:64:b2d699",
                        "locationmode": "country names",
                        "locationssrc": "elab:64:5e5e3f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Country=%{location}<br>Return=%{z}<extra></extra>"
                    }
                ],
                "layout": {
                    "geo": {
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        },
                        "showocean": true,
                        "oceancolor": "LightBlue",
                        "resolution": 50,
                        "coastlinecolor": "grey",
                        "showcoastlines": true
                    },
                    "width": 1000,
                    "height": 600,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "autosize": false,
                    "template": {
                        "layout": {
                            "annotations": [
                                {
                                    "x": 0.5,
                                    "y": 0.5,
                                    "font": {
                                        "size": 100,
                                        "color": "gold"
                                    },
                                    "name": "draft watermark",
                                    "text": "ELAB",
                                    "xref": "paper",
                                    "yref": "paper",
                                    "opacity": 0.3,
                                    "showarrow": false,
                                    "textangle": -30
                                }
                            ]
                        }
                    },
                    "coloraxis": {
                        "cmid": 0,
                        "colorbar": {
                            "title": {
                                "text": "Return"
                            }
                        },
                        "colorscale": [
                            [
                                0.0,
                                "red"
                            ],
                            [
                                0.5,
                                "white"
                            ],
                            [
                                1.0,
                                "green"
                            ]
                        ]
                    }
                }
            },
            "height": 600,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~elab",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-11 05:29:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "elab",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T14:25:02.341073Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ethan.hunt389/1.embed",
            "fid": "ethan.hunt389:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ethan.hunt389/1/9_YUGDHEWPHW2HYYD0WXLD2CT89HM9SK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ethan.hunt389/1/2_OLIBHY193CF8K1R9XCHOPXTN86KB6A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ethan.hunt389/1/8_NBD5ZTVRQA1PLPPSOGSZ4JT89RDU5Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ethan.hunt389/1/9_YUGDHEWPHW2HYYD0WXLD2CT89HM9SK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ethan.hunt389:1",
                "plots": "https://api.plotly.com/v2/plots/ethan.hunt389:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ethan.hunt389"
            },
            "owner": "ethan.hunt389",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ethan.hunt389/1/",
            "world_readable": true,
            "date_modified": "2024-04-21T14:25:02.353Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ethan.hunt389/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "World",
                        "type": "scatter",
                        "xsrc": "ethan.hunt389:0:6897de",
                        "ysrc": "ethan.hunt389:0:5ad564"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "China",
                        "type": "scatter",
                        "xsrc": "ethan.hunt389:0:6897de",
                        "ysrc": "ethan.hunt389:0:1b0469",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Asia",
                        "type": "scatter",
                        "xsrc": "ethan.hunt389:0:6897de",
                        "ysrc": "ethan.hunt389:0:399635",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "IS",
                        "type": "scatter",
                        "xsrc": "ethan.hunt389:0:6897de",
                        "ysrc": "ethan.hunt389:0:e35a80",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "india",
                        "type": "scatter",
                        "xsrc": "ethan.hunt389:0:6897de",
                        "ysrc": "ethan.hunt389:0:66c94a",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1850,
                            2022
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -2709444444.444444,
                            56879444444.44444
                        ],
                        "autorange": true
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ethan.hunt389",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 14:24:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ethan.hunt389",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T14:06:27.679570Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nafizmuhammad/1.embed",
            "fid": "nafizmuhammad:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nafizmuhammad/1/9_1TIDYE3I0YVV9AG45IOMMORFOX9L6J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nafizmuhammad/1/2_RG9Q57S82J1YH7MI57CXDHQKCQ6HKS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nafizmuhammad/1/8_EBI3VVJMLBJJI3P6KKLT4NVX9W4QXU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nafizmuhammad/1/9_1TIDYE3I0YVV9AG45IOMMORFOX9L6J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nafizmuhammad:1",
                "plots": "https://api.plotly.com/v2/plots/nafizmuhammad:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=nafizmuhammad"
            },
            "owner": "nafizmuhammad",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~nafizmuhammad/1/",
            "world_readable": true,
            "date_modified": "2024-04-21T14:06:27.690Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nafizmuhammad/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "name": "Pneumonia",
                        "type": "box",
                        "xsrc": "nafizmuhammad:0:39520e",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B"
                            }
                        },
                        "name": "Normal",
                        "type": "box",
                        "xsrc": "nafizmuhammad:0:b8943d",
                        "boxpoints": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C"
                            }
                        },
                        "name": "Lung Opacity",
                        "type": "box",
                        "xsrc": "nafizmuhammad:0:61886e",
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Sebaran Tingkat Sebaran Ketajaman Data Citra Rontgen"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            239.9434889959765,
                            239.9434889959765
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            2.0816430020283976,
                            2.0816430020283976
                        ],
                        "autorange": 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/~nafizmuhammad",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 14:06:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nafizmuhammad",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T13:59:39.602684Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Rhinohorn/5.embed",
            "fid": "Rhinohorn:5",
            "filename": "LOG-05-n75 test",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/5/9_JJ65A7A8DN8OM23656KLVQN0PZMNLJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/5/2_HJL3VQG2V3ZDVQJQ8SQEMSK50L89D9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/5/8_I5ZXHYELSR3SRG7E2H1V2ZIKG0XJ3N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/5/9_JJ65A7A8DN8OM23656KLVQN0PZMNLJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Rhinohorn:5",
                "plots": "https://api.plotly.com/v2/plots/Rhinohorn:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=Rhinohorn"
            },
            "owner": "Rhinohorn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Rhinohorn/5/",
            "world_readable": true,
            "date_modified": "2024-04-21T13:59:39.612Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Rhinohorn/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Marker"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:f9b668",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "TIME"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:e14e8f",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "RPM"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:57fbfc",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Specified mbar"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:4d42fb",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Actual mbar"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:afd678",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Duty Cycle"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:4:06de5b",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            0,
                            842
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -252.11111111111117,
                            4810.111111111111
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Rhinohorn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 06:46:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Rhinohorn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-21T13:41:02.634051Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Rhinohorn/3.embed",
            "fid": "Rhinohorn:3",
            "filename": "Log4 n75 test",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/3/9_KVNOZKI25629HADJQLIF3IC91X3GHP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/3/2_W0G4LPJTYH8K9S1HRU6OGW5NDNJ08E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/3/8_198SBZBS5R9HX64HARRQDD4TS0B24D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Rhinohorn/3/9_KVNOZKI25629HADJQLIF3IC91X3GHP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Rhinohorn:3",
                "plots": "https://api.plotly.com/v2/plots/Rhinohorn:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Rhinohorn"
            },
            "owner": "Rhinohorn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Rhinohorn/3/",
            "world_readable": true,
            "date_modified": "2024-04-21T13:41:02.644Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Rhinohorn/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Marker"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:6e46b9",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "TIME"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:b953f4",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "RPM"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:f0fcf7",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Specified mbar"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:576fac",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Actual mbar"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:57d5c4",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Duty Cycle"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:9b78eb",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Marker"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "ysrc": "Rhinohorn:2:6e46b9",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            274.7682089552239,
                            400.94373134328356
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "autorange": false,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -223.9277777777778,
                            4748.627777777778
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Rhinohorn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-21 06:46:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Rhinohorn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}