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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE3JTNBMjIlM0EyOC43MDMxNDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNyUzQTI1JTNBNDMuMzU3Mjg5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T17:25:43.357289Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neujeffski/9.embed",
            "fid": "neujeffski:9",
            "filename": "Plotly Playground 2019-06-17 19:25:42",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/neujeffski:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/neujeffski:9/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/neujeffski:9/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/neujeffski:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neujeffski:9",
                "plots": "https://api.plotly.com/v2/plots/neujeffski:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=neujeffski"
            },
            "owner": "neujeffski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#151516'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~neujeffski/9/font-color-151516/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:25:43.819Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neujeffski/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c413bcc2-bdcf-4069-ba22-8d4c30ad11b3",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(226, 74, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "YBG.YG",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:10:dc15df",
                        "ysrc": "neujeffski:10:4cf115",
                        "fillcolor": "rgba(226, 74, 51, 0.3)"
                    },
                    {
                        "uid": "593b0357-3e4f-4495-b795-eb8cf8f5d16c",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(62, 111, 176, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "TLI.GA",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:10:dc15df",
                        "ysrc": "neujeffski:10:8520de",
                        "fillcolor": "rgba(62, 111, 176, 0.3)"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#151516"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "legend": {
                        "font": {
                            "color": "#666666"
                        },
                        "bgcolor": "#FFFFFF"
                    },
                    "plot_bgcolor": "#E5E5E5",
                    "paper_bgcolor": "#FFFFFF"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neujeffski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:57:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neujeffski",
                "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:25:32.573153Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~moiz_sakha/36.embed",
            "fid": "moiz_sakha:36",
            "filename": "Saarlouis_Scheid_Bahnhofstr_14_2017-11-15.png",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/moiz_sakha:36/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/moiz_sakha:36/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/moiz_sakha/36/8_KMZAC0HJ988U8J2ZM7H4YFQWXITMJD.png",
                "list-thumb": "https://api.plotly.com/v2/files/moiz_sakha:36/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/moiz_sakha:36",
                "plots": "https://api.plotly.com/v2/plots/moiz_sakha:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=moiz_sakha"
            },
            "owner": "moiz_sakha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Location: Saarlouis_Scheid_Bahnhofstr_14, Date: 2017-11-15",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~moiz_sakha/36/location-saarlouis-scheid-bahnhofstr-14-date-2017-11-15/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:25:33.100Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~moiz_sakha/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e8581c8e-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "label",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:495a32"
                    },
                    {
                        "uid": "e8581c8f-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_nodb",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:15af0e"
                    },
                    {
                        "uid": "e8581c90-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_db",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:04bdbc"
                    },
                    {
                        "uid": "e8581c91-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_rf",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:f901f1"
                    },
                    {
                        "uid": "e8581c92-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_rf_conf",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:f901f1",
                        "error_y": {
                            "arraysrc": "moiz_sakha:37:57a481",
                            "symmetric": false,
                            "arrayminussrc": "moiz_sakha:37:a7dfa9"
                        }
                    },
                    {
                        "uid": "e8581c93-9124-11e9-9122-340286037753",
                        "fill": "tonexty",
                        "line": {
                            "color": "rgb(180, 142, 31)"
                        },
                        "mode": "lines",
                        "name": "pred_dropout",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:37:28ea32",
                        "ysrc": "moiz_sakha:37:424425",
                        "fillcolor": "rgba(68, 68, 68, 0.3)"
                    }
                ],
                "layout": {
                    "title": "Location: Saarlouis_Scheid_Bahnhofstr_14, Date: 2017-11-15",
                    "xaxis": {
                        "title": "Time"
                    },
                    "yaxis": {
                        "title": "mpower (kW)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~moiz_sakha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.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-04-01 11:22:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "moiz_sakha",
                "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:25:31.893481Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neujeffski/7.embed",
            "fid": "neujeffski:7",
            "filename": "Plotly Playground 2019-06-17 19:25:30",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/neujeffski:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/neujeffski:7/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/neujeffski:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/neujeffski:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neujeffski:7",
                "plots": "https://api.plotly.com/v2/plots/neujeffski:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=neujeffski"
            },
            "owner": "neujeffski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#151516'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~neujeffski/7/font-color-151516/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:25:32.321Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neujeffski/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1901d39b-5fc3-4914-9b7f-08b9c6626022",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(226, 74, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "KDY.MM",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:8:5de9f5",
                        "ysrc": "neujeffski:8:d221ee",
                        "fillcolor": "rgba(226, 74, 51, 0.3)"
                    },
                    {
                        "uid": "0dd3f7f0-698a-433d-b510-f3a7cdf99783",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(62, 111, 176, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "UXW.EQ",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:8:5de9f5",
                        "ysrc": "neujeffski:8:a924a1",
                        "fillcolor": "rgba(62, 111, 176, 0.3)"
                    },
                    {
                        "uid": "43b4aaf6-8ba5-4233-8f2e-23beb634175a",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(132, 118, 202, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "DLO.LV",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:8:5de9f5",
                        "ysrc": "neujeffski:8:ecd558",
                        "fillcolor": "rgba(132, 118, 202, 0.3)"
                    },
                    {
                        "uid": "594fd6e7-6724-48fa-90e2-64f6ce8a6185",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(101, 101, 101, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "OFQ.XU",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:8:5de9f5",
                        "ysrc": "neujeffski:8:84f902",
                        "fillcolor": "rgba(101, 101, 101, 0.3)"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#151516"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "legend": {
                        "font": {
                            "color": "#666666"
                        },
                        "bgcolor": "#FFFFFF"
                    },
                    "plot_bgcolor": "#E5E5E5",
                    "paper_bgcolor": "#FFFFFF"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neujeffski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:57:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neujeffski",
                "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:25:17.399574Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neujeffski/5.embed",
            "fid": "neujeffski:5",
            "filename": "Plotly Playground 2019-06-17 19:25:16",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/neujeffski:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/neujeffski:5/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/neujeffski:5/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/neujeffski:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neujeffski:5",
                "plots": "https://api.plotly.com/v2/plots/neujeffski:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=neujeffski"
            },
            "owner": "neujeffski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#151516'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~neujeffski/5/font-color-151516/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:25:17.895Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neujeffski/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a432ec9b-27a7-4332-a3aa-d491076e4a10",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(226, 74, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "TOW.LA",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:6:99a928",
                        "ysrc": "neujeffski:6:e9da46",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(226, 74, 51, 0.3)"
                    },
                    {
                        "uid": "3acfcad1-f4b6-4180-8e83-1248cf68982a",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(62, 111, 176, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "ZSI.JV",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:6:99a928",
                        "ysrc": "neujeffski:6:c2068c",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "fillcolor": "rgba(62, 111, 176, 0.3)"
                    },
                    {
                        "uid": "e966428c-d593-45bb-91ba-e6de74f12a52",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(132, 118, 202, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "SCU.OW",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:6:99a928",
                        "ysrc": "neujeffski:6:90d047",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "fillcolor": "rgba(132, 118, 202, 0.3)"
                    },
                    {
                        "uid": "57431953-a6d2-4c22-876e-d825feddb02f",
                        "fill": "tozeroy",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(101, 101, 101, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "KRT.LJ",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "neujeffski:6:99a928",
                        "ysrc": "neujeffski:6:6c4c94",
                        "xaxis": "x",
                        "yaxis": "y4",
                        "fillcolor": "rgba(101, 101, 101, 0.3)"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#151516"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "anchor": "free",
                        "domain": [
                            0.80625,
                            1.0
                        ],
                        "position": 0.0,
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "legend": {
                        "font": {
                            "color": "#666666"
                        },
                        "bgcolor": "#FFFFFF"
                    },
                    "yaxis2": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "anchor": "free",
                        "domain": [
                            0.5375,
                            0.73125
                        ],
                        "position": 0.0,
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis3": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "anchor": "free",
                        "domain": [
                            0.26875,
                            0.4625
                        ],
                        "position": 0.0,
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis4": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            0.19375
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "plot_bgcolor": "#E5E5E5",
                    "paper_bgcolor": "#FFFFFF"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neujeffski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:57:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neujeffski",
                "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:25:10.504902Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~VSA72/2.embed",
            "fid": "VSA72:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/VSA72:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/VSA72:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/VSA72:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/VSA72:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/VSA72:2",
                "plots": "https://api.plotly.com/v2/plots/VSA72:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=VSA72"
            },
            "owner": "VSA72",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~VSA72/2/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:25:11.003Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~VSA72/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "795f491c-e8d2-4f0b-8ec4-c28eaecaebaa",
                        "type": "scatter",
                        "xsrc": "VSA72:3:6cb5d8",
                        "ysrc": "VSA72:3:698df5"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~VSA72",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2019-06-14 18:18:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "VSA72",
                "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:24:42.114881Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bmtxzg064982/2.embed",
            "fid": "bmtxzg064982:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bmtxzg064982:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bmtxzg064982:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bmtxzg064982/2/8_WXB4DJW022Y9YJNAGQOZ8EQM5K5ZR2.png",
                "list-thumb": "https://api.plotly.com/v2/files/bmtxzg064982:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bmtxzg064982:2",
                "plots": "https://api.plotly.com/v2/plots/bmtxzg064982:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=bmtxzg064982"
            },
            "owner": "bmtxzg064982",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Scatterplot Matrix",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~bmtxzg064982/2/scatterplot-matrix/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:24:42.620Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bmtxzg064982/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "219ac7e3-de9a-4caf-b101-40b3eb7748af",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "7e2c493e-d75b-49be-b684-73f7351c1b5b",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3bd27e28-d054-4a86-b4bf-72775ecf4004",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "6f01fc61-0b43-4ef9-94e9-f91f4260b872",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "9b40f2bc-b997-4d08-a67b-5fa5ca5ca8ea",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4ab3e36d-a76b-4ea4-b73c-daa50b73c994",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "40fe9d68-b2e3-42c8-969b-2d7e70318407",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:35a092",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "20549f89-2659-44e7-b2e0-e817c0b1f39b",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4eb62828-dd2b-41aa-8048-3f646c0da74c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "885651f7-1d8b-4217-8bf1-01a0393c3ac6",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "cc6c3203-6441-48fa-aa8f-bc1a2c03dab7",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "2a6b077a-0ac0-40e7-9603-366b0089633a",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b4f013cc-cb18-4df6-bca5-87d9bff2d8bd",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "8a0fca82-cd76-4d99-bcb2-8a25b383a264",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:c09c4c",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "1a72528e-2662-4f30-894a-08b363c72897",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "bd6a4c03-d068-4a9f-9ae1-19d4d7aad883",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c7dc5f01-26c1-4529-acde-1380d92e2930",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x17",
                        "yaxis": "y17",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "24945b19-cbcb-47fc-b872-9549e07305e3",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x18",
                        "yaxis": "y18",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "2ca12529-bba3-4a04-ad67-221544baac26",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x19",
                        "yaxis": "y19",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "0d3f34c8-e881-4584-84d2-a2b1cfbd7d94",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x20",
                        "yaxis": "y20",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b1c2c21e-0ad1-445d-bd80-df62e74e7421",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:815f82",
                        "xaxis": "x21",
                        "yaxis": "y21",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4e05f4b7-f5c3-4f67-a499-a86084fb5267",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x22",
                        "yaxis": "y22",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "9ce69a4b-0a7e-428b-a9d9-1e3a41e17380",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x23",
                        "yaxis": "y23",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "58195019-2966-43c2-b6ff-83aaba400fa6",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x24",
                        "yaxis": "y24",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "9a29ecee-7673-475a-9654-5eecceddc40d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x25",
                        "yaxis": "y25",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b88aec6c-58b7-4e83-ad5a-4a017b07aa11",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x26",
                        "yaxis": "y26",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "6f8f4589-3ad2-473f-a152-25def4b12297",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x27",
                        "yaxis": "y27",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "697dfb48-1209-4f31-855a-be2dfb15e34c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:64ba1d",
                        "xaxis": "x28",
                        "yaxis": "y28",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c34e1afd-f916-4e49-a13d-ae35af4306ba",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x29",
                        "yaxis": "y29",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b1021a57-3787-4471-9df7-116c8e0c78e0",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x30",
                        "yaxis": "y30",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "04c91c71-249b-4bd0-a4cd-92ca3ff20f9a",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x31",
                        "yaxis": "y31",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "0411dd6c-26ce-44b9-8065-0fe30fa0124c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x32",
                        "yaxis": "y32",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "7ab1ef0e-347f-4191-8af7-4ce5c1a38d04",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x33",
                        "yaxis": "y33",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c9fdd0ef-c0df-4e1b-9b50-b9a8424869dd",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x34",
                        "yaxis": "y34",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "decb1268-cc60-4294-a50f-64d2c4d2b295",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:1765c5",
                        "xaxis": "x35",
                        "yaxis": "y35",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d3c47383-002a-4ee4-ba25-8a8e1364dde4",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x36",
                        "yaxis": "y36",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ceb84644-473f-4157-a905-e313138f1f54",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x37",
                        "yaxis": "y37",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f96efd2e-8ffb-4d80-8cb8-9d680a6cf368",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x38",
                        "yaxis": "y38",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c8923bc0-ef99-4103-8d57-926ddcc283e2",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x39",
                        "yaxis": "y39",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "98fff462-ee64-44f8-b9df-f6b577a05cff",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x40",
                        "yaxis": "y40",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f070f16b-bd90-4d13-9004-b0643cb78ed1",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x41",
                        "yaxis": "y41",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "81f2c097-5624-4970-a074-07bd5183cd77",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:ba66a8",
                        "xaxis": "x42",
                        "yaxis": "y42",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "01359394-3f90-4472-b295-c840c519b76b",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:71ca4a",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x43",
                        "yaxis": "y43",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "778066f4-fdf3-47f3-a48d-d9a013163d0c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:b4e826",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x44",
                        "yaxis": "y44",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d7f5abf5-f169-4fc4-bacd-9a71cff96167",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:587299",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x45",
                        "yaxis": "y45",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "023bf9bd-a35c-43b8-bbc7-b4fd5617ec4c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:c3b7a1",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x46",
                        "yaxis": "y46",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "02131cde-a9f0-45b9-8684-de91f66bf264",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:ccb4ea",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x47",
                        "yaxis": "y47",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b1737847-5e25-40f2-b244-d248a56a85b2",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:8c6b4d",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x48",
                        "yaxis": "y48",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "95c3557a-2d41-4890-977c-50b1b8e04b59",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:3:218f89",
                        "ysrc": "bmtxzg064982:3:a4f52a",
                        "xaxis": "x49",
                        "yaxis": "y49",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Scatterplot Matrix"
                    },
                    "width": 1200,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "PassengerId"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "height": 1200,
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis9": {
                        "anchor": "y9",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis8": {
                        "title": {
                            "text": "Survived"
                        },
                        "anchor": "x8",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis9": {
                        "anchor": "x9",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "xaxis10": {
                        "anchor": "y10",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis11": {
                        "anchor": "y11",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis12": {
                        "anchor": "y12",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis13": {
                        "anchor": "y13",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis14": {
                        "anchor": "y14",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis15": {
                        "anchor": "y15",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis16": {
                        "anchor": "y16",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis17": {
                        "anchor": "y17",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis18": {
                        "anchor": "y18",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis19": {
                        "anchor": "y19",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis20": {
                        "anchor": "y20",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis21": {
                        "anchor": "y21",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis22": {
                        "anchor": "y22",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis23": {
                        "anchor": "y23",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis24": {
                        "anchor": "y24",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis25": {
                        "anchor": "y25",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis26": {
                        "anchor": "y26",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis27": {
                        "anchor": "y27",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis28": {
                        "anchor": "y28",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis29": {
                        "anchor": "y29",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis30": {
                        "anchor": "y30",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis31": {
                        "anchor": "y31",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis32": {
                        "anchor": "y32",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis33": {
                        "anchor": "y33",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis34": {
                        "anchor": "y34",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis35": {
                        "anchor": "y35",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis36": {
                        "anchor": "y36",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis37": {
                        "anchor": "y37",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis38": {
                        "anchor": "y38",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis39": {
                        "anchor": "y39",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis40": {
                        "anchor": "y40",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis41": {
                        "anchor": "y41",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis42": {
                        "anchor": "y42",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis43": {
                        "title": {
                            "text": "PassengerId"
                        },
                        "anchor": "y43",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis44": {
                        "title": {
                            "text": "Survived"
                        },
                        "anchor": "y44",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis45": {
                        "title": {
                            "text": "Pclass"
                        },
                        "anchor": "y45",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis46": {
                        "title": {
                            "text": "Age"
                        },
                        "anchor": "y46",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis47": {
                        "title": {
                            "text": "SibSp"
                        },
                        "anchor": "y47",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis48": {
                        "title": {
                            "text": "Parch"
                        },
                        "anchor": "y48",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis49": {
                        "title": {
                            "text": "Fare"
                        },
                        "anchor": "y49",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "yaxis10": {
                        "anchor": "x10",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis11": {
                        "anchor": "x11",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis12": {
                        "anchor": "x12",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis13": {
                        "anchor": "x13",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis14": {
                        "anchor": "x14",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis15": {
                        "title": {
                            "text": "Pclass"
                        },
                        "anchor": "x15",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis16": {
                        "anchor": "x16",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis17": {
                        "anchor": "x17",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis18": {
                        "anchor": "x18",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis19": {
                        "anchor": "x19",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis20": {
                        "anchor": "x20",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis21": {
                        "anchor": "x21",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis22": {
                        "title": {
                            "text": "Age"
                        },
                        "anchor": "x22",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis23": {
                        "anchor": "x23",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis24": {
                        "anchor": "x24",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis25": {
                        "anchor": "x25",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis26": {
                        "anchor": "x26",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis27": {
                        "anchor": "x27",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis28": {
                        "anchor": "x28",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis29": {
                        "title": {
                            "text": "SibSp"
                        },
                        "anchor": "x29",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis30": {
                        "anchor": "x30",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis31": {
                        "anchor": "x31",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis32": {
                        "anchor": "x32",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis33": {
                        "anchor": "x33",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis34": {
                        "anchor": "x34",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis35": {
                        "anchor": "x35",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis36": {
                        "title": {
                            "text": "Parch"
                        },
                        "anchor": "x36",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis37": {
                        "anchor": "x37",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis38": {
                        "anchor": "x38",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis39": {
                        "anchor": "x39",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis40": {
                        "anchor": "x40",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis41": {
                        "anchor": "x41",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis42": {
                        "anchor": "x42",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis43": {
                        "title": {
                            "text": "Fare"
                        },
                        "anchor": "x43",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis44": {
                        "anchor": "x44",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis45": {
                        "anchor": "x45",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis46": {
                        "anchor": "x46",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis47": {
                        "anchor": "x47",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis48": {
                        "anchor": "x48",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis49": {
                        "anchor": "x49",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "showlegend": true
                }
            },
            "height": 1200,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bmtxzg064982",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 17:13:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bmtxzg064982",
                "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:23:54.283507Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~annacallahan/53.embed",
            "fid": "annacallahan:53",
            "filename": "Plot 53",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/annacallahan/53/9_USXTU7J6DJLJ18PV596UKA7C4HRT9L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/annacallahan/53/2_R2RCUVJ4D3TP43C5EXO1CBEHZQD8M8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/annacallahan/53/8_05P7N60VQFWVLG9BQ2X63BEL1XYMS2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/annacallahan/53/9_USXTU7J6DJLJ18PV596UKA7C4HRT9L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/annacallahan:53",
                "plots": "https://api.plotly.com/v2/plots/annacallahan:53",
                "parent": "https://api.plotly.com/v2/folders/home?user=annacallahan"
            },
            "owner": "annacallahan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~annacallahan/53/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:54:32.582Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~annacallahan/53/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(116, 120, 255)",
                            "shape": "spline",
                            "width": 2,
                            "smoothing": 1
                        },
                        "mode": "lines",
                        "name": "all cases",
                        "type": "scatter",
                        "xsrc": "annacallahan:51:34e170",
                        "ysrc": "annacallahan:51:2d66f9"
                    },
                    {
                        "line": {
                            "color": "rgb(64, 194, 189)",
                            "shape": "spline",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "street/sidewalk <br>cleaning requests",
                        "type": "scatter",
                        "xsrc": "annacallahan:52:397863",
                        "ysrc": "annacallahan:52:60c027"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "16th and Mission % Change Comparison"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2008-07-01",
                            "2019-06-01"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.8340455840455842,
                            2.513532763532764
                        ],
                        "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/~annacallahan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2019-03-19 14:31:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "annacallahan",
                "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:23:53.275935Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~VSA72/0.embed",
            "fid": "VSA72:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/VSA72:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/VSA72:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/VSA72:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/VSA72:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/VSA72:0",
                "plots": "https://api.plotly.com/v2/plots/VSA72:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=VSA72"
            },
            "owner": "VSA72",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~VSA72/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:23:53.765Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~VSA72/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5f1fbf1b-d6b4-4caf-906f-b7431aee1e2b",
                        "type": "scatter",
                        "xsrc": "VSA72:1:ddf287",
                        "ysrc": "VSA72:1:80c638"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~VSA72",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.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": "2019-06-14 18:18:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "VSA72",
                "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:22:44.671719Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cwalton2/5.embed",
            "fid": "cwalton2:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cwalton2:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cwalton2:5/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/cwalton2:5/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cwalton2:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cwalton2:5",
                "plots": "https://api.plotly.com/v2/plots/cwalton2:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=cwalton2"
            },
            "owner": "cwalton2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cwalton2/5/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:22:44.686Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cwalton2/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cwalton2:4:a369ec",
                        "ysrc": "cwalton2:4:21ff0f",
                        "stackgroup": 1,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -7.833333333333334,
                            148.83333333333334
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            241.1658765,
                            113523.1329
                        ],
                        "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/~cwalton2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2019-06-17 16:35:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cwalton2",
                "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:22:28.703146Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~moiz_sakha/34.embed",
            "fid": "moiz_sakha:34",
            "filename": "Saarlouis_Scheid_Bahnhofstr_14_2017-12-10.png",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/moiz_sakha:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/moiz_sakha:34/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/moiz_sakha/34/8_AZS8EU0HT73ZYBWCYU08VVIA4V2O29.png",
                "list-thumb": "https://api.plotly.com/v2/files/moiz_sakha:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/moiz_sakha:34",
                "plots": "https://api.plotly.com/v2/plots/moiz_sakha:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=moiz_sakha"
            },
            "owner": "moiz_sakha",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Location: Saarlouis_Scheid_Bahnhofstr_14, Date: 2017-12-10",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~moiz_sakha/34/location-saarlouis-scheid-bahnhofstr-14-date-2017-12-10/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:22:29.213Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~moiz_sakha/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7ab4afc6-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "label",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:941fd9"
                    },
                    {
                        "uid": "7ab4afc7-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_nodb",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:98d06b"
                    },
                    {
                        "uid": "7ab4afc8-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_db",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:abc0a9"
                    },
                    {
                        "uid": "7ab4afc9-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_rf",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:c84969"
                    },
                    {
                        "uid": "7ab4afca-9124-11e9-9122-340286037753",
                        "mode": "lines",
                        "name": "pred_rf_conf",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:c84969",
                        "error_y": {
                            "arraysrc": "moiz_sakha:35:5d005d",
                            "symmetric": false,
                            "arrayminussrc": "moiz_sakha:35:8ed7e8"
                        }
                    },
                    {
                        "uid": "7ab4afcb-9124-11e9-9122-340286037753",
                        "fill": "tonexty",
                        "line": {
                            "color": "rgb(180, 142, 31)"
                        },
                        "mode": "lines",
                        "name": "pred_dropout",
                        "type": "scatter",
                        "xsrc": "moiz_sakha:35:bf63ee",
                        "ysrc": "moiz_sakha:35:205e3b",
                        "fillcolor": "rgba(68, 68, 68, 0.3)"
                    }
                ],
                "layout": {
                    "title": "Location: Saarlouis_Scheid_Bahnhofstr_14, Date: 2017-12-10",
                    "xaxis": {
                        "title": "Time"
                    },
                    "yaxis": {
                        "title": "mpower (kW)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~moiz_sakha",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.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-04-01 11:22:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "moiz_sakha",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}