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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE2KzIxJTNBMTAlM0E0NC4zODQzMDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNisyMSUzQTI1JTNBNDUuMDcxNDAxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-16T21:25:45.071401Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/6.embed",
            "fid": "manela1:6",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/6/9_JT2Q1QLLQ7JR7KREV61KYRW48ECLDD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/6/2_GIN01MN29G52YGXT9JVQKCYIYTAHC6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/6/8_YSAHEGA5APVLNL3EZM7PDX0CBU1OG8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/6/9_JT2Q1QLLQ7JR7KREV61KYRW48ECLDD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:6",
                "plots": "https://api.plotly.com/v2/plots/manela1:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/6/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:25:45.080Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:22:34.356875Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/5.embed",
            "fid": "manela1:5",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/5/9_KT6M11S391C16FV6GG5XVYSSO3B66C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/5/2_V0HPU3EWJWRSWP2ZHBA0EAS08E9GQW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/5/8_2AZE98Q7JEBPD5SA3T06JNE3ZN6KYK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/5/9_KT6M11S391C16FV6GG5XVYSSO3B66C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:5",
                "plots": "https://api.plotly.com/v2/plots/manela1:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/5/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:22:34.366Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:20:45.892775Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/4.embed",
            "fid": "manela1:4",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/4/9_ZOZ7G3VLRWDVYZIEL7MFM2SAI5FKLF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/4/2_IOO0M0NCJRV0L674ZCL8JVFQSRB13M.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/4/8_YLRB0901K83TH3WWVO19FDNXIG80QL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/4/9_ZOZ7G3VLRWDVYZIEL7MFM2SAI5FKLF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:4",
                "plots": "https://api.plotly.com/v2/plots/manela1:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/4/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:20:45.903Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:16:45.801532Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/3.embed",
            "fid": "manela1:3",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/3/9_GL0SPE0390W3J9E9B0CBC7SP80P49C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/3/2_4LHZBINK1ZH9KWNA69U4A1BCMTF4DX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/3/8_G0ZQ3RZB2VFF9G6UPYE0YL6T31WPXX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/3/9_GL0SPE0390W3J9E9B0CBC7SP80P49C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:3",
                "plots": "https://api.plotly.com/v2/plots/manela1:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/3/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:16:45.811Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:16:42.673939Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/2.embed",
            "fid": "manela1:2",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/2/9_7T44GIR6MS3HETPU0GVV6B1UG1BE89.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/2/2_HWKWCB0MEX4541TBI4U166AVNZHO1G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/2/8_G9FFDZUVOGM7DPF9QP2BRJPHA2VJEQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/2/9_7T44GIR6MS3HETPU0GVV6B1UG1BE89.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:2",
                "plots": "https://api.plotly.com/v2/plots/manela1:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/2/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:16:42.683Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:16:40.333773Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/1.embed",
            "fid": "manela1:1",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/1/9_JRWMHNF3F49K5GDTU30L7CAKLFCETZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/1/2_WNGI89DA87KFT38PH0T7M1AEOC1ITT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/1/8_YP4IZNXVYSO4TRTF7T77B9CT4YI7QN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/1/9_JRWMHNF3F49K5GDTU30L7CAKLFCETZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:1",
                "plots": "https://api.plotly.com/v2/plots/manela1:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/1/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:16:40.343Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:14:17.016411Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Wiggly32/2.embed",
            "fid": "Wiggly32:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Wiggly32/2/9_PNT1FG4HFESS1S11VFYPZ8NZBN74Z9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Wiggly32/2/2_MMWDQ44VC28R1H799HRVXYNCZGJ4K5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Wiggly32/2/8_LGDD7IJ9U6VI2TSL9F9ZLZMR3XPHEW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Wiggly32/2/9_PNT1FG4HFESS1S11VFYPZ8NZBN74Z9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Wiggly32:2",
                "plots": "https://api.plotly.com/v2/plots/Wiggly32:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Wiggly32"
            },
            "owner": "Wiggly32",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Wiggly32/2/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:14:17.028Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Wiggly32/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "723fe8",
                        "fill": "none",
                        "line": {
                            "shape": "spline",
                            "smoothing": 1.3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Preorder iter",
                                "text": "",
                                "marker": {
                                    "color": ""
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Preorder iter",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:8aa322",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "Lvl-order rec"
                                }
                            },
                            "color": "rgb(255, 127, 14)",
                            "sizeref": 0.028149617325,
                            "sizemode": "area"
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(255, 127, 14)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "rgb(255, 127, 14)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoveron": "points",
                        "hoverinfo": "x+y",
                        "showlegend": true,
                        "connectgaps": false,
                        "hovertemplate": "",
                        "autocolorscale": false
                    },
                    {
                        "uid": "49a49f",
                        "line": {
                            "shape": "spline",
                            "smoothing": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Preorder rec"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Preorder rec",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:e24eb2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "x+y",
                        "stackgroup": null,
                        "connectgaps": false
                    },
                    {
                        "uid": "4de92c",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Postorder iter"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Postorder iter",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:ca3c9f",
                        "marker": {
                            "color": "#00cc96"
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "58a0b3",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Postorder rec"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Postorder rec",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:4266f3",
                        "stackgroup": null
                    },
                    {
                        "uid": "0a99ad",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Inorder iter"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Inorder iter",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:0de98e",
                        "stackgroup": null
                    },
                    {
                        "uid": "99ebdd",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Inorder rec"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Inorder rec",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:7fbf1e",
                        "stackgroup": null
                    },
                    {
                        "uid": "7eacf6",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Lvl-order iter",
                                "marker": {
                                    "color": ""
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Lvlorder iter",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:b178a3",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "Preorder iter"
                                }
                            },
                            "color": "#fecb52"
                        },
                        "stackgroup": null,
                        "autocolorscale": false
                    },
                    {
                        "uid": "d03401",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Tree size",
                                "y": "Lvl-order rec"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Lvlorder rec",
                        "type": "scatter",
                        "xsrc": "Wiggly32:1:2cff20",
                        "ysrc": "Wiggly32:1:02a6cf",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Experiment for traversal methods for different BST sizes and iterations"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -61213.877551020414,
                            1061223.8775510204
                        ],
                        "ticks": "",
                        "title": {
                            "text": "Tree size"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "fixedrange": false,
                        "showspikes": false,
                        "tickformat": "",
                        "rangeslider": {
                            "range": [
                                -61200.028501628665,
                                1061210.0285016287
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showexponent": "all",
                        "exponentformat": "none",
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 100,
                        "range": [
                            -19954801.5195277,
                            287885270.5195277
                        ],
                        "tick0": 30000,
                        "title": {
                            "text": "Elapsed time (ns)"
                        },
                        "nticks": 7,
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "fixedrange": false,
                        "showspikes": false,
                        "exponentformat": "none"
                    },
                    "bargap": 0.38,
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "shapes": [],
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Wiggly32",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:14:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Wiggly32",
                "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-16T21:13:12.737706Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~manela1/0.embed",
            "fid": "manela1:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/manela1/0/9_C5T30S0ZRBUC9YNUCS5FSBCWHFVHSY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/manela1/0/2_1X51H8EWLXNUJRD85K1MBB6SPEF1JO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/0/8_T45GWFBACSECKNCS1W1GXZELTPJH2Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/manela1/0/9_C5T30S0ZRBUC9YNUCS5FSBCWHFVHSY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/manela1:0",
                "plots": "https://api.plotly.com/v2/plots/manela1:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=manela1"
            },
            "owner": "manela1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~manela1/0/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:13:12.747Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~manela1/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "wordcloud",
                        "words": [
                            "files",
                            "local",
                            "allow",
                            "browser",
                            "extensions",
                            "settings",
                            "security",
                            "chrome",
                            "browsers",
                            "convert",
                            "firefox",
                            "method",
                            "generally",
                            "discouraged",
                            "because",
                            "configure",
                            "here’s",
                            "might",
                            "different",
                            "google",
                            "reviewadjust",
                            "start",
                            "access",
                            "testing",
                            "adjust",
                            "about",
                            "config",
                            "loading",
                            "there",
                            "available",
                            "bypass",
                            "these",
                            "restrictions",
                            "unblock",
                            "useful",
                            "during",
                            "development",
                            "recommended",
                            "paths",
                            "blobs",
                            "setting",
                            "server",
                            "viable",
                            "dealing",
                            "could",
                            "using",
                            "javascript"
                        ],
                        "marker": {
                            "colors": "random"
                        },
                        "opacity": 0.8,
                        "wordCount": [
                            4,
                            4,
                            3,
                            3,
                            3,
                            2,
                            2,
                            2,
                            2,
                            2,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1,
                            1
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~manela1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-16 21:07:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "manela1",
                "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-16T21:11:22.235041Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SriniNeru/65.embed",
            "fid": "SriniNeru:65",
            "filename": "Plot 65",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/65/9_YWNA07S73ZNO1EAY94YSEAISKBJTUR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/65/2_RQEWA1URI1NQAT34E5E6NHZEST2PIK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/65/8_97P75FUIK5ZKE09BX8LK4SDSPOTSLM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/65/9_YWNA07S73ZNO1EAY94YSEAISKBJTUR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SriniNeru:65",
                "plots": "https://api.plotly.com/v2/plots/SriniNeru:65",
                "parent": "https://api.plotly.com/v2/folders/home?user=SriniNeru"
            },
            "owner": "SriniNeru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~SriniNeru/65/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:11:22.245Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SriniNeru/65/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "serial 0.01",
                        "type": "scatter",
                        "xsrc": "SriniNeru:64:f2bf24",
                        "ysrc": "SriniNeru:64:5f9f07"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "p = 2 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:64:f2bf24",
                        "ysrc": "SriniNeru:64:6c486b",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "p = 4 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:64:f2bf24",
                        "ysrc": "SriniNeru:64:29e895",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "p = 8 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:64:f2bf24",
                        "ysrc": "SriniNeru:64:623d72",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "PHI vs X (y = 0)  Red black"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1.0000000000000018
                        ],
                        "title": {
                            "text": "x"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.0074235555555555565,
                            0.14104755555555554
                        ],
                        "title": {
                            "text": "phi"
                        },
                        "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/~SriniNeru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.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": "2022-10-04 05:08:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SriniNeru",
                "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-16T21:10:44.384308Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SriniNeru/63.embed",
            "fid": "SriniNeru:63",
            "filename": "Plot 63",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/63/9_Y4JLYZP97JGETXKG7J2W0FBC3I69PS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/63/2_0YSITZJB8L5OI4KJ4GNII5653FNHWW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/63/8_4NVHPOVHANEAKMAN8968O1HG10J24S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SriniNeru/63/9_Y4JLYZP97JGETXKG7J2W0FBC3I69PS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SriniNeru:63",
                "plots": "https://api.plotly.com/v2/plots/SriniNeru:63",
                "parent": "https://api.plotly.com/v2/folders/home?user=SriniNeru"
            },
            "owner": "SriniNeru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~SriniNeru/63/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:19:46.210Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SriniNeru/63/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "serial&nbsp;",
                        "type": "scatter",
                        "xsrc": "SriniNeru:62:0580e4",
                        "ysrc": "SriniNeru:62:f635c9"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "2 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:62:0580e4",
                        "ysrc": "SriniNeru:62:b5523a",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "4 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:62:0580e4",
                        "ysrc": "SriniNeru:62:96cf45",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "8 threads",
                        "type": "scatter",
                        "xsrc": "SriniNeru:62:0580e4",
                        "ysrc": "SriniNeru:62:948d6f",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "PHI vs Y at x = 0 Red Black "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -1,
                            1.0000000000000018
                        ],
                        "title": {
                            "text": "y"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.002168977777777778,
                            0.04121057777777778
                        ],
                        "title": {
                            "text": "phi"
                        },
                        "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/~SriniNeru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.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": "2022-10-04 05:08:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SriniNeru",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}