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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA0LTIyKzA0JTNBMDUlM0E0Ny4yNjI2MDMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNC0yMiswNCUzQTE5JTNBMzMuOTAzNjE1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-04-22T04:19:33.903615Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tinaprisma/61.embed",
            "fid": "tinaprisma:61",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/61/9_6GVSC8GPCYSCPS30J1VCL1S00ZUR3C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/61/2_L3SRR1ST4KR9N7CUOUNRQ41HPXKVM2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/61/8_H5NM9RQNUAO24D2Q9DTIG6BRP2MPCF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/61/9_6GVSC8GPCYSCPS30J1VCL1S00ZUR3C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tinaprisma:61",
                "plots": "https://api.plotly.com/v2/plots/tinaprisma:61",
                "parent": "https://api.plotly.com/v2/folders/home?user=tinaprisma"
            },
            "owner": "tinaprisma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
            "views": 47,
            "web_url": "https://chart-studio.plotly.com/~tinaprisma/61/summer-winter-temperatures-in-us-cities-2000-2018/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:19:34.378Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tinaprisma/61/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(73,124,81)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:d520da",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:05f554",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "fillcolor": "rgba(73,124,81,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(73,124,81)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:019896",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:0c8a4b",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "fillcolor": "rgba(73,124,81,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:102247",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:793794",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(81,73,124,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:103c10",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:af2f46",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(81,73,124,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:35da19",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:7675ff",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:0d09fa",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:947a04",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:a1641a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:4e04e3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:4c7584",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:ace461",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:e2d8bf",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:e65b82",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:4ad087",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:ab0b29",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:bf73a4",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:f6eeab",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:dc1ba6",
                        "ysrc": "tinaprisma:62:0d546a",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:62:13b5d9",
                        "ysrc": "tinaprisma:62:277695",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
                    "xaxis1": {
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis1": {
                        "anchor": "x1",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Houston",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Austin",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Denver",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Seattle",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "San Francisco",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Portland",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tinaprisma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-19 22:53:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tinaprisma",
                "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-04-22T04:17:41.191638Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~theom/237.embed",
            "fid": "theom:237",
            "filename": "overlaid histogram",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/theom/237/9_ZKVDDQ78U3HPNVN19IHJ3R58EVZJB4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/theom/237/2_D8CBHB4M09W34C4NJNAZJT3W8VF8LV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/theom/237/8_PZOZLQ3FHTCMCQJYRDNLHJUR0R7CEZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/theom/237/9_ZKVDDQ78U3HPNVN19IHJ3R58EVZJB4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/theom:237",
                "plots": "https://api.plotly.com/v2/plots/theom:237",
                "parent": "https://api.plotly.com/v2/folders/home?user=theom"
            },
            "owner": "theom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Google, Facebook, Netflix",
            "views": 25,
            "web_url": "https://chart-studio.plotly.com/~theom/237/google-facebook-netflix/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:58:24.680Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~theom/237/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b7fd9b71-8d60-4db9-9b1f-87cbd344968c",
                        "name": "Google",
                        "type": "histogram",
                        "xsrc": "theom:238:a41307",
                        "xbins": {
                            "size": 10
                        },
                        "marker": {
                            "color": "rgb(150, 50, 50)"
                        },
                        "opacity": 0.75
                    },
                    {
                        "uid": "b8cbb36b-2e6c-49aa-b270-8fae80537439",
                        "name": "Facebook",
                        "type": "histogram",
                        "xsrc": "theom:238:58bcd5",
                        "xbins": {
                            "size": 10
                        },
                        "marker": {
                            "color": "rgb(150, 50, 150)"
                        },
                        "opacity": 0.75
                    },
                    {
                        "uid": "1d86c028-715f-4a78-acfb-7d66ad3c6207",
                        "name": "Netflix",
                        "type": "histogram",
                        "xsrc": "theom:238:4494e7",
                        "xbins": {
                            "size": 10
                        },
                        "marker": {
                            "color": "rgb(50, 50, 50)"
                        },
                        "opacity": 0.75
                    }
                ],
                "layout": {
                    "xaxis": {
                        "range": [
                            0,
                            2500
                        ]
                    },
                    "barmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~theom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-06-22 06:30:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "theom",
                "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-04-22T04:17:33.589172Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tinaprisma/59.embed",
            "fid": "tinaprisma:59",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/59/9_3TBYOM9Z4JRMC1OE053ETTHOQ5ANGQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/59/2_RU8ZRV2LB7THXCNJB9TNZZGQBMK49W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/59/8_ORIC88QG3BDD2ZWMAQE7T5UPWQ4TVI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/59/9_3TBYOM9Z4JRMC1OE053ETTHOQ5ANGQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tinaprisma:59",
                "plots": "https://api.plotly.com/v2/plots/tinaprisma:59",
                "parent": "https://api.plotly.com/v2/folders/home?user=tinaprisma"
            },
            "owner": "tinaprisma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tinaprisma/59/summer-winter-temperatures-in-us-cities-2000-2018/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:17:34.031Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tinaprisma/59/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:307bb8",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:f9be77",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:12973f",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:6df580",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(110, 115, 119)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:b3315c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:b3315c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:cbc248",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:e6f3c3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(81,73,124,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:fe629a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:c0756c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:1e14bf",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:95bf42",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:6e6c63",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:19da1f",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:817c51",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:a5e334",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:d946cd",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:8d4186",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:63763d",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:9ad062",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:642f64",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:8e39fe",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:98a1d1",
                        "ysrc": "tinaprisma:60:14206e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:60:d6bd33",
                        "ysrc": "tinaprisma:60:77c9c6",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
                    "xaxis1": {
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis1": {
                        "anchor": "x1",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Houston",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Austin",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Denver",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Seattle",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "San Francisco",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Portland",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tinaprisma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-19 22:53:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tinaprisma",
                "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-04-22T04:17:04.518935Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tinaprisma/57.embed",
            "fid": "tinaprisma:57",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/57/9_9QN3KXB468OBW9XLO3BC1HVHC8ZX16.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/57/2_R84F16ABRYY834NWL5AKH8U3BLWLHZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/57/8_C9FA6J1LSJANNVWIPQPR76IH8A6RIA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/57/9_9QN3KXB468OBW9XLO3BC1HVHC8ZX16.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tinaprisma:57",
                "plots": "https://api.plotly.com/v2/plots/tinaprisma:57",
                "parent": "https://api.plotly.com/v2/folders/home?user=tinaprisma"
            },
            "owner": "tinaprisma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~tinaprisma/57/summer-winter-temperatures-in-us-cities-2000-2018/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:17:05.073Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tinaprisma/57/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:50c9cb",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:67e993",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:22cb71",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:24d5f3",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(110, 115, 119)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:b99456",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:b99456",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:87a0ca",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:8deefd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "fillcolor": "rgba(81,73,124,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:a7eed9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:e3f6be",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:c90ee6",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:7cdd12",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:5a506d",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:d90f3c",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:3cd967",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:463f60",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "fillcolor": "rgba(124,73,116,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:eb970d",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:fbcc37",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:c50537",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:6d1f8b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "fillcolor": "rgba(139,115,95,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Summer)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:c2f4c3",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:3d7e9b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "°F (Winter)",
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:398e67",
                        "ysrc": "tinaprisma:58:7c6f5b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    },
                    {
                        "fill": "tozerox",
                        "line": {
                            "color": "rgba(255,255,255,0)"
                        },
                        "type": "scatter",
                        "xsrc": "tinaprisma:58:468c5d",
                        "ysrc": "tinaprisma:58:b5bfaa",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "fillcolor": "rgba(95,119,139,0.2)",
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Summer & Winter Temperatures in U.S. Cities (2000-2018)",
                    "xaxis1": {
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis1": {
                        "anchor": "x1",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Houston",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Austin",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Denver",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Seattle",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "San Francisco",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Portland",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tinaprisma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-19 22:53:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tinaprisma",
                "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-04-22T04:15:07.735188Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~paulinap2/14.embed",
            "fid": "paulinap2:14",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/paulinap2/14/9_T2STBGEMD7PFZ5POUY2W4G8G6O3GBA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/paulinap2/14/2_IBH95Z14XVRMWTHFTLUMRCTNLSDMKO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/paulinap2/14/8_WAW5P217OMV0UFYOQMF8WTSL74H8Y0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/paulinap2/14/9_T2STBGEMD7PFZ5POUY2W4G8G6O3GBA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/paulinap2:14",
                "plots": "https://api.plotly.com/v2/plots/paulinap2:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=paulinap2"
            },
            "owner": "paulinap2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~paulinap2/14/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:15:08.212Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~paulinap2/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "38d1eba0-12a0-4cd2-96bf-61ead462b211",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "paulinap2:15:b3283a",
                        "ysrc": "paulinap2:15:aad1f6",
                        "zsrc": "paulinap2:15:f75d1e",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~paulinap2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 03:20:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "paulinap2",
                "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-04-22T04:13:14.175543Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ldylkj/3.embed",
            "fid": "ldylkj:3",
            "filename": "用户规模与企业付费",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ldylkj/3/9_PH9BPDGS1AUIBWIBDRQUTKU0SWAYGS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ldylkj/3/2_BXHJ8C2DM51P8NGW2ERWGO5YVVH13Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ldylkj/3/8_245WS5AY5D95R7WRI7UOQDNMG6G1V9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ldylkj/3/9_PH9BPDGS1AUIBWIBDRQUTKU0SWAYGS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ldylkj:3",
                "plots": "https://api.plotly.com/v2/plots/ldylkj:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=ldylkj"
            },
            "owner": "ldylkj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~ldylkj/3/",
            "world_readable": true,
            "date_modified": "2019-04-22T05:33:40.763Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ldylkj/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "81eaf450-3460-4919-a428-23d91304ea1a",
                        "name": "ChargedCount",
                        "text": "",
                        "type": "bar",
                        "xsrc": "ldylkj:2:65faab",
                        "ysrc": "ldylkj:2:9339bc",
                        "marker": {
                            "line": {
                                "color": "rgba(255, 153, 51, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(255, 153, 51, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "39e6141e-0ce8-4dc5-b8d1-d77bed7b7220",
                        "name": "EngineCount",
                        "text": "",
                        "type": "bar",
                        "xsrc": "ldylkj:2:65faab",
                        "ysrc": "ldylkj:2:277cce",
                        "marker": {
                            "line": {
                                "color": "rgba(55, 128, 191, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(55, 128, 191, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "21e5cd63-fb35-4fdb-9262-5cb6a1f54dfb",
                        "mode": "lines",
                        "name": "ChargeRatio",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ldylkj:2:65faab",
                        "ysrc": "ldylkj:2:19becb",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(50, 171, 96, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(50, 171, 96, 0.6)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "用户规模与企业付费"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.3125,
                            8.6875
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": "用户规模"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": false,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -1010.1293638135743,
                            6968.8180046074785
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": "企业数量"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": false,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 0.9616161616161616,
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.000506937968798294,
                            0.11267998587310508
                        ],
                        "title": {
                            "text": "付费率"
                        },
                        "autorange": false,
                        "overlaying": "y"
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "showlegend": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ldylkj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-03-26 03:50:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ldylkj",
                "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-04-22T04:11:09.009613Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~timothynguye/1.embed",
            "fid": "timothynguye:1",
            "filename": "worldmap",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/timothynguye/1/9_E0IV8F6T5W5JC7JD0CA4BO8AZY4C2R.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/timothynguye/1/2_8XODTJOH3FDGYBE21JKNMLJYXJULJB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/timothynguye/1/8_GXC28TL83W0HW3QAQX2P7ZRSD56XKM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/timothynguye/1/9_E0IV8F6T5W5JC7JD0CA4BO8AZY4C2R.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/timothynguye:1",
                "plots": "https://api.plotly.com/v2/plots/timothynguye:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=timothynguye"
            },
            "owner": "timothynguye",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Average land temperature in countries",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~timothynguye/1/average-land-temperature-in-countries/",
            "world_readable": true,
            "date_modified": "2019-04-25T02:00:46.674Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~timothynguye/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "timothynguye:2:a8d394",
                        "marker": {
                            "line": {
                                "color": "rgb(0,0,0)",
                                "width": 1
                            }
                        },
                        "textsrc": "timothynguye:2:ae105b",
                        "colorbar": {
                            "title": "# Average<br>Temperature,<br>°F"
                        },
                        "locationmode": "country names",
                        "locationssrc": "timothynguye:2:1691df"
                    }
                ],
                "layout": {
                    "geo": {
                        "lataxis": {
                            "showgrid": true,
                            "gridcolor": "rgb(102, 102, 102)"
                        },
                        "lonaxis": {
                            "showgrid": true,
                            "gridcolor": "rgb(102, 102, 102)"
                        },
                        "showframe": false,
                        "showocean": true,
                        "oceancolor": "rgb(0,255,255)",
                        "projection": {
                            "type": "orthographic",
                            "rotation": {
                                "lat": 10,
                                "lon": 60
                            }
                        }
                    },
                    "title": "Average land temperature in countries"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~timothynguye",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 03:59:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "timothynguye",
                "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-04-22T04:10:17.084525Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~madhushan75f/123.embed",
            "fid": "madhushan75f:123",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/madhushan75f/123/9_7NL73KD2A07STYYYENZETJAYL8XQ89.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/madhushan75f/123/2_BM1JT45ASTHR0ZGJ3V6ENNLL9GQV8R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/madhushan75f/123/8_7LBM6T7YPUM25M3CI1I3KYQ07EY9GF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/madhushan75f/123/9_7NL73KD2A07STYYYENZETJAYL8XQ89.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/madhushan75f:123",
                "plots": "https://api.plotly.com/v2/plots/madhushan75f:123",
                "parent": "https://api.plotly.com/v2/folders/home?user=madhushan75f"
            },
            "owner": "madhushan75f",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Actual vs. Predicted Useful Remaining Life (Cycles)",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~madhushan75f/123/actual-vs-predicted-useful-remaining-life-cycles/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:10:17.684Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~madhushan75f/123/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "88e6b2fc-64b4-11e9-ac82-00155dcc03a0",
                        "line": {
                            "dash": "dash",
                            "color": "rgba(0, 0, 0, 0.2)",
                            "width": 4
                        },
                        "name": "Reference",
                        "type": "scatter",
                        "xsrc": "madhushan75f:124:d4e8ad",
                        "ysrc": "madhushan75f:124:804ffc"
                    },
                    {
                        "uid": "88e6b69e-64b4-11e9-ac82-00155dcc03a0",
                        "mode": "markers",
                        "name": "RUL",
                        "type": "scatter",
                        "xsrc": "madhushan75f:124:d4e8ad",
                        "ysrc": "madhushan75f:124:fda84c",
                        "marker": {
                            "color": "rgb(22, 96, 167)"
                        }
                    }
                ],
                "layout": {
                    "title": "Actual vs. Predicted Useful Remaining Life (Cycles)",
                    "xaxis": {
                        "title": "Actual Remaining Useful Life"
                    },
                    "yaxis": {
                        "title": "Predicted Remaining Useful Life"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~madhushan75f",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-02-12 19:53:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "madhushan75f",
                "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-04-22T04:07:33.918534Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chickenburrito1/2.embed",
            "fid": "chickenburrito1:2",
            "filename": "choropleth_florida",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chickenburrito1/2/9_2Z0VHGOB185MLGN9ZHI0K9FE0MMTTN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chickenburrito1/2/2_9V3N9YGFNYK8QVF3ILH7I1SY7Z6L8N.png",
                "block-thumb": "https://api.plotly.com/v2/files/chickenburrito1:2/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chickenburrito1/2/9_2Z0VHGOB185MLGN9ZHI0K9FE0MMTTN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chickenburrito1:2",
                "plots": "https://api.plotly.com/v2/plots/chickenburrito1:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=chickenburrito1"
            },
            "owner": "chickenburrito1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "< 8.28K, 8.28K - 869.20K, 869.20K - 1.73M, 1.73M - 2.59M, > 2.59M, US Counties",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~chickenburrito1/2/_259m-us-counties/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:07:34.442Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chickenburrito1/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "251fee3e-e509-44fe-bd48-9d350ae97234",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "< 8.28K",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:73f670",
                        "ysrc": "chickenburrito1:3:9dfd8e",
                        "fillcolor": "#030512",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "43796e34-708e-4a6a-ad15-8cf7b20489f7",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "8.28K - 869.20K",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:cf228b",
                        "ysrc": "chickenburrito1:3:d8a3ee",
                        "fillcolor": "#1d1d3b",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "401684cb-99d7-4aee-86f1-5107556b7fe0",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "869.20K - 1.73M",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:1383ef",
                        "ysrc": "chickenburrito1:3:c940dc",
                        "fillcolor": "#323268",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "36ba5fdb-f604-4844-aa04-793117b7dddb",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "1.73M - 2.59M",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:385719",
                        "ysrc": "chickenburrito1:3:7ceb3f",
                        "fillcolor": "#3d4b94",
                        "hoverinfo": "none"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "bfa5331f-7406-4538-9a22-76d725bf933c",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "> 2.59M",
                        "type": "scatter",
                        "fillcolor": "#3e6ab0",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "fbf1b9d4-c884-4310-b776-16e4b9b38994",
                        "mode": "markers",
                        "name": "US Counties",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:1da90b",
                        "ysrc": "chickenburrito1:3:23d37a",
                        "marker": {
                            "color": "white",
                            "opacity": 0
                        },
                        "textsrc": "chickenburrito1:3:02ac74",
                        "selected": {
                            "marker": {
                                "size": 3,
                                "color": "white",
                                "opacity": 1
                            }
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "unselected": {
                            "marker": {
                                "opacity": 0
                            }
                        },
                        "legendgroup": "centroids"
                    },
                    {
                        "uid": "dfcbc18a-fbc7-40c4-9081-00eede0eb26b",
                        "line": {
                            "color": "rgb(240, 240, 240)",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:3:4a8917",
                        "ysrc": "chickenburrito1:3:be2a91",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "States"
                    }
                ],
                "layout": {
                    "width": 900,
                    "xaxis": {
                        "range": [
                            -91.9300843943933,
                            -75.7361218943933
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            24.523096,
                            31.000681
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "height": 450,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "xanchor": "right",
                        "yanchor": "top",
                        "traceorder": "reversed"
                    },
                    "margin": {
                        "b": 20,
                        "l": 20,
                        "r": 20,
                        "t": 40
                    },
                    "dragmode": "select",
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 1,
                            "y": 1.05,
                            "text": "<b>Population by County</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(229,229,229)",
                    "paper_bgcolor": "rgb(229,229,229)"
                }
            },
            "height": 450,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chickenburrito1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-13 05:26:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chickenburrito1",
                "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-04-22T04:05:47.262603Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tinaprisma/55.embed",
            "fid": "tinaprisma:55",
            "filename": "plot from API (20)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/55/9_HB45JWWKSSHQ06MOZ8VB0WXN3OS0Y7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/55/2_OKO85PQRO6JMZ4J8O67ER6ENEKIGZH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/55/8_DV9AHRGCSM19MHA4Q4VXR0FXSBQNV0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tinaprisma/55/9_HB45JWWKSSHQ06MOZ8VB0WXN3OS0Y7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tinaprisma:55",
                "plots": "https://api.plotly.com/v2/plots/tinaprisma:55",
                "parent": "https://api.plotly.com/v2/folders/home?user=tinaprisma"
            },
            "owner": "tinaprisma",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Total Precipitation in U.S. Cities (2000-2018)",
            "views": 48,
            "web_url": "https://chart-studio.plotly.com/~tinaprisma/55/total-precipitation-in-us-cities-2000-2018/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:05:47.767Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tinaprisma/55/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(81,73,124)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:59e0a7",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(124,73,116)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:1b9f6b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(139,115,95)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:7d472e",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:d9afaa",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(110, 115, 119)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:189240",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(95,119,139)"
                        },
                        "mode": "lines",
                        "name": "Inches",
                        "type": "scatter",
                        "xsrc": "tinaprisma:56:b30746",
                        "ysrc": "tinaprisma:56:189240",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Total Precipitation in U.S. Cities (2000-2018)",
                    "xaxis1": {
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis1": {
                        "anchor": "x1",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ]
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Houston",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Austin",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Denver",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Seattle",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "San Francisco",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Portland",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tinaprisma",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-19 22:53:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tinaprisma",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}