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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAyJTNBMDYlM0EwOC42MTU0NTMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMiUzQTE4JTNBNDAuNjE4MDk2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T02:18:40.618096Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akurland123/0.embed",
            "fid": "akurland123:0",
            "filename": "1d-numerical-integration",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akurland123/0/9_CIW9E7R2G5BP4WGNSZV43OXIIVS1MJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akurland123/0/2_A83V2YJ4ZHS2AAYIKANCT2B1U8E0TT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akurland123/0/8_UTOXFH691DSKESL9NKVYYEXH4E9UME.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akurland123/0/9_CIW9E7R2G5BP4WGNSZV43OXIIVS1MJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akurland123:0",
                "plots": "https://api.plotly.com/v2/plots/akurland123:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=akurland123"
            },
            "owner": "akurland123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~akurland123/0/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:18:41.140Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akurland123/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3c0e0155-411b-49a9-8a2b-9280fe75823d",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "akurland123:1:3b5bdc",
                        "ysrc": "akurland123:1:87eb01"
                    }
                ],
                "layout": {
                    "annotations": [
                        {
                            "x": 4.5,
                            "y": 1.25,
                            "text": "Numerical Integration of sin(x) is approximately -9.367506770274758e-17",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akurland123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 01:54:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akurland123",
                "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-21T02:13:35.607720Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~winit04/12.embed",
            "fid": "winit04:12",
            "filename": "ind_2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/winit04/12/9_VUXISGNHP8T64HKZ1CHU0J5JI7UY7S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/winit04/12/2_WMBDFP2B2YRU214HZKYV0SXPGGYXGI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/winit04/12/8_D0IK9J9UDTFV6FVWJTSERQH29VBZ3N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/winit04/12/9_VUXISGNHP8T64HKZ1CHU0J5JI7UY7S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/winit04:12",
                "plots": "https://api.plotly.com/v2/plots/winit04:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=winit04"
            },
            "owner": "winit04",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 58,
            "web_url": "https://chart-studio.plotly.com/~winit04/12/",
            "world_readable": true,
            "date_modified": "2019-03-25T02:26:51.316Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~winit04/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "60dfb751-c66c-4d4c-8466-527c2d300a89",
                        "type": "bar",
                        "xsrc": "winit04:13:b3f750",
                        "ysrc": "winit04:13:0a6356"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~winit04",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 02:23:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "winit04",
                "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-21T02:12:18.333278Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/16.embed",
            "fid": "ScottBarrington:16",
            "filename": "Plotly Playground 2019-03-21 02:12:17",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/16/9_R859OC577VH2PUH19A5CR1YI45VTBR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/16/2_RMMCJQQOV3JA0MT9R30P8L2OCBW499.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/16/8_I12S327QE7WQK2JI7TRLN7XDD9BD43.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/16/9_R859OC577VH2PUH19A5CR1YI45VTBR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:16",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/16/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:12:18.967Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "13434abf-3c12-451b-869c-b05fa0b71d49",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "iexRealtimePrice",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:17:b778fc",
                        "ysrc": "ScottBarrington:17:9dc1e9"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "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-21T02:11:14.061832Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/14.embed",
            "fid": "ScottBarrington:14",
            "filename": "Plotly Playground 2019-03-21 02:11:13",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/14/9_DGGQ5DWITID8X468X2A0TH0VHRS6AQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/14/2_J1RFT90IDPXVA67MSST06UQ9O54J6N.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/14/8_P7Z85AIWXTG7385DI5TRXTE40NSYKJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/14/9_DGGQ5DWITID8X468X2A0TH0VHRS6AQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:14",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/14/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:11:14.507Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f5de71e4-c762-4387-9836-b8e8a7a6ca9d",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "BOX",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:15:5382aa",
                        "ysrc": "ScottBarrington:15:46e801"
                    },
                    {
                        "uid": "94f62fa4-c03a-4b9f-984a-6fb936f623bd",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "open",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:15:5382aa",
                        "ysrc": "ScottBarrington:15:35b14f"
                    },
                    {
                        "uid": "e7933b56-31e5-4ed5-a7ac-a65684172e94",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "close",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:15:5382aa",
                        "ysrc": "ScottBarrington:15:10a844"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "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-21T02:09:43.539092Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~allanac/1.embed",
            "fid": "allanac:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/allanac/1/9_70099WD0V098HUQDQQKU0E0OIRXHXX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/allanac/1/2_O8KSOL7EZF8RASCEHUZWJ7NTXO6M3P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/allanac/1/8_759CPO7GCZZDMXZKBAHFKT9CLBNDXQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/allanac/1/9_70099WD0V098HUQDQQKU0E0OIRXHXX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/allanac:1",
                "plots": "https://api.plotly.com/v2/plots/allanac:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=allanac"
            },
            "owner": "allanac",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~allanac/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:11:45.675Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~allanac/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers+lines",
                        "name": "Experimental Hang Time",
                        "type": "scatter",
                        "xsrc": "allanac:0:819e97",
                        "ysrc": "allanac:0:1485cc"
                    },
                    {
                        "mode": "markers+lines",
                        "name": "Ideal Hang Time",
                        "type": "scatter",
                        "xsrc": "allanac:0:66665d",
                        "ysrc": "allanac:0:7b6560"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Hang Time in Football: Ideal Vs. Experimental Projectile Motion"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2.9583650995340958,
                            5.441634900465904
                        ],
                        "title": {
                            "text": "Change in Time (s)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            40.48642636474796,
                            96.51368162957776
                        ],
                        "title": {
                            "text": "Displacement (m)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "images": [],
                    "shapes": [],
                    "autosize": true,
                    "colorway": [
                        "#66c2a5",
                        "#fc8d62",
                        "#8da0cb",
                        "#e78ac3",
                        "#a6d854",
                        "#ffd92f",
                        "#e5c494",
                        "#b3b3b3"
                    ],
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "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"
                            ]
                        ]
                    },
                    "annotations": [
                        {
                            "x": 3.1105294366793728,
                            "y": 60.72372093023255,
                            "ax": -171,
                            "ay": -113,
                            "text": "35°",
                            "showarrow": false
                        },
                        {
                            "x": 3.504963998305802,
                            "y": 63.311627906976746,
                            "text": "40°",
                            "showarrow": false
                        },
                        {
                            "x": 3.803981363828886,
                            "y": 63.16279069767442,
                            "text": "45°",
                            "showarrow": false
                        },
                        {
                            "x": 4.2,
                            "y": 60.74418604651163,
                            "text": "50°",
                            "showarrow": false
                        },
                        {
                            "x": 4.432952138924184,
                            "y": 57.02325581395349,
                            "text": "55°",
                            "showarrow": false
                        },
                        {
                            "x": 4.647268106734434,
                            "y": 51.25581395348837,
                            "text": "60°",
                            "showarrow": false
                        },
                        {
                            "x": 4.777721304531978,
                            "y": 44.74418604651163,
                            "text": "65°",
                            "showarrow": false
                        },
                        {
                            "x": 3.5058026260059294,
                            "y": 88.83720930232558,
                            "text": "35°",
                            "showarrow": false
                        },
                        {
                            "x": 4.307157983905125,
                            "y": 94.61445263754963,
                            "text": "45°",
                            "showarrow": false
                        },
                        {
                            "x": 4.712494705633206,
                            "y": 93.86046511627907,
                            "text": "50°",
                            "showarrow": false
                        },
                        {
                            "x": 5.033968657348581,
                            "y": 88.90248265631136,
                            "text": "55°",
                            "showarrow": false
                        },
                        {
                            "x": 3.892503176620076,
                            "y": 92.62216142491212,
                            "text": "40<b>°</b>",
                            "showarrow": false
                        },
                        {
                            "x": 5.183058026260059,
                            "y": 81.22488824375132,
                            "text": "60°",
                            "showarrow": false
                        },
                        {
                            "x": 5.378737822956374,
                            "y": 71.15897458600224,
                            "text": "65°",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~allanac",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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": "2019-03-21 01:30:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "allanac",
                "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-21T02:07:39.626735Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~TMicallef/3.embed",
            "fid": "TMicallef:3",
            "filename": "Choking deaths in Australia, on food and other objects. (2008-2017)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/TMicallef/3/9_6O9G0T07RU175QNZLUJZ2PLB0QA0C1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/TMicallef/3/2_AB97LCHPYNURIJ2PXX650G64509Y7R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/TMicallef/3/8_URZY25PLN5A5HF7JWAA1CY4TB3T8VJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/TMicallef/3/9_6O9G0T07RU175QNZLUJZ2PLB0QA0C1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/TMicallef:3",
                "plots": "https://api.plotly.com/v2/plots/TMicallef:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=TMicallef"
            },
            "owner": "TMicallef",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~TMicallef/3/",
            "world_readable": true,
            "date_modified": "2019-03-22T01:18:16.965Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~TMicallef/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "dash": "longdashdot",
                            "color": "#AA0DFE",
                            "shape": "linear",
                            "width": 2.5
                        },
                        "mode": "markers+lines",
                        "name": "Inhalation and ingestion of food causing obstruction of respiratory tract",
                        "type": "scatter",
                        "xsrc": "TMicallef:2:b667d0",
                        "ysrc": "TMicallef:2:26ffa8",
                        "marker": {
                            "size": 10,
                            "symbol": "circle"
                        },
                        "hoveron": "points+fills",
                        "opacity": 1,
                        "visible": true,
                        "hoverinfo": "x",
                        "showlegend": true,
                        "connectgaps": true,
                        "hovertemplate": "",
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9
                        ]
                    },
                    {
                        "fill": "none",
                        "line": {
                            "dash": "longdashdot",
                            "color": "#3283FE",
                            "shape": "linear",
                            "width": 2.5
                        },
                        "mode": "markers+lines",
                        "name": "Inhalation and ingestion of other objects causing obstruction of respiratory tract",
                        "type": "scatter",
                        "xsrc": "TMicallef:2:b667d0",
                        "ysrc": "TMicallef:2:da4c8e",
                        "marker": {
                            "size": 10,
                            "symbol": "circle"
                        },
                        "hoveron": "points+fills",
                        "opacity": 1,
                        "visible": true,
                        "hoverinfo": "x",
                        "showlegend": true,
                        "connectgaps": true,
                        "hovertemplate": "",
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9
                        ]
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "hoveron": "points+fills",
                        "hoverinfo": "x",
                        "showlegend": true,
                        "stackgroup": null,
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 25
                        },
                        "text": "Choking deaths in Australia, on food and other objects. (2008-2017)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            2006.9386721765422,
                            2017.84879361044
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 20,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Year"
                        },
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 18
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                2007.4459623033028,
                                2017.5540376966972
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            -8.291962367694794,
                            150.32237564937606
                        ],
                        "tick0": 0,
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Number of Deaths"
                        },
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 18
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "automargin": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.5769059150356153,
                        "y": 0.9393939393939394,
                        "font": {
                            "size": 18,
                            "color": "rgb(0, 0, 0)",
                            "family": "Arial"
                        },
                        "bgcolor": "rgb(255, 255, 255)",
                        "traceorder": "reversed",
                        "borderwidth": 1,
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "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"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 2010.9947861837184,
                            "y": 117.84197494576242,
                            "ax": -31,
                            "ay": -30,
                            "font": {
                                "size": 16
                            },
                            "text": "115 - Highest count (2011)"
                        },
                        {
                            "x": 2008.9987490874869,
                            "y": 67.56422251770978,
                            "font": {
                                "size": 16
                            },
                            "text": "65 - Highest count (2009)"
                        },
                        {
                            "x": 2012.5440568540787,
                            "y": 86.71765201411078,
                            "ax": 64,
                            "ay": -34,
                            "font": {
                                "size": 16
                            },
                            "text": "Decrease"
                        },
                        {
                            "x": 2014.5617116805943,
                            "y": 95.99509442643001,
                            "ax": 277,
                            "ay": -111,
                            "font": {
                                "size": 16
                            },
                            "text": "Increasing trend",
                            "showarrow": false
                        },
                        {
                            "x": 2010.0436060512181,
                            "y": 38.235533601345736,
                            "ax": 24,
                            "ay": 39,
                            "font": {
                                "size": 16
                            },
                            "text": "41 - Lowest count (2010)<br>"
                        },
                        {
                            "x": 2013.0700882909916,
                            "y": 61.279503464203195,
                            "ax": 58,
                            "ay": -67,
                            "font": {
                                "size": 16
                            },
                            "text": "58 - Lowest count (2013)"
                        }
                    ],
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~TMicallef",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/78.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 07:30:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "TMicallef",
                "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-21T02:06:12.400428Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/12.embed",
            "fid": "ScottBarrington:12",
            "filename": "Plotly Playground 2019-03-21 02:06:11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/12/9_XPVHBEWXB2CRWE2MQEW2JXETT3JZWR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/12/2_B4B50937NEI5ANC3PEHECKODW566MH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/12/8_O52SL900HK18SZ35JEUDNN93E1HN3A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/12/9_XPVHBEWXB2CRWE2MQEW2JXETT3JZWR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:12",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/12/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:06:12.831Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f596b757-16ab-4b0e-9da4-9bbd4c132142",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "short_mavg",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:13:cdb182",
                        "ysrc": "ScottBarrington:13:4697cd"
                    },
                    {
                        "uid": "d1476fbd-29e0-43fd-8074-28b05382f8fa",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "long_mavg",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:13:cdb182",
                        "ysrc": "ScottBarrington:13:00b393"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "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-21T02:06:11.134470Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/10.embed",
            "fid": "ScottBarrington:10",
            "filename": "Plotly Playground 2019-03-21 02:06:10",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/10/9_NA0DDZPX9O74LEAPH3ONSDSM3MA5N4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/10/2_VUFWBUAI9V9CYDROQ4K129ANNFFSIC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/10/8_NLHXILYU9QXITJQ4E7TJ2FEZJQK1ZV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/10/9_NA0DDZPX9O74LEAPH3ONSDSM3MA5N4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:10",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/10/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:06:11.596Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6b7aceb3-a881-4729-be46-6700e28917b1",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "close",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:11:6e7045",
                        "ysrc": "ScottBarrington:11:f9b148"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "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-21T02:06:09.790702Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/8.embed",
            "fid": "ScottBarrington:8",
            "filename": "Plotly Playground 2019-03-21 02:06:09",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/8/9_HD0XWDWYUY6JAEJE9NMJHD3VRC0JET.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/8/2_2CNBZE19AVK519D81U24PFJ1S2KHKX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/8/8_DI5BTYZXT249W2HUG0WE5HUT9VCVPZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/8/9_HD0XWDWYUY6JAEJE9NMJHD3VRC0JET.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:8",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/8/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:06:10.338Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "88a07479-6a76-467e-b43d-b01e663c2474",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "open",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:9:b96854",
                        "ysrc": "ScottBarrington:9:5f842c"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "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-21T02:06:08.615453Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ScottBarrington/6.embed",
            "fid": "ScottBarrington:6",
            "filename": "Plotly Playground 2019-03-21 02:06:07",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/6/9_HLTPA01M4WPZT2YYK0S3UTA0ROHL88.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/6/2_XJKPCLPMBZK980LAMIKR16DC8WMOUK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/6/8_FQ8VNHMS2O0Z9GF08FEFOT5I4VAEVG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ScottBarrington/6/9_HLTPA01M4WPZT2YYK0S3UTA0ROHL88.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ScottBarrington:6",
                "plots": "https://api.plotly.com/v2/plots/ScottBarrington:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=ScottBarrington"
            },
            "owner": "ScottBarrington",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 10,
            "web_url": "https://chart-studio.plotly.com/~ScottBarrington/6/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:06:09.009Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ScottBarrington/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "534ce6dc-268e-42af-8ab1-729ca3676d2b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "VEEV",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ScottBarrington:7:87f9e8",
                        "ysrc": "ScottBarrington:7:334720"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ScottBarrington",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-21 02:02:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ScottBarrington",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}