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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzE5JTNBMDglM0EyNi45NzU0NDUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsxOSUzQTE4JTNBNTYuMjA5Nzk0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T19:18:56.209794Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~susanli2005/163.embed",
            "fid": "susanli2005:163",
            "filename": "Plot 163",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/susanli2005/163/9_F2M11ZR8WMPNBJJLEZGZ60A4EYE2B0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/susanli2005/163/2_IZJZA42C8A71MUK8MZOBEWBXBGQQ62.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/susanli2005/163/8_OIE63C0Y0VIDGVF9UC8CDMXOA2P22O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/susanli2005/163/9_F2M11ZR8WMPNBJJLEZGZ60A4EYE2B0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/susanli2005:163",
                "plots": "https://api.plotly.com/v2/plots/susanli2005:163",
                "parent": "https://api.plotly.com/v2/folders/home?user=susanli2005"
            },
            "owner": "susanli2005",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~susanli2005/163/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:18:56.255Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~susanli2005/163/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "#8NGHTN5"
                        },
                        "name": "Volume",
                        "type": "bar",
                        "xsrc": "susanli2005:162:2b8842",
                        "ysrc": "susanli2005:162:3452c3"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Raleway, sans-serif"
                    },
                    "title": {
                        "text": "Time Series Intraday Volume Bar Chart"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            332.5
                        ],
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            4188.596172631579
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "gridwidth": 2
                    },
                    "bargap": 0.05,
                    "autosize": true,
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~susanli2005",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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": "2016-10-05 13:49:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "susanli2005",
                "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-20T19:17:39.880760Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wangrunyu95/1.embed",
            "fid": "wangrunyu95:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/wangrunyu95/1/9_1W9J2KY0TH99VC5ECEC25LQN09U3MC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/wangrunyu95/1/2_DFL41HEVV51Q95UWI1F95BH2JCQBYK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wangrunyu95/1/8_AB7E5F9VV81Q2E234UFPT5EUFJR6NF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/wangrunyu95/1/9_1W9J2KY0TH99VC5ECEC25LQN09U3MC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wangrunyu95:1",
                "plots": "https://api.plotly.com/v2/plots/wangrunyu95:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=wangrunyu95"
            },
            "owner": "wangrunyu95",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~wangrunyu95/1/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:17:39.895Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wangrunyu95/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6fdcf68e-e987-11e8-be2a-0242ac130002",
                        "hole": 0.5,
                        "name": "",
                        "type": "pie",
                        "domain": {
                            "x": [
                                0,
                                0.5
                            ]
                        },
                        "marker": {
                            "colors": [
                                "magma"
                            ]
                        },
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "wangrunyu95:0:993db5",
                        "valuessrc": "wangrunyu95:0:a03b81"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Select any activities that make up an important part of your role at work"
                    },
                    "width": 1100,
                    "height": 500,
                    "annotations": [
                        {
                            "font": {
                                "size": 20
                            }
                        },
                        {
                            "x": 0.2,
                            "y": 0.5,
                            "text": "Activity",
                            "showarrow": false
                        }
                    ],
                    "hiddenlabels": []
                }
            },
            "height": 500,
            "width": 1100,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~wangrunyu95",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 19:17:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wangrunyu95",
                "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-20T19:14:59.955270Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/12.embed",
            "fid": "i.f.student:12",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/12/9_6KF5GWXICOQBBRLNY0NND6FJ649YUB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/12/2_F8GTK1O0844D7RYN9WH6Z2ALRK4C5L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/12/8_LBFBEZAQMXUUGJ4JADMAQYB7HFHJ6O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/12/9_6KF5GWXICOQBBRLNY0NND6FJ649YUB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:12",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Top 10 road segments based on Criticalility and Vulnerability",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/12/top-10-road-segments-based-on-criticalility-and-vulnerability/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:15:00.572Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~i.f.student/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f1ce9cf4-937c-43e5-8515-cc311190cc72",
                        "mode": "markers",
                        "name": "R roads",
                        "type": "scatter",
                        "xsrc": "i.f.student:13:297728",
                        "ysrc": "i.f.student:13:22a726",
                        "marker": {
                            "size": 12,
                            "color": "orange"
                        }
                    },
                    {
                        "uid": "4d0e6771-6dd2-4290-b92a-c0678fe489ce",
                        "mode": "markers",
                        "name": "N roads",
                        "type": "scatter",
                        "xsrc": "i.f.student:13:5e69ac",
                        "ysrc": "i.f.student:13:39722a",
                        "marker": {
                            "size": 12,
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Top 10 road segments based on Criticalility and Vulnerability"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Vulnerability"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Criticality"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~i.f.student",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.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 16:46:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "i.f.student",
                "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-20T19:14:41.809447Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Salihimc/107.embed",
            "fid": "Salihimc:107",
            "filename": "Plot 107",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Salihimc/107/9_5EXH36YMCMV9ZO0QK72QONPZ8O8ZKA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Salihimc/107/2_U5BW04UVUD8M2B7D0ORPAHOFF9NQCK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/107/8_D3E5KBCSRGRIZFLX7SJT6Q1LGWEHQB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/107/9_5EXH36YMCMV9ZO0QK72QONPZ8O8ZKA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Salihimc:107",
                "plots": "https://api.plotly.com/v2/plots/Salihimc:107",
                "parent": "https://api.plotly.com/v2/folders/home?user=Salihimc"
            },
            "owner": "Salihimc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Salihimc/107/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:14:41.861Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Salihimc/107/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0ee78c1e-4b44-11e9-8d15-60f677db332c",
                        "mode": "lines",
                        "name": "Average Quarterly Sales",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "Salihimc:106:9af6d0",
                        "ysrc": "Salihimc:106:ec971d",
                        "marker": {
                            "color": "#D88D0B"
                        }
                    },
                    {
                        "uid": "0ee78c1f-4b44-11e9-8f15-60f677db332c",
                        "mode": "lines+markers",
                        "name": "Quarterly Sales in 2018",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "Salihimc:106:9af6d0",
                        "ysrc": "Salihimc:106:800855",
                        "marker": {
                            "color": "#FAE411"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Average Quarterly Sales in 2016 - 2017 vs. Quarterly Sales in 2018 of Supradyn 30"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.19298799747315226,
                            3.192987997473152
                        ],
                        "title": {
                            "text": "Quarter"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            196129.67344862665,
                            432661.5961342828
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Salihimc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-10-28 14:39:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Salihimc",
                "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-20T19:12:31.438512Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lboske/31.embed",
            "fid": "lboske:31",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lboske/31/9_7CFKBD5FPV10JNCFMWO59D8XN47L4V.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lboske/31/2_YEIDORFH8A76H8QPFYIIVHLTOD0WVC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/31/8_K22NFA8LUQEU56T3IURN40O0TCLARM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/31/9_7CFKBD5FPV10JNCFMWO59D8XN47L4V.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lboske:31",
                "plots": "https://api.plotly.com/v2/plots/lboske:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=lboske"
            },
            "owner": "lboske",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Vulnerability vs Criticality",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lboske/31/vulnerability-vs-criticality/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:12:35.846Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lboske/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1502e098-bd50-4ea4-8384-433348e2e6c2",
                        "name": "Vulnerability",
                        "type": "scatter",
                        "xsrc": "lboske:32:f37e30",
                        "ysrc": "lboske:32:bbd643"
                    },
                    {
                        "uid": "586fb06a-d498-4ef0-88b1-67ce1bd5db28",
                        "name": "Criticality",
                        "type": "scatter",
                        "xsrc": "lboske:32:f37e30",
                        "ysrc": "lboske:32:b07415"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lboske",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.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-20 15:01:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lboske",
                "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-20T19:11:16.359782Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ZXJTABNU/207.embed",
            "fid": "ZXJTABNU:207",
            "filename": "Gast_compr_RW",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ZXJTABNU/207/9_1TFNIAM9XI0G2VBNF0KXH31PDXPFNT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ZXJTABNU/207/2_N6HNJ2PNJKAESINUGKR4HYC9H3E0PX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ZXJTABNU/207/8_KK2NHTYOULVKMFZ3Q8F5F2Z1Z4X295.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ZXJTABNU/207/9_1TFNIAM9XI0G2VBNF0KXH31PDXPFNT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ZXJTABNU:207",
                "plots": "https://api.plotly.com/v2/plots/ZXJTABNU:207",
                "parent": "https://api.plotly.com/v2/folders/home?user=ZXJTABNU"
            },
            "owner": "ZXJTABNU",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Cluster 0, Cluster 1, Cluster 2, Cluster 3, Cluster 4",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ZXJTABNU/207/cluster-0-cluster-1-cluster-2-cluster-3-cluster-4/",
            "world_readable": true,
            "date_modified": "2019-03-23T15:19:35.977Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ZXJTABNU/207/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "04c67a32-bc2d-475c-8f70-56318b269682",
                        "name": "Cluster 0",
                        "type": "box",
                        "ysrc": "ZXJTABNU:208:afef50",
                        "jitter": 0.3,
                        "marker": {
                            "color": "rgb(255,0,0)"
                        },
                        "boxpoints": "all"
                    },
                    {
                        "uid": "8bb86a87-3cea-42eb-8a83-23ed69cd7801",
                        "name": "Cluster 1",
                        "type": "box",
                        "ysrc": "ZXJTABNU:208:4aaea4",
                        "jitter": 0.3,
                        "marker": {
                            "color": "rgb(0,255,0)"
                        },
                        "boxpoints": "all"
                    },
                    {
                        "uid": "40dabcad-a57b-4242-8109-c721ec27f42a",
                        "name": "Cluster 2",
                        "type": "box",
                        "ysrc": "ZXJTABNU:208:374ff3",
                        "jitter": 0.3,
                        "marker": {
                            "color": "rgb(0,0,255)"
                        },
                        "boxpoints": "all"
                    },
                    {
                        "uid": "14f634ba-2bbd-4eca-8a03-5c611f2f0695",
                        "name": "Cluster 3",
                        "type": "box",
                        "ysrc": "ZXJTABNU:208:81dbb2",
                        "jitter": 0.3,
                        "marker": {
                            "color": "rgb(255,255,0)"
                        },
                        "boxpoints": "all"
                    },
                    {
                        "uid": "a59fde86-4d00-4e6e-8793-41ab3820e563",
                        "name": "Cluster 4",
                        "type": "box",
                        "ysrc": "ZXJTABNU:208:09bdb9",
                        "jitter": 0.3,
                        "marker": {
                            "color": "rgb(0,255,255)"
                        },
                        "boxpoints": "all"
                    }
                ],
                "layout": {
                    "yaxis": {
                        "title": {
                            "text": "Gast_compr_RW"
                        },
                        "zeroline": false
                    },
                    "boxmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ZXJTABNU",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.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": "2018-03-07 19:40:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ZXJTABNU",
                "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-20T19:10:21.843662Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~susanli2005/161.embed",
            "fid": "susanli2005:161",
            "filename": "Plot 161",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/susanli2005/161/9_DQCIRZPCCYEYXBR7MEJD6W3V1OCMF9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/susanli2005/161/2_Z8Y5KPYNRJWH0I9YEM3WI5W56NJPSZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/susanli2005/161/8_Q7Q3T0FA2AKHZHBBLD0PBKVF3IA1U0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/susanli2005/161/9_DQCIRZPCCYEYXBR7MEJD6W3V1OCMF9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/susanli2005:161",
                "plots": "https://api.plotly.com/v2/plots/susanli2005:161",
                "parent": "https://api.plotly.com/v2/folders/home?user=susanli2005"
            },
            "owner": "susanli2005",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~susanli2005/161/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:10:21.903Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~susanli2005/161/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "ohlc",
                        "xsrc": "susanli2005:160:c3a188",
                        "xaxis": "x",
                        "yaxis": "y",
                        "lowsrc": "susanli2005:160:cd6093",
                        "highsrc": "susanli2005:160:abcf7d",
                        "opensrc": "susanli2005:160:49b7e9",
                        "closesrc": "susanli2005:160:3d147e",
                        "decreasing": {
                            "line": {
                                "color": "red"
                            }
                        },
                        "increasing": {
                            "line": {
                                "color": "black"
                            }
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Raleway, sans-serif"
                    },
                    "title": {
                        "text": "Time Series of Intraday Trading Data"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            332.5
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "autorange": true,
                        "tickangle": -45,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                332.5
                            ],
                            "yaxis": {
                                "rangemode": "match"
                            },
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "range": [
                            3982.786111111111,
                            4031.063888888889
                        ],
                        "zeroline": false,
                        "autorange": true,
                        "gridwidth": 2
                    },
                    "autosize": true,
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~susanli2005",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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": "2016-10-05 13:49:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "susanli2005",
                "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-20T19:09:55.201381Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lboske/29.embed",
            "fid": "lboske:29",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lboske/29/9_BUDSYMR5MI39TFVTHOVMM172UAKSIO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lboske/29/2_ANZNZGW22SSPHH14K0XNJ9AB1HGXUJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/29/8_XDESBAXG5XRWDDDNZ6LFSHQ8WVXTHF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/29/9_BUDSYMR5MI39TFVTHOVMM172UAKSIO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lboske:29",
                "plots": "https://api.plotly.com/v2/plots/lboske:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=lboske"
            },
            "owner": "lboske",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lboske/29/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:09:55.680Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lboske/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "636de333-1634-479f-8dc1-a092cd6b7ede",
                        "type": "scatter",
                        "xsrc": "lboske:30:583405",
                        "ysrc": "lboske:30:ea38cb"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lboske",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.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-20 15:01:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lboske",
                "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-20T19:09:14.475673Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Salihimc/105.embed",
            "fid": "Salihimc:105",
            "filename": "Plot 105",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Salihimc/105/9_QRFQ07UJ0QPAVAYU9VAJID7R6E9H1T.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Salihimc/105/2_TRD3ZXW1Q86IHGR7HXLOC8R5RW8LHQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/105/8_MNFWDEQTIUHQOQV0OLPT00ILV7X7OY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/105/9_QRFQ07UJ0QPAVAYU9VAJID7R6E9H1T.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Salihimc:105",
                "plots": "https://api.plotly.com/v2/plots/Salihimc:105",
                "parent": "https://api.plotly.com/v2/folders/home?user=Salihimc"
            },
            "owner": "Salihimc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~Salihimc/105/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:09:14.491Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Salihimc/105/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9a692086-4b43-11e9-960f-60f677db332c",
                        "mode": "lines",
                        "name": "Pharmaton 30",
                        "text": " ",
                        "type": "scatter",
                        "xsrc": "Salihimc:104:c91bbd",
                        "ysrc": "Salihimc:104:1864c2",
                        "marker": {
                            "color": "#581E2D"
                        }
                    },
                    {
                        "uid": "9a692087-4b43-11e9-9306-60f677db332c",
                        "mode": "lines",
                        "name": "Supradyn 30",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "Salihimc:104:c91bbd",
                        "ysrc": "Salihimc:104:a6d3a4",
                        "marker": {
                            "color": "#FAE411"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Quarterly Sales in 2018"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            3
                        ],
                        "title": {
                            "text": "Quarter"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            203306.44444444444,
                            401897.55555555556
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Salihimc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-10-28 14:39:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Salihimc",
                "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-20T19:08:26.975445Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mccountystat/21.embed",
            "fid": "mccountystat:21",
            "filename": "% Access to Childcare",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mccountystat/21/9_COX9G16USAK6P4EX42YKVGFHXOAKHX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mccountystat/21/2_DZPBUWZ2EBSNRJ88CAK6ND07SY8BVD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/21/8_ETNY179BK5YGH7N6C46412VTRH1L19.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/21/9_COX9G16USAK6P4EX42YKVGFHXOAKHX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mccountystat:21",
                "plots": "https://api.plotly.com/v2/plots/mccountystat:21",
                "parent": "https://api.plotly.com/v2/folders/mccountystat:7"
            },
            "owner": "mccountystat",
            "parent": 7,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 83,
            "web_url": "https://chart-studio.plotly.com/~mccountystat/21/",
            "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/21/",
            "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
                        },
                        "visible": true,
                        "transforms": [
                            {
                                "type": "filter",
                                "value": "Availability of affordable child care/preschool - rated \"Good\" or \"Excellent\"",
                                "targetsrc": "mccountystat:18:5109c4"
                            },
                            {
                                "type": "filter",
                                "value": [
                                    "2007",
                                    "2017"
                                ],
                                "operation": "[]",
                                "targetsrc": "mccountystat:18:282005"
                            }
                        ],
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "color": "rgb(0, 0, 0)",
                        "family": "Overpass"
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 14
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2006.4145253115864,
                            2017.5854746884136
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "family": "Roboto"
                            },
                            "text": "<b>Year</b>"
                        },
                        "nticks": 7,
                        "ticklen": -1,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 17,
                            "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": {
                                "family": "Roboto"
                            },
                            "text": "<b>% of Respondents</b>"
                        },
                        "nticks": -1,
                        "ticklen": -1,
                        "tickfont": {
                            "size": 17,
                            "color": "rgb(66, 68, 71)",
                            "family": "Roboto"
                        },
                        "autorange": false,
                        "tickwidth": -1,
                        "fixedrange": true,
                        "ticksuffix": "%"
                    },
                    "legend": {
                        "x": 0.96,
                        "y": 0.8107409171180825,
                        "font": {
                            "size": 15,
                            "family": "Roboto"
                        },
                        "xanchor": "auto",
                        "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
            }
        }
    ]
}