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=cj0xJnA9MjAxOS0wMy0yMCsyMCUzQTM2JTNBNDQuNjI5MTY3JTJCMDAlM0EwMA%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=cD0yMDE5LTAzLTIwKzIwJTNBMzYlM0E0Ni44ODA1OTAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMCUzQTQxJTNBNTAuNjAyMzc5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T20:41:50.602379Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thattanmay/2.embed",
            "fid": "thattanmay:2",
            "filename": "choropleth_full_usa",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/thattanmay:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thattanmay:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thattanmay:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/thattanmay:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thattanmay:2",
                "plots": "https://api.plotly.com/v2/plots/thattanmay:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=thattanmay"
            },
            "owner": "thattanmay",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "USA by Unemployment %",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thattanmay/2/usa-by-unemployment/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:56:38.485Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thattanmay/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [],
                        "y": [],
                        "uid": "ed2a2e11-692e-4542-8295-d46e7399f774",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "< 1.0",
                        "type": "scatter",
                        "fillcolor": "#f7fbff",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "62412d1e-6724-48e1-8e8f-7c6a99c7bbe3",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "1.0 - 1.73",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:19fa47",
                        "ysrc": "thattanmay:4:003463",
                        "fillcolor": "#ebf3fb",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "537c9c48-7b4e-4050-b6cd-db36c9872e19",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "1.73 - 2.47",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:c1df56",
                        "ysrc": "thattanmay:4:071316",
                        "fillcolor": "#deebf7",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "2128fab7-57c6-4882-8cc5-eb840538d13f",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "2.47 - 3.2",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:dadaeb",
                        "ysrc": "thattanmay:4:906d0c",
                        "fillcolor": "#d2e3f3",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "d26a3d5b-b654-45c0-a2f5-fb9fec040900",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "3.2 - 3.93",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:485775",
                        "ysrc": "thattanmay:4:c8fc9b",
                        "fillcolor": "#c6dbef",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "56a27bdb-e7fe-4671-aef6-d0880959ed2a",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "3.93 - 4.67",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:05ed99",
                        "ysrc": "thattanmay:4:a2c4d4",
                        "fillcolor": "#b3d2e9",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "30fcabaa-a9a3-4fa5-b48d-321f49da0208",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "4.67 - 5.4",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:348687",
                        "ysrc": "thattanmay:4:494a64",
                        "fillcolor": "#9ecae1",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "92ceb8e8-5b90-4989-98ca-7e08a1176ab9",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "5.4 - 6.13",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:262c5d",
                        "ysrc": "thattanmay:4:6d7ac6",
                        "fillcolor": "#85bcdb",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "91a42bc1-633e-4d22-810f-c9d6ff00cb2e",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "6.13 - 6.87",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:947961",
                        "ysrc": "thattanmay:4:5d24bc",
                        "fillcolor": "#6baed6",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "b09d67a2-0217-417e-9d75-d1b690c7937a",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "6.87 - 7.6",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:b53f1a",
                        "ysrc": "thattanmay:4:d1653d",
                        "fillcolor": "#57a0ce",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "1dce52c7-81b1-49c4-b03f-7cae69593c8a",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "7.6 - 8.33",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:da8f2e",
                        "ysrc": "thattanmay:4:35637c",
                        "fillcolor": "#4292c6",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "ae171501-fcba-4cc5-91f2-b28d103c1d9c",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "8.33 - 9.07",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:64d50b",
                        "ysrc": "thattanmay:4:3015c5",
                        "fillcolor": "#3082be",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "52a4a3f2-2ee7-4abc-8aaf-c6a7152b1905",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "9.07 - 9.8",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:7f2ead",
                        "ysrc": "thattanmay:4:97b35c",
                        "fillcolor": "#2171b5",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "fa34225c-558f-46fc-865b-28a622058839",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "9.8 - 10.53",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:49bd4e",
                        "ysrc": "thattanmay:4:13c5dc",
                        "fillcolor": "#1361a9",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "5020c2dc-7a5f-4683-96d4-a60d6ee0825f",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "10.53 - 11.27",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:71668a",
                        "ysrc": "thattanmay:4:bb328c",
                        "fillcolor": "#08519c",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "393a4a0d-cf2f-448e-9ba3-1ac330e1b96f",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "11.27 - 12.0",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:66d96e",
                        "ysrc": "thattanmay:4:dc41c3",
                        "fillcolor": "#0b4083",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "54b6f164-3872-4f66-828d-6908e35f2387",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 0
                        },
                        "mode": "lines",
                        "name": "> 12.0",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:f0e3de",
                        "ysrc": "thattanmay:4:ce4476",
                        "fillcolor": "#08306b",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "c11f1ecd-cc57-4e20-aa9b-28593eab9e2e",
                        "mode": "markers",
                        "name": "US Counties",
                        "type": "scatter",
                        "xsrc": "thattanmay:4:801567",
                        "ysrc": "thattanmay:4:57d28d",
                        "marker": {
                            "color": "white",
                            "opacity": 0
                        },
                        "textsrc": "thattanmay:4:1aa319",
                        "selected": {
                            "marker": {
                                "opacity": 0
                            }
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "unselected": {
                            "marker": {
                                "opacity": 0
                            }
                        },
                        "legendgroup": "centroids"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "USA by Unemployment %"
                    },
                    "width": 900,
                    "xaxis": {
                        "range": [
                            -125.0,
                            -55.0
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            24.93103448275862,
                            49.06896551724138
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "height": 450,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "xanchor": "right",
                        "yanchor": "top",
                        "traceorder": "reversed"
                    },
                    "margin": {
                        "b": 20,
                        "l": 20,
                        "r": 20,
                        "t": 40
                    },
                    "dragmode": "select",
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 1,
                            "y": 1.05,
                            "text": "<b>% unemployed</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 450,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thattanmay",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.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-19 21:15:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thattanmay",
                "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-20T20:41:48.276920Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~anurupm/32.embed",
            "fid": "anurupm:32",
            "filename": "candlestick_datetime",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/anurupm/32/9_V4U71156HJ3M7KNLRAMF3X0QQQNY0P.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/anurupm:32/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/anurupm/32/8_IQPSSQDJY0LRXWCEAEU0QPZKZ2APFS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/anurupm/32/9_V4U71156HJ3M7KNLRAMF3X0QQQNY0P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/anurupm:32",
                "plots": "https://api.plotly.com/v2/plots/anurupm:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=anurupm"
            },
            "owner": "anurupm",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~anurupm/32/",
            "world_readable": true,
            "date_modified": "2019-03-21T05:43:13.416Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~anurupm/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "da4f7af4-e389-4eac-a3a5-06c440549fc3",
                        "type": "bar",
                        "xsrc": "anurupm:33:15e32e",
                        "ysrc": "anurupm:33:683b6a"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~anurupm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.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": "2018-08-25 17:34:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "anurupm",
                "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-20T20:40:56.844101Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/36.embed",
            "fid": "i.f.student:36",
            "filename": "plot from API (17)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/36/9_EAYYJFW0H8Y3BDO7D2124E3CG0XPB6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/36/2_SI35YHN70K8NYAG5TS0EH4MPLEDBPF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/36/8_75NKXBL0YDJXKNSVUF0CVP4IOAL79S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/36/9_EAYYJFW0H8Y3BDO7D2124E3CG0XPB6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:36",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Figure 8 <br> Top 10 segments of segment score",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/36/figure-8-top-10-segments-of-segment-score/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:40:58.022Z",
            "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/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "530b9383-f0b9-4dfb-b030-b860094d79b8",
                        "name": "Absolute",
                        "type": "scatter",
                        "xsrc": "i.f.student:37:4c4de0",
                        "ysrc": "i.f.student:37:dea13d"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Figure 8 <br> Top 10 segments of segment score"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "rgb(31,119,180)"
                            },
                            "text": "Absolute"
                        },
                        "tickfont": {
                            "color": "rgb(31,119,180)"
                        }
                    },
                    "yaxis2": {
                        "side": "left",
                        "title": {
                            "font": {
                                "color": "rgb(255,127,14)"
                            },
                            "text": "Percentage"
                        },
                        "anchor": "free",
                        "position": 1,
                        "showgrid": false,
                        "tickfont": {
                            "color": "rgb(255,127,14)"
                        },
                        "overlaying": "y"
                    }
                }
            },
            "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-20T20:40:44.804995Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pasherman/24.embed",
            "fid": "pasherman:24",
            "filename": "StrokesGained",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pasherman/24/9_M7RL59I1BO84TMAXLZ9TTXPWCI82R6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pasherman/24/2_GTCOIWBY1I1I3LV4E6B9XBOJVOUBMY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pasherman/24/8_B2LZ8EUG66UAOJ5R7PGLZZU9ZJN67T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pasherman/24/9_M7RL59I1BO84TMAXLZ9TTXPWCI82R6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pasherman:24",
                "plots": "https://api.plotly.com/v2/plots/pasherman:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=pasherman"
            },
            "owner": "pasherman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Paul Strokes Gained",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~pasherman/24/paul-strokes-gained/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:48:53.250Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pasherman/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "09b3f553-e986-45ff-a841-90911e5cb8ad",
                        "type": "bar",
                        "xsrc": "pasherman:25:4f8065",
                        "ysrc": "pasherman:25:1bfa92",
                        "marker": {
                            "line": {
                                "color": "rgb(8,48,107)",
                                "width": 1.5
                            },
                            "color": "rgb(158,202,225)"
                        },
                        "opacity": 0.6,
                        "textsrc": "pasherman:25:fe1d90",
                        "textposition": "auto"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Paul Strokes Gained"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pasherman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-03 15:06:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pasherman",
                "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-20T20:40:07.332815Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lboske/39.embed",
            "fid": "lboske:39",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lboske/39/9_114KY90CU65WW9Q1GJDTEQTL3MO715.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lboske/39/2_Q11GN3CCWBWAIWNRRDG7O0TV58OUO7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/39/8_6G4WRFUC6M631OZQWRBKLUQ54QE7MM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lboske/39/9_114KY90CU65WW9Q1GJDTEQTL3MO715.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lboske:39",
                "plots": "https://api.plotly.com/v2/plots/lboske:39",
                "parent": "https://api.plotly.com/v2/folders/home?user=lboske"
            },
            "owner": "lboske",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Top 10 vulnerable and critical roads",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lboske/39/top-10-vulnerable-and-critical-roads/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:40:07.820Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lboske/39/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1a8a6253-6dde-4622-addc-ca042c3669aa",
                        "name": "Vulnerability",
                        "type": "scatter",
                        "xsrc": "lboske:40:57efe9",
                        "ysrc": "lboske:40:2a1595"
                    },
                    {
                        "uid": "d7ca0ea3-df18-4897-859f-491e19add0b7",
                        "name": "Criticality",
                        "type": "scatter",
                        "xsrc": "lboske:40:57efe9",
                        "ysrc": "lboske:40:d85f96"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Top 10 vulnerable and critical roads"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Road name"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Normalized score"
                        }
                    }
                }
            },
            "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-20T20:39:37.603337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~keeganhughes/6.embed",
            "fid": "keeganhughes:6",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/6/9_8MQ1T0PQPZ7M1SQK7AA7IPU2TJ3UX0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/6/2_0LW2W2MTXXWER2XM67VHEXL37M9V7R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/6/8_OWRGNRJCUONEU6GUEN21LTGGBUMF4J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/6/9_8MQ1T0PQPZ7M1SQK7AA7IPU2TJ3UX0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/keeganhughes:6",
                "plots": "https://api.plotly.com/v2/plots/keeganhughes:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=keeganhughes"
            },
            "owner": "keeganhughes",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Scottish Referendum Voters who now want Independence",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~keeganhughes/6/scottish-referendum-voters-who-now-want-independence/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:39:38.151Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~keeganhughes/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "colorsrc": "keeganhughes:7:895770",
                            "valuesrc": "keeganhughes:7:c09411",
                            "sourcesrc": "keeganhughes:7:205d05",
                            "targetsrc": "keeganhughes:7:fcdc66"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0
                            },
                            "colorsrc": "keeganhughes:7:895770",
                            "labelsrc": "keeganhughes:7:a66b7f",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Scottish Referendum Voters who now want Independence",
                    "height": 772
                }
            },
            "height": 772,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~keeganhughes",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-26 23:51:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "keeganhughes",
                "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-20T20:38:12.142414Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aprakash1986/0.embed",
            "fid": "aprakash1986:0",
            "filename": "basic_gp_regression_notebook",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/aprakash1986/0/9_9SPAXEXXD5UEP7XHM08WSNHBGBUMLJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/aprakash1986/0/2_86OHSILFNAC1TAMK5SPCW9UJAIPF0W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aprakash1986/0/8_KJY89FTH3CXMGSAYHLQ6OAQZDKBJJZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aprakash1986/0/9_9SPAXEXXD5UEP7XHM08WSNHBGBUMLJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aprakash1986:0",
                "plots": "https://api.plotly.com/v2/plots/aprakash1986:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=aprakash1986"
            },
            "owner": "aprakash1986",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Data, Mean, Confidence, Confidence",
            "views": 15,
            "web_url": "https://chart-studio.plotly.com/~aprakash1986/0/data-mean-confidence-confidence/",
            "world_readable": true,
            "date_modified": "2019-05-24T22:35:17.980Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aprakash1986/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5677f332-1728-40d4-9942-7b8472466530",
                        "mode": "markers",
                        "name": "Data",
                        "type": "scatter",
                        "xsrc": "aprakash1986:1:260dde",
                        "ysrc": "aprakash1986:1:e6c90a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "black",
                            "symbol": "x"
                        },
                        "showlegend": true
                    },
                    {
                        "uid": "99f82570-ee67-4d49-969f-0bada5749fb4",
                        "line": {
                            "color": "#3465a4",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Mean",
                        "type": "scatter",
                        "xsrc": "aprakash1986:1:cdca03",
                        "ysrc": "aprakash1986:1:860a0e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": true
                    },
                    {
                        "uid": "8eed1769-f550-4d91-88f9-01d9c2343047",
                        "line": {
                            "color": "#204a87",
                            "width": 0.4
                        },
                        "mode": "lines",
                        "name": "Confidence",
                        "type": "scatter",
                        "xsrc": "aprakash1986:1:cdca03",
                        "ysrc": "aprakash1986:1:2e4811",
                        "xaxis": "x",
                        "yaxis": "y",
                        "opacity": 0.3,
                        "fillcolor": "rgba(114, 159, 207, 0.3)",
                        "showlegend": false,
                        "legendgroup": "Confidence_fill_(1,1)"
                    },
                    {
                        "uid": "8eb67035-f7c3-45b5-9278-e50543984af6",
                        "fill": "tonextx",
                        "line": {
                            "color": "#204a87",
                            "width": 0.4
                        },
                        "mode": "lines",
                        "name": "Confidence",
                        "type": "scatter",
                        "xsrc": "aprakash1986:1:cdca03",
                        "ysrc": "aprakash1986:1:a6ea7f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "opacity": 0.3,
                        "fillcolor": "rgba(114, 159, 207, 0.3)",
                        "showlegend": true,
                        "legendgroup": "Confidence_fill_(1,1)"
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Raleway, sans-serif"
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aprakash1986",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 23:44:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aprakash1986",
                "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-20T20:37:57.801747Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~parka/24.embed",
            "fid": "parka:24",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/parka/24/9_J1BBEY94NYWZGEX9B3JEMNYDTUO3FO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/parka/24/2_A1EDZ2JC8O4W82CEHMG9QMRO8GDMDQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/parka/24/8_KOAHL3MCK6LDUAZQD4WHN93DGSL7DW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/parka/24/9_J1BBEY94NYWZGEX9B3JEMNYDTUO3FO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/parka:24",
                "plots": "https://api.plotly.com/v2/plots/parka:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=parka"
            },
            "owner": "parka",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "EMOB Client Product Flow",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~parka/24/emob-client-product-flow/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:37:58.343Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~parka/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "parka:25:19cdab",
                            "sourcesrc": "parka:25:83430e",
                            "targetsrc": "parka:25:3a7018"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "labelsrc": "parka:25:7e0ec4",
                            "thickness": 20
                        },
                        "type": "sankey",
                        "orientation": "h",
                        "valueformat": ",d",
                        "valuesuffix": ""
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "EMOB Client Product Flow"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~parka",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-13 15:10:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "parka",
                "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-20T20:37:37.911579Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/34.embed",
            "fid": "i.f.student:34",
            "filename": "plot from API (16)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/34/9_P4RPKDTIJPIJ3DURLW0ZU7Q973965O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/34/2_CI0S86Q7DL8EEPUZ8THIWKB3T9BIAR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/34/8_6VP53WZMIG6GA5XMPHDZSF7L46WIJJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/34/9_P4RPKDTIJPIJ3DURLW0ZU7Q973965O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:34",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Figure 8 <br> Top 10 segments of segment score",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/34/figure-8-top-10-segments-of-segment-score/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:37:38.380Z",
            "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/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "91763d71-a810-4db7-b442-51500a15bca2",
                        "mode": "markers",
                        "name": "Absolute",
                        "type": "scatter",
                        "xsrc": "i.f.student:35:6f189d",
                        "ysrc": "i.f.student:35:b4fb02",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgb(255,127,14)",
                                "width": 10
                            }
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Figure 8 <br> Top 10 segments of segment score"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "rgb(31,119,180)"
                            },
                            "text": "Absolute"
                        },
                        "tickfont": {
                            "color": "rgb(31,119,180)"
                        }
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "rgb(255,127,14)"
                            },
                            "text": "Percentage"
                        },
                        "anchor": "free",
                        "position": 1,
                        "showgrid": false,
                        "tickfont": {
                            "color": "rgb(255,127,14)"
                        },
                        "overlaying": "y"
                    }
                }
            },
            "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-20T20:36:46.880590Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~keeganhughes/4.embed",
            "fid": "keeganhughes:4",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/4/9_4UQR4M7PUC2XH5DPJLGSD44JL6YJ57.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/4/2_3HOLVTEFX8Q80T1OM8ANVL2Z0JJLK7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/4/8_KCH1HMVLD3EANN7YGXHKIAR7MPVMBE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/keeganhughes/4/9_4UQR4M7PUC2XH5DPJLGSD44JL6YJ57.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/keeganhughes:4",
                "plots": "https://api.plotly.com/v2/plots/keeganhughes:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=keeganhughes"
            },
            "owner": "keeganhughes",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Scottish Referendum Voters who now want Independence",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~keeganhughes/4/scottish-referendum-voters-who-now-want-independence/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:36:47.688Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~keeganhughes/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "colorsrc": "keeganhughes:5:901f36",
                            "valuesrc": "keeganhughes:5:0fe85d",
                            "sourcesrc": "keeganhughes:5:4ec470",
                            "targetsrc": "keeganhughes:5:cd78da"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0
                            },
                            "colorsrc": "keeganhughes:5:901f36",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Scottish Referendum Voters who now want Independence",
                    "height": 772
                }
            },
            "height": 772,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~keeganhughes",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-26 23:51:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "keeganhughes",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}