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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE3JTNBMTElM0EzNy4xMDY2MDAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNyUzQTE0JTNBMDUuNjY1NTk1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T17:14:05.665595Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nehapspathak/6.embed",
            "fid": "nehapspathak:6",
            "filename": "phase4_cdf_hashtag_1800.html",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nehapspathak:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nehapspathak/6/2_H3STDLN8S2DMB6RA630W6N8PQNOJV1.png",
                "block-thumb": "https://api.plotly.com/v2/files/nehapspathak:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/nehapspathak:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nehapspathak:6",
                "plots": "https://api.plotly.com/v2/plots/nehapspathak:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=nehapspathak"
            },
            "owner": "nehapspathak",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Most used hahtags",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nehapspathak/6/most-used-hahtags/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:28:26.462Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nehapspathak/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "fe7fa1ba-df51-45b4-b069-aae375a6bb25",
                        "mode": "lines+markers",
                        "name": "INDIAvsPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:06a94a"
                    },
                    {
                        "uid": "10fd9a2c-f6d4-4917-8e90-e197d4f5284e",
                        "mode": "lines+markers",
                        "name": "INDvPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:0e12c4"
                    },
                    {
                        "uid": "21d162e5-73e7-467e-96c5-a89845359fcf",
                        "mode": "lines+markers",
                        "name": "IndiavPakistan",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:d09e82"
                    },
                    {
                        "uid": "8ee4bd8e-40a6-4bc8-b5c8-22cd40292e55",
                        "mode": "lines+markers",
                        "name": "PakVsIndia",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:da0c2d"
                    },
                    {
                        "uid": "261429d0-c626-4972-80df-59e940899a75",
                        "mode": "lines+markers",
                        "name": "indiavspak",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:dcbe42"
                    },
                    {
                        "uid": "40e5c0f6-80ad-4592-afc1-c27c169e345b",
                        "mode": "lines+markers",
                        "name": "INDvsPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:3e8960"
                    },
                    {
                        "uid": "3bd31072-20d4-48a0-98af-f4a6ab529943",
                        "mode": "lines+markers",
                        "name": "CWC19",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:44ce01"
                    },
                    {
                        "uid": "5312bb47-6585-4678-ba53-30730d7391e8",
                        "mode": "lines+markers",
                        "name": "PAKvIND",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:4c7718"
                    },
                    {
                        "uid": "1ef712aa-96e1-4117-a530-b9ec8aa3c71d",
                        "mode": "lines+markers",
                        "name": "PakistanVsIndia",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:c6f0d1"
                    },
                    {
                        "uid": "fa16b080-39bc-4cc8-857d-8a1642d79a49",
                        "mode": "lines+markers",
                        "name": "IndiaVsPakistan",
                        "type": "scatter",
                        "xsrc": "nehapspathak:7:a1c216",
                        "ysrc": "nehapspathak:7:bffc9e"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 18,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "text": "Most used hahtags",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#000000",
                                "family": "Courier New, monospace"
                            },
                            "text": "Time"
                        },
                        "tickfont": {
                            "size": 12,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "tickangle": 45,
                        "automargin": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#000000",
                                "family": "Courier New, monospace"
                            },
                            "text": "Total number of tweets"
                        },
                        "tickfont": {
                            "size": 12,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "automargin": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": -0.25,
                        "font": {
                            "size": 12,
                            "color": "#000",
                            "family": "sans-serif"
                        },
                        "bgcolor": "#E2E2E2",
                        "traceorder": "normal",
                        "bordercolor": "#FFFFFF",
                        "borderwidth": 2,
                        "orientation": "h"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nehapspathak",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-22 16:32:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nehapspathak",
                "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": "2019-06-17T17:13:55.018266Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nehapspathak/4.embed",
            "fid": "nehapspathak:4",
            "filename": "phase5_cdf_hashtag_1800.html",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nehapspathak:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nehapspathak:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/nehapspathak:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/nehapspathak:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nehapspathak:4",
                "plots": "https://api.plotly.com/v2/plots/nehapspathak:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=nehapspathak"
            },
            "owner": "nehapspathak",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Most Used Hashtags",
            "views": 15,
            "web_url": "https://chart-studio.plotly.com/~nehapspathak/4/most-used-hashtags/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:28:24.476Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nehapspathak/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b53986b3-8359-4438-bbc3-28b8a857823c",
                        "fill": "tozeroy",
                        "name": "INDvPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:ed4b90"
                    },
                    {
                        "uid": "aa1b9dbf-5ae6-4c3b-9e36-7c1289189ab0",
                        "fill": "tozeroy",
                        "name": "PakistanVsIndia",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:1f6f2e"
                    },
                    {
                        "uid": "11b56305-cfd9-457d-8ec6-7fa83e37e4a3",
                        "fill": "tozeroy",
                        "name": "PakVsIndia",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:6df461"
                    },
                    {
                        "uid": "56d4c8cb-43bc-44ff-9c0e-661aab20874e",
                        "fill": "tozeroy",
                        "name": "indiavspak",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:3ae8e3"
                    },
                    {
                        "uid": "07e79d37-32f7-411a-80f8-aaeb1656ac71",
                        "fill": "tozeroy",
                        "name": "INDvsPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:f3c99a"
                    },
                    {
                        "uid": "723face1-4d80-4e17-b119-34fb46af3c50",
                        "fill": "tozeroy",
                        "name": "IndiavPakistan",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:c18ac3"
                    },
                    {
                        "uid": "1b0c2bee-0f3f-47b5-94ad-942737091e83",
                        "fill": "tozeroy",
                        "name": "PAKvIND",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:adeb28"
                    },
                    {
                        "uid": "7c933db3-d622-419a-a537-655c929cbee4",
                        "fill": "tozeroy",
                        "name": "INDIAvsPAK",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:5caf3d"
                    },
                    {
                        "uid": "8c35607d-6ec6-4852-8400-a8c1e6fc761a",
                        "fill": "tozeroy",
                        "name": "CWC19",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:3c3f72"
                    },
                    {
                        "uid": "7241cfae-7b4d-4adb-abbb-0e378bd317ac",
                        "fill": "tozeroy",
                        "name": "IndiaVsPakistan",
                        "type": "scatter",
                        "xsrc": "nehapspathak:5:d5fe8e",
                        "ysrc": "nehapspathak:5:780c81"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 18,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "text": "Most Used Hashtags",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#000000",
                                "family": "Courier New, monospace"
                            },
                            "text": "Time"
                        },
                        "tickfont": {
                            "size": 12,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "tickangle": 45,
                        "automargin": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#000000",
                                "family": "Courier New, monospace"
                            },
                            "text": "Total number of tweets"
                        },
                        "tickfont": {
                            "size": 12,
                            "color": "#000000",
                            "family": "Courier New, monospace"
                        },
                        "automargin": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": -0.25,
                        "font": {
                            "size": 12,
                            "color": "#000",
                            "family": "sans-serif"
                        },
                        "bgcolor": "#E2E2E2",
                        "traceorder": "normal",
                        "bordercolor": "#FFFFFF",
                        "borderwidth": 2,
                        "orientation": "h"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nehapspathak",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-22 16:32:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nehapspathak",
                "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": "2019-06-17T17:13:14.372485Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nonicked/0.embed",
            "fid": "nonicked:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nonicked/0/9_WNVGOYVRM9CKF2EUJS6BYW957JWGQM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nonicked/0/2_NV54MJN948MR8BH1YCH7IKH598OHIM.png",
                "block-thumb": "https://api.plotly.com/v2/files/nonicked:0/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nonicked/0/9_WNVGOYVRM9CKF2EUJS6BYW957JWGQM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nonicked:0",
                "plots": "https://api.plotly.com/v2/plots/nonicked:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=nonicked"
            },
            "owner": "nonicked",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Sample A vs Sample B",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nonicked/0/sample-a-vs-sample-b/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:13:14.809Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nonicked/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3e3c0a38-d894-438b-9d53-ec00c87f69b4",
                        "name": "Sample A",
                        "type": "box",
                        "ysrc": "nonicked:1:ec19bc",
                        "marker": {
                            "color": "rgb(214, 12, 140)"
                        }
                    },
                    {
                        "uid": "245acc54-8558-40fd-86ce-cb5c1e431cbd",
                        "name": "Sample B",
                        "type": "box",
                        "ysrc": "nonicked:1:8361de",
                        "marker": {
                            "color": "rgb(0, 128, 128)"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nonicked",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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": "2019-06-16 17:56:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nonicked",
                "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": "2019-06-17T17:13:00.181446Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67100.embed",
            "fid": "amper:67100",
            "filename": "06-09-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67100/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67100/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67100/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67100/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67100",
                "plots": "https://api.plotly.com/v2/plots/amper:67100",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-09-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67100/_06-09-19-ds-1641-alg-5421-param-1249-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:10:00.209Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67100/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6a2e8681-95f6-4fdd-9787-aa5a1dbd0919",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67101:603e4b",
                        "ysrc": "amper:67101:fabb5f",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-09-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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": "2019-06-17T17:12:58.801391Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~michaelbabyn/985.embed",
            "fid": "michaelbabyn:985",
            "filename": "plot from API (44)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/985/9_XTW9N3000XZ8VJMBYU2RXNH6846NFN.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/michaelbabyn:985/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/985/8_F8KL5E1YFWKIM243TFC6I1VOZZTT6T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/985/9_XTW9N3000XZ8VJMBYU2RXNH6846NFN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/michaelbabyn:985",
                "plots": "https://api.plotly.com/v2/plots/michaelbabyn:985",
                "parent": "https://api.plotly.com/v2/folders/home?user=michaelbabyn"
            },
            "owner": "michaelbabyn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~michaelbabyn/985/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:12:59.489Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~michaelbabyn/985/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1239029a-ff31-4c0d-b342-6077259f5422",
                        "type": "scatter",
                        "ysrc": "michaelbabyn:986:2797d6"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~michaelbabyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-09 16:52:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "michaelbabyn",
                "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": "2019-06-17T17:12:43.137521Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67098.embed",
            "fid": "amper:67098",
            "filename": "06-08-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67098/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67098/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67098/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67098/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67098",
                "plots": "https://api.plotly.com/v2/plots/amper:67098",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-08-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67098/_06-08-19-ds-1641-alg-5421-param-1249-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:33:10.711Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67098/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ad9872a2-02d9-4d37-9cab-4d11de9134f6",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67099:9ab626",
                        "ysrc": "amper:67099:b2def1",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "03cee007-6df9-4ac2-8f40-226bf6979ac3",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67099:9ab626",
                        "ysrc": "amper:67099:3bb17b",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "42b46322-eb66-49b1-bcde-1c244b0515d4",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67099:9ab626",
                        "ysrc": "amper:67099:65f80d",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "7ac07184-9107-4865-a1da-f24d43b96644",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67099:9ab626",
                        "ysrc": "amper:67099:6b8b3c",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-08-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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": "2019-06-17T17:12:14.834720Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67096.embed",
            "fid": "amper:67096",
            "filename": "06-07-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67096/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/amper/67096/2_F2XA9DNNFFDDAT1RN81XWEDZFKL4G2.png",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67096/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67096/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67096",
                "plots": "https://api.plotly.com/v2/plots/amper:67096",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-07-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67096/_06-07-19-ds-1641-alg-5421-param-1249-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:32:41.513Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67096/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5d23d2f6-8a27-42aa-a3a8-4312aaab6cb6",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67097:df0fa0",
                        "ysrc": "amper:67097:f81841",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "017915fe-e937-4458-af45-3b1f8dcf6a6f",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67097:df0fa0",
                        "ysrc": "amper:67097:be633c",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "b55f9ba5-7973-48bc-a80b-ce97d3e8d9d2",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67097:df0fa0",
                        "ysrc": "amper:67097:236be1",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-07-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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": "2019-06-17T17:12:03.966926Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rjt_1996/37.embed",
            "fid": "rjt_1996:37",
            "filename": "new business posted last week",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/37/9_CGX0H4UKS2YJLH2L9PN81IEBF27UB6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/37/2_UH9ZCO3JPBJBF9PV1FEV4ZKWC9F3SV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/37/8_1764ZRUVWJZQSZTPTDF8VAWSVZU2SY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/37/9_CGX0H4UKS2YJLH2L9PN81IEBF27UB6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rjt_1996:37",
                "plots": "https://api.plotly.com/v2/plots/rjt_1996:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=rjt_1996"
            },
            "owner": "rjt_1996",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~rjt_1996/37/",
            "world_readable": true,
            "date_modified": "2019-06-20T14:41:08.205Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rjt_1996/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "00d1cdc2-2d51-47d6-8001-050e89d6994d",
                        "type": "table",
                        "cells": {
                            "valuessrc": "rjt_1996:38:b42e47"
                        },
                        "header": {
                            "valuessrc": "rjt_1996:38:480967"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rjt_1996",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 16:12:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rjt_1996",
                "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": "2019-06-17T17:11:55.868292Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~michaelbabyn/983.embed",
            "fid": "michaelbabyn:983",
            "filename": "plot from API (43)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/983/9_1QOSVQMMZABGUAB16EQESHJX43MGCH.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/michaelbabyn:983/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/983/8_EBTI0SHK7EKC6TDTIUZCRK6KRWCLIQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/983/9_1QOSVQMMZABGUAB16EQESHJX43MGCH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/michaelbabyn:983",
                "plots": "https://api.plotly.com/v2/plots/michaelbabyn:983",
                "parent": "https://api.plotly.com/v2/folders/home?user=michaelbabyn"
            },
            "owner": "michaelbabyn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~michaelbabyn/983/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:11:56.348Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~michaelbabyn/983/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "ysrc": "michaelbabyn:984:d98f31"
                    }
                ],
                "layout": {
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#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.0,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~michaelbabyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-09 16:52:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "michaelbabyn",
                "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": "2019-06-17T17:11:37.106600Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67094.embed",
            "fid": "amper:67094",
            "filename": "06-06-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/amper/67094/9_KJYWH8372WL1TVY0O2JFIAXWUSR402.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67094/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67094/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/amper/67094/9_KJYWH8372WL1TVY0O2JFIAXWUSR402.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67094",
                "plots": "https://api.plotly.com/v2/plots/amper:67094",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-06-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67094/_06-06-19-ds-1641-alg-5421-param-1249-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:11:38.440Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67094/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "29ab23f2-1497-4fbb-a3e3-ae840376818a",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67095:88f62d",
                        "ysrc": "amper:67095:a31609",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "99c8576b-9f9d-4f42-ad18-8d4a72f68351",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67095:88f62d",
                        "ysrc": "amper:67095:48977f",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "f5d45fd8-cea3-42d2-b88b-7305daba7a32",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67095:88f62d",
                        "ysrc": "amper:67095:7d9e7b",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-06-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}