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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIxJTNBNDclM0EwOC4yODM3ODglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMSUzQTU3JTNBNTIuNjQwMzE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T21:57:52.640319Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LuxF3rre/16.embed",
            "fid": "LuxF3rre:16",
            "filename": "Plotly Playground 2019-03-20 22:57:52",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/LuxF3rre:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/LuxF3rre:16/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LuxF3rre/16/8_AA0XOA3EO9FLQY9S17T6YT6I47IAHW.png",
                "list-thumb": "https://api.plotly.com/v2/files/LuxF3rre:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LuxF3rre:16",
                "plots": "https://api.plotly.com/v2/plots/LuxF3rre:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=LuxF3rre"
            },
            "owner": "LuxF3rre",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LuxF3rre/16/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:57:53.102Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LuxF3rre/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "edbd2cca-67e5-47f2-9396-93e019f26b77",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Produkcyjne",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "LuxF3rre:17:0b4b6e",
                        "ysrc": "LuxF3rre:17:c28596"
                    },
                    {
                        "uid": "5e755976-5567-4595-86f0-a3db185d79ce",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Prediction",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "LuxF3rre:17:0b4b6e",
                        "ysrc": "LuxF3rre:17:5cee62"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LuxF3rre",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 20:55:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LuxF3rre",
                "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-03-20T21:57:23.926453Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~43715291/2.embed",
            "fid": "43715291:2",
            "filename": "box_heatmap1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/43715291:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/43715291:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/43715291:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/43715291:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/43715291:2",
                "plots": "https://api.plotly.com/v2/plots/43715291:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=43715291"
            },
            "owner": "43715291",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~43715291/2/",
            "world_readable": true,
            "date_modified": "2019-03-21T19:27:39.500Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~43715291/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "25e6003f-a33e-44fb-b1c3-3d9894d297a7",
                        "type": "heatmap",
                        "zsrc": "43715291:3:5d9f59,b996cd,b054d4,547085,959c5e,7d18ec,750a29,359a53,1b6958,562502,779d45,fca300",
                        "xaxis": "x",
                        "yaxis": "y",
                        "idssrc": "43715291:3:0c401d,868896,8d19b1,6d815c,4c19ee,f94531,d56784,81952f,770d18,b3fde5,2b131e,550d87",
                        "showscale": false,
                        "showlegend": true
                    },
                    {
                        "uid": "1717cf2d-5fcb-410c-ad82-22e6f0e50106",
                        "type": "heatmap",
                        "zsrc": "43715291:3:4e352e,468b42,bb7b60,efbaaa,8abab7,6ea530,8d6261,48702b,3bd657,0b7f9f,ddbbb8,829bb7",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showscale": false
                    }
                ],
                "layout": {
                    "width": 1000,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 600,
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Live",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Yday",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 600,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~43715291",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 18:20:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "43715291",
                "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-03-20T21:57:02.870405Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/12.embed",
            "fid": "jzenemig:12",
            "filename": "simple-histogram-chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:12",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/12/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:57:03.375Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "30e1a340-8e3f-4148-9e5e-276c87519b1e",
                        "name": "mpg",
                        "type": "histogram",
                        "xsrc": "jzenemig:13:7b0dc7",
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 1.3
                            },
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "opacity": 0.8,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "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-03-20T21:56:57.885418Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sush962000/868.embed",
            "fid": "sush962000:868",
            "filename": "stacked_histogram_for_retrained_pyscene_predicted_probabilities",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sush962000:868/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sush962000:868/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/sush962000:868/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/sush962000:868/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sush962000:868",
                "plots": "https://api.plotly.com/v2/plots/sush962000:868",
                "parent": "https://api.plotly.com/v2/folders/home?user=sush962000"
            },
            "owner": "sush962000",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "correctly classified vs incorrectly classified",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~sush962000/868/correctly-classified-vs-incorrectly-classified/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:56:58.369Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sush962000/868/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "correctly classified",
                        "type": "histogram",
                        "xsrc": "sush962000:869:addcee",
                        "xbins": {
                            "end": 1.0,
                            "size": 0.1,
                            "start": 0.0
                        }
                    },
                    {
                        "name": "incorrectly classified",
                        "type": "histogram",
                        "xsrc": "sush962000:869:6aceb8",
                        "xbins": {
                            "end": 1.0,
                            "size": 0.1,
                            "start": 0.0
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "Predicted Probabilities For Pyscene Dataset"
                    },
                    "barmode": "stack"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sush962000",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-10-19 03:41:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sush962000",
                "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-03-20T21:56:06.531190Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~henryqpeng/36.embed",
            "fid": "henryqpeng:36",
            "filename": "Plotly Playground 2019-03-20 14:55:58",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/henryqpeng:36/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/henryqpeng:36/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/36/8_IXZW9ZRPBZF48WUUPN0DFXCU7YJNJR.png",
                "list-thumb": "https://api.plotly.com/v2/files/henryqpeng:36/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/henryqpeng:36",
                "plots": "https://api.plotly.com/v2/plots/henryqpeng:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=henryqpeng"
            },
            "owner": "henryqpeng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~henryqpeng/36/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:56:07.063Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~henryqpeng/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "60e7bfb3-5572-4c2c-b814-f376ba5e26c2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "ds",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:aa9ead"
                    },
                    {
                        "uid": "8585f397-6eff-44c2-bbf6-9c3f175d5c4a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:28ef07"
                    },
                    {
                        "uid": "408c7cf5-9325-43a3-9bf8-d0d28dc13908",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:d36ed9"
                    },
                    {
                        "uid": "cca51189-4da0-4a30-ba40-48a868b6cc4a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:ff948e"
                    },
                    {
                        "uid": "a4130b8e-cd22-47e5-b85f-15c3087c1214",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:a1d6bf"
                    },
                    {
                        "uid": "b9e0ac50-8ac5-4434-8bea-514c50f69def",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:6f4fb0"
                    },
                    {
                        "uid": "3d72f67e-c98c-45f4-8fce-84f9c7099e50",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:d85174"
                    },
                    {
                        "uid": "576a224f-36f0-403e-ae0f-3051262970a9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:d85174"
                    },
                    {
                        "uid": "ac05048b-a709-4064-aac1-b6aeff4e7d0d",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:d85174"
                    },
                    {
                        "uid": "96f487fa-4657-4fb5-8c8d-452c0fbe1f5a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:23d9b8"
                    },
                    {
                        "uid": "378d5e3b-1c95-49b9-b337-b2f6771aa88a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:23d9b8"
                    },
                    {
                        "uid": "af909a02-3a29-4df8-8533-d0ba3bb01875",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:23d9b8"
                    },
                    {
                        "uid": "de7d0c10-9bec-4e93-8fe1-207c67af1c4f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:980c0d"
                    },
                    {
                        "uid": "a732d007-2589-4a9b-84db-dba58c0662d4",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:980c0d"
                    },
                    {
                        "uid": "7d0614ac-f48e-45eb-ba45-9cd81ad77f18",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:980c0d"
                    },
                    {
                        "uid": "7ef40b6b-9812-4b29-b8bc-406c1eaf01b8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:3051f3"
                    },
                    {
                        "uid": "4fcbb166-6a92-4217-bbfc-16ca7eba2588",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:3051f3"
                    },
                    {
                        "uid": "f38fbdf7-e66b-42fd-844b-0cf724f6e985",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:3051f3"
                    },
                    {
                        "uid": "9a67388c-e1fb-4ce6-a268-355ca63252b3",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:37:65243b",
                        "ysrc": "henryqpeng:37:2c6ea8"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~henryqpeng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 00:01:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "henryqpeng",
                "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-03-20T21:53:09.003089Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asmagh8/24.embed",
            "fid": "asmagh8:24",
            "filename": "squarify-treemap",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asmagh8:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asmagh8:24/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/asmagh8:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/asmagh8:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asmagh8:24",
                "plots": "https://api.plotly.com/v2/plots/asmagh8:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=asmagh8"
            },
            "owner": "asmagh8",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~asmagh8/24/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:53:09.490Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asmagh8/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "352b7334-948d-4697-9b09-a416e81ab003",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "asmagh8:25:cda4e4",
                        "ysrc": "asmagh8:25:5ad548",
                        "textsrc": "asmagh8:25:04d2fd"
                    }
                ],
                "layout": {
                    "width": 700,
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false
                    },
                    "height": 700,
                    "shapes": [
                        {
                            "x0": 0.0,
                            "x1": 87.35955056179775,
                            "y0": 0.0,
                            "y1": 53.59056806002145,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(166,206,227)"
                        },
                        {
                            "x0": 0.0,
                            "x1": 87.35955056179775,
                            "y0": 53.59056806002145,
                            "y1": 100.00000000000001,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(31,120,180)"
                        },
                        {
                            "x0": 87.35955056179775,
                            "x1": 100.0,
                            "y0": 0.0,
                            "y1": 57.77777777777775,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(178,223,138)"
                        },
                        {
                            "x0": 87.35955056179775,
                            "x1": 100.0,
                            "y0": 57.77777777777775,
                            "y1": 76.29629629629626,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(51,160,44)"
                        },
                        {
                            "x0": 87.35955056179775,
                            "x1": 100.0,
                            "y0": 76.29629629629626,
                            "y1": 94.81481481481477,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(251,154,153)"
                        },
                        {
                            "x0": 87.35955056179775,
                            "x1": 99.99999999999987,
                            "y0": 94.81481481481477,
                            "y1": 100.0,
                            "line": {
                                "width": 2
                            },
                            "type": "rect",
                            "fillcolor": "rgb(227,26,28)"
                        }
                    ],
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 43.67977528089887,
                            "y": 26.795284030010723,
                            "text": "500",
                            "showarrow": false
                        },
                        {
                            "x": 43.67977528089887,
                            "y": 76.79528403001073,
                            "text": "433",
                            "showarrow": false
                        },
                        {
                            "x": 93.67977528089887,
                            "y": 28.888888888888875,
                            "text": "78",
                            "showarrow": false
                        },
                        {
                            "x": 93.67977528089887,
                            "y": 67.03703703703701,
                            "text": "25",
                            "showarrow": false
                        },
                        {
                            "x": 93.67977528089887,
                            "y": 85.55555555555551,
                            "text": "25",
                            "showarrow": false
                        },
                        {
                            "x": 93.67977528089881,
                            "y": 97.40740740740739,
                            "text": "7",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 700,
            "width": 700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asmagh8",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-13 22:28:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asmagh8",
                "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-03-20T21:52:59.063776Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mccountystat/29.embed",
            "fid": "mccountystat:29",
            "filename": "code enforcement",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mccountystat:29/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mccountystat/29/2_OEBVY80UAWK3YIAPCENNUQPZDJUBG7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/29/8_8PF6S4WEB0WUC4CI02PF6QN19WSF6K.png",
                "list-thumb": "https://api.plotly.com/v2/files/mccountystat:29/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mccountystat:29",
                "plots": "https://api.plotly.com/v2/plots/mccountystat:29",
                "parent": "https://api.plotly.com/v2/folders/mccountystat:7"
            },
            "owner": "mccountystat",
            "parent": 7,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1154,
            "web_url": "https://chart-studio.plotly.com/~mccountystat/29/",
            "world_readable": true,
            "date_modified": "2019-08-06T14:12:42.286Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mccountystat/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 3
                        },
                        "mode": "markers+lines",
                        "name": "% Responding \"Good\" or \"Excellent\"",
                        "type": "scatter",
                        "xsrc": "mccountystat:18:282005",
                        "ysrc": "mccountystat:18:624b49",
                        "marker": {
                            "size": 7
                        },
                        "transforms": [
                            {
                                "type": "filter",
                                "value": "Resident satisfaction with code enforcement - rated \"Good\" or \"Excellent\"",
                                "targetsrc": "mccountystat:18:5109c4"
                            },
                            {
                                "type": "filter",
                                "value": [
                                    "2007",
                                    "2017"
                                ],
                                "operation": "[]",
                                "targetsrc": "mccountystat:18:282005"
                            }
                        ],
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18,
                        "color": "rgb(0, 0, 0)",
                        "family": "Roboto"
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 14
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2006.4025509544533,
                            2017.5974490455467
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Year</b>"
                        },
                        "nticks": 4,
                        "ticklen": -1,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 18,
                            "color": "rgb(92, 94, 105)",
                            "family": "Roboto"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": -1,
                        "tickformat": "",
                        "showexponent": "none",
                        "separatethousands": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            100
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>% of Respondents</b>"
                        },
                        "nticks": -1,
                        "ticklen": -1,
                        "tickfont": {
                            "size": 18,
                            "color": "rgb(66, 68, 71)"
                        },
                        "autorange": false,
                        "tickwidth": -1,
                        "fixedrange": true,
                        "ticksuffix": "%"
                    },
                    "legend": {
                        "x": 0.813773243320982,
                        "y": 0.8146853146853147,
                        "font": {
                            "family": "Roboto"
                        },
                        "xanchor": "center",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 20,
                        "t": 20
                    },
                    "autosize": true,
                    "colorway": [
                        "#3366cc",
                        "#dc3912",
                        "#ff9900",
                        "#109618",
                        "#990099",
                        "#0099c6",
                        "#dd4477",
                        "#66aa00",
                        "#b82e2e",
                        "#316395"
                    ],
                    "dragmode": "orbit",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event+select",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#0508b8"
                            ],
                            [
                                0.08333333333333333,
                                "#1910d8"
                            ],
                            [
                                0.16666666666666666,
                                "#3c19f0"
                            ],
                            [
                                0.25,
                                "#6b1cfb"
                            ],
                            [
                                0.3333333333333333,
                                "#981cfd"
                            ],
                            [
                                0.4166666666666667,
                                "#bf1cfd"
                            ],
                            [
                                0.5,
                                "#dd2bfd"
                            ],
                            [
                                0.5833333333333334,
                                "#f246fe"
                            ],
                            [
                                0.6666666666666666,
                                "#fc67fd"
                            ],
                            [
                                0.75,
                                "#fe88fc"
                            ],
                            [
                                0.8333333333333334,
                                "#fea5fd"
                            ],
                            [
                                0.9166666666666666,
                                "#febefe"
                            ],
                            [
                                1,
                                "#fec3fe"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 11,
                            "color": "#000",
                            "family": "Roboto"
                        },
                        "bgcolor": "#FFF"
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mccountystat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-06-15 16:16:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mccountystat",
                "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-03-20T21:49:05.114090Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LuxF3rre/14.embed",
            "fid": "LuxF3rre:14",
            "filename": "Plotly Playground 2019-03-20 22:49:04",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/LuxF3rre:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/LuxF3rre:14/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LuxF3rre/14/8_M2183AHH8RP7JCFGUBH7F5SML02RNB.png",
                "list-thumb": "https://api.plotly.com/v2/files/LuxF3rre:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LuxF3rre:14",
                "plots": "https://api.plotly.com/v2/plots/LuxF3rre:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=LuxF3rre"
            },
            "owner": "LuxF3rre",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LuxF3rre/14/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:49:05.569Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LuxF3rre/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e9e993b9-0d34-4984-a123-9681e26c1f8b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Produkcyjne",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "LuxF3rre:15:158548",
                        "ysrc": "LuxF3rre:15:537451"
                    },
                    {
                        "uid": "d3c27f77-5b15-431a-9d14-3217d2214200",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Prediction",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "LuxF3rre:15:158548",
                        "ysrc": "LuxF3rre:15:f2b863"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LuxF3rre",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 20:55:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LuxF3rre",
                "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-03-20T21:48:11.949521Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/10.embed",
            "fid": "jzenemig:10",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:10",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Simple Pie Chart",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/10/simple-pie-chart/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:48:12.428Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "dea62632-90ec-4164-8d54-40ff731f8b4c",
                        "type": "pie",
                        "labelssrc": "jzenemig:11:d765e5",
                        "valuessrc": "jzenemig:11:00ba77"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Simple Pie Chart"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "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-03-20T21:47:08.283788Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/8.embed",
            "fid": "jzenemig:8",
            "filename": "color-bar-chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:8",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Custom Colors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/8/custom-colors/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:47:08.738Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "bd5c72b3-7f65-418e-a2d6-8a09197a011c",
                        "type": "bar",
                        "xsrc": "jzenemig:9:50a04f",
                        "ysrc": "jzenemig:9:59df96",
                        "marker": {
                            "colorsrc": "jzenemig:9:826a15"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Custom Colors"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}