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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzIxJTNBNTIlM0EzMy43NjkzNjIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysyMiUzQTA2JTNBNTkuNjc5MzY1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T22:06:59.679365Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AxelRasse/7.embed",
            "fid": "AxelRasse:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/AxelRasse:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AxelRasse/7/2_0XDP7VA787XD143GRS7FR86DANEL00.png",
                "block-thumb": "https://api.plotly.com/v2/files/AxelRasse:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/AxelRasse:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AxelRasse:7",
                "plots": "https://api.plotly.com/v2/plots/AxelRasse:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=AxelRasse"
            },
            "owner": "AxelRasse",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~AxelRasse/7/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:06:59.695Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AxelRasse/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6c3a1436-2c01-4ddd-9925-178c63da0a39",
                        "line": {
                            "color": "black",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "AxelRasse:6:8ce913",
                        "ysrc": "AxelRasse:6:fa0430",
                        "hoverinfo": "none",
                        "showlegend": false
                    },
                    {
                        "uid": "b01a50d6-1d68-43ee-a9ce-f90ed8ee0a2f",
                        "mode": "markers",
                        "type": "scatter"
                    },
                    {
                        "uid": "c6dad606-456a-4969-8456-9803a5456b37",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "AxelRasse:6:b48eac",
                        "ysrc": "AxelRasse:6:0bc6b6",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "size": 9,
                            "colorbar": {
                                "title": {
                                    "font": {
                                        "size": 20
                                    },
                                    "side": "top",
                                    "text": "Voltage"
                                },
                                "xanchor": "left",
                                "tickfont": {
                                    "size": 18
                                },
                                "thickness": 10
                            },
                            "colorsrc": "AxelRasse:6:b99b60",
                            "showscale": true,
                            "colorscale": "Reds"
                        },
                        "textsrc": "AxelRasse:6:52061d",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "uid": "ddcb142d-4d1c-4984-a1e7-82c5aca17b8b",
                        "mode": "markers",
                        "name": "PV nodes",
                        "type": "scatter",
                        "xsrc": "AxelRasse:6:bc7858",
                        "ysrc": "AxelRasse:6:ea893c",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 10,
                            "color": "yellow"
                        },
                        "textsrc": "AxelRasse:6:038141",
                        "hoverinfo": "text"
                    },
                    {
                        "uid": "24893b11-4ea4-44a9-acea-e6d19cda56c3",
                        "mode": "markers",
                        "name": "Source node",
                        "text": "Source node: 1.032",
                        "type": "scatter",
                        "xsrc": "AxelRasse:6:19770a",
                        "ysrc": "AxelRasse:6:b05fa0",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 10,
                            "color": "darkcyan"
                        },
                        "hoverinfo": "text"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 24
                        },
                        "text": "BURLINGAME 0405 -Network at 12 pm - Volt_Var_Watt_control "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1822256.9238659586,
                            1824997.3271340413
                        ],
                        "title": {
                            "text": ""
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            108.29810654175387,
                            108.33720990269057
                        ],
                        "title": {
                            "text": ""
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "showticklabels": false
                    },
                    "legend": {
                        "x": -0.1,
                        "y": 0,
                        "font": {
                            "size": 20
                        }
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AxelRasse",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.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-06-14 00:39:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AxelRasse",
                "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-06-17T22:04:20.830367Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~inugunti/0.embed",
            "fid": "inugunti:0",
            "filename": "donut",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/inugunti:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/inugunti:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/inugunti:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/inugunti:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/inugunti:0",
                "plots": "https://api.plotly.com/v2/plots/inugunti:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=inugunti"
            },
            "owner": "inugunti",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Ember build statistics",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~inugunti/0/ember-build-statistics/",
            "world_readable": true,
            "date_modified": "2019-06-17T23:13:59.399Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~inugunti/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5b62c1da-c1c4-46fb-ad6f-341fa78cf830",
                        "hole": 0.4,
                        "name": "dev-11.3",
                        "type": "pie",
                        "domain": {
                            "column": 0
                        },
                        "textsrc": "inugunti:1:e14c74",
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "inugunti:1:53877b",
                        "valuessrc": "inugunti:1:8b6485"
                    },
                    {
                        "uid": "b85a8300-fbae-4866-910f-1188ce1b136b",
                        "hole": 0.4,
                        "name": "dev-12.0",
                        "type": "pie",
                        "domain": {
                            "column": 1
                        },
                        "textsrc": "inugunti:1:e14c74",
                        "hoverinfo": "label+percent+name",
                        "labelssrc": "inugunti:1:53877b",
                        "valuessrc": "inugunti:1:13aa78",
                        "textposition": "inside"
                    }
                ],
                "layout": {
                    "grid": {
                        "rows": 2,
                        "columns": 2
                    },
                    "title": {
                        "text": "Ember build statistics"
                    },
                    "annotations": [
                        {
                            "x": 0.2,
                            "y": 0.5,
                            "font": {
                                "size": 20
                            },
                            "text": "dev-11.3",
                            "showarrow": false
                        },
                        {
                            "x": 0.8,
                            "y": 0.5,
                            "font": {
                                "size": 20
                            },
                            "text": "dev-12.0",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~inugunti",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.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-06-17 21:57:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "inugunti",
                "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-06-17T22:03:31.154592Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~inkysky/28.embed",
            "fid": "inkysky:28",
            "filename": "i1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/inkysky/28/9_0TLTDRXMFFXU1C6HIMFE5FKBL1XNQA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/inkysky/28/2_3TY13AGGJT44EZ418R8HN9V8B7QS0H.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/inkysky/28/8_XKJY6K5PK23O8VBATBRZM3X09SPM5C.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/inkysky/28/9_0TLTDRXMFFXU1C6HIMFE5FKBL1XNQA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/inkysky:28",
                "plots": "https://api.plotly.com/v2/plots/inkysky:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=inkysky"
            },
            "owner": "inkysky",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~inkysky/28/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:03:31.169Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~inkysky/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "inkysky:25:96e34d",
                        "ysrc": "inkysky:25:dd54f4",
                        "marker": {
                            "color": "rgb(190, 180, 199)"
                        },
                        "error_y": {
                            "type": "data",
                            "visible": true,
                            "arraysrc": "inkysky:25:3ab08d",
                            "symmetric": false,
                            "arrayminussrc": "inkysky:25:3ab08d"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Magnetic Field Strength"
                        },
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            328.78456140000003
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Cell Membrane Potential RFU"
                        },
                        "autorange": true
                    },
                    "bargap": 0.75,
                    "barmode": "group",
                    "autosize": true,
                    "colorway": [
                        "#636efa",
                        "#EF553B",
                        "#00cc96",
                        "#ab63fa",
                        "#19d3f3",
                        "#e763fa",
                        "#fecb52",
                        "#ffa15a",
                        "#ff6692",
                        "#b6e880"
                    ],
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~inkysky",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-03-08 03:35:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "inkysky",
                "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-06-17T21:58:06.893142Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~adamwojt/17.embed",
            "fid": "adamwojt:17",
            "filename": "Avarage salary to number of employees",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/adamwojt:17/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/adamwojt:17/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/adamwojt/17/8_8F6F35JJJRIIEK62TC0GKZ6M6QINNO.png",
                "list-thumb": "https://api.plotly.com/v2/files/adamwojt:17/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/adamwojt:17",
                "plots": "https://api.plotly.com/v2/plots/adamwojt:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=adamwojt"
            },
            "owner": "adamwojt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~adamwojt/17/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:12:55.161Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~adamwojt/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2ae2a6",
                        "fill": "none",
                        "line": {
                            "shape": "linear"
                        },
                        "mode": "markers",
                        "name": "Vilnius",
                        "type": "scatter",
                        "xsrc": "adamwojt:16:8fa002",
                        "ysrc": "adamwojt:16:3cf6bb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "#636efa"
                        },
                        "opacity": 1,
                        "showlegend": true,
                        "hovertemplate": ""
                    },
                    {
                        "uid": "304ce2",
                        "mode": "markers",
                        "name": "Kaunas",
                        "type": "scatter",
                        "xsrc": "adamwojt:15:6b9873",
                        "ysrc": "adamwojt:15:0063a8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18,
                        "family": "Arial"
                    },
                    "title": {
                        "text": "number of employees to avarage salary, Kaunas Vilnius."
                    },
                    "xaxis": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            0,
                            60
                        ],
                        "title": {
                            "text": "Number of employees"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -429.01381777415395,
                            8765.783817774152
                        ],
                        "title": {
                            "text": "Avarage salary"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hiddenlabels": [
                        "N/A"
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~adamwojt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.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": "2018-11-28 13:22:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "adamwojt",
                "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-06-17T21:56:36.979444Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Jakehofgard1/2.embed",
            "fid": "Jakehofgard1:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Jakehofgard1:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Jakehofgard1:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jakehofgard1/2/8_ERZJVK6MOYY678EMBYJ08EPCXZ4YJR.png",
                "list-thumb": "https://api.plotly.com/v2/files/Jakehofgard1:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Jakehofgard1:2",
                "plots": "https://api.plotly.com/v2/plots/Jakehofgard1:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Jakehofgard1"
            },
            "owner": "Jakehofgard1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Jakehofgard1/2/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:56:37.467Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Jakehofgard1/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "37ea5a35-67e2-47e4-9ceb-593c972ed3d7",
                        "type": "mesh3d",
                        "xsrc": "Jakehofgard1:3:e735e5",
                        "ysrc": "Jakehofgard1:3:a65222",
                        "zsrc": "Jakehofgard1:3:135fd9",
                        "color": "#FFB6C1",
                        "opacity": 1,
                        "alphahull": -1
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Jakehofgard1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 21:32:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Jakehofgard1",
                "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-06-17T21:55:49.624589Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~workinDead/4.embed",
            "fid": "workinDead:4",
            "filename": "American Campuses",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/workinDead:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/workinDead/4/2_OKN91BQ33LYYLJMGVXO2BDJXM4QMP6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/workinDead/4/8_1FFPJ5H4G8VYO5T796SWF0ZO7EXBPA.png",
                "list-thumb": "https://api.plotly.com/v2/files/workinDead:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/workinDead:4",
                "plots": "https://api.plotly.com/v2/plots/workinDead:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=workinDead"
            },
            "owner": "workinDead",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Email Location Distribution",
            "views": 16,
            "web_url": "https://chart-studio.plotly.com/~workinDead/4/email-location-distribution/",
            "world_readable": true,
            "date_modified": "2019-06-17T22:18:53.630Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~workinDead/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "79c4339a-e574-4e2d-873f-91a968e471a7",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "workinDead:5:385b99",
                        "lonsrc": "workinDead:5:4241d3",
                        "marker": {
                            "size": 8,
                            "color": "rgb(242, 177, 172)",
                            "opacity": 0.7
                        },
                        "hoverinfo": "none"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Email Location Distribution"
                    },
                    "mapbox": {
                        "zoom": 1,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 38,
                            "lon": -94
                        },
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1Ijoid29ya2luZGVhZCIsImEiOiJjangwd2xqZnQwM2xpNDlteTlwbGF0Nnd4In0.F7H9LZn_Ddmc3pgKRt90lw"
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~workinDead",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 21:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "workinDead",
                "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-06-17T21:54:08.383600Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NadjaM/141.embed",
            "fid": "NadjaM:141",
            "filename": "Time Series by Source Of Entry Index",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/NadjaM:141/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/NadjaM:141/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NadjaM/141/8_0DXQDJ8P8QMGHY7N6JBOEPD9QHIAGR.png",
                "list-thumb": "https://api.plotly.com/v2/files/NadjaM:141/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NadjaM:141",
                "plots": "https://api.plotly.com/v2/plots/NadjaM:141",
                "parent": "https://api.plotly.com/v2/folders/home?user=NadjaM"
            },
            "owner": "NadjaM",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time Series By Source Of Entry Index",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~NadjaM/141/time-series-by-source-of-entry-index/",
            "world_readable": true,
            "date_modified": "2019-08-14T16:33:49.147Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NadjaM/141/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b8e4a605-d930-40a5-af04-1a2241f1b066",
                        "line": {
                            "color": "#7626A7"
                        },
                        "name": "Lower 3 Target Action",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:a3d975",
                        "opacity": 0.8
                    },
                    {
                        "uid": "50ac104e-5ff6-4ea9-b6a2-d55cf0c3a124",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 1",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:da9035",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "eb8f1f50-93e8-447d-9c59-b9ff37fa7420",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 2",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:8a8eb7",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "78c10358-a148-4c8c-8976-35b29dc9112c",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 3",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:c0dae9",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "13eb80a2-57ef-444f-8e24-5f28c2f65941",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 4",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:44b4b4",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "51e4f4de-bd74-4c97-ba8e-26e2ce9cac93",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 5",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:f8bf42",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "8874b0b3-fa0a-4969-9074-4c02b7cf564e",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 6",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:f304ca",
                        "ysrc": "NadjaM:142:1b9367",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "bbfd02b6-7be4-45ca-a66a-1b0ad997bed7",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 7",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:48118e",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d5209089-4a9e-4ffe-95a6-577c9b333258",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 8",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:d20e20",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d9af4e2b-5a79-499b-b209-88e628aeabea",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 9",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:d0ebff",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "47c6a1f9-21bf-4c14-865d-b2bcdeaccc54",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 10",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:bbcec4",
                        "ysrc": "NadjaM:142:8e5f14",
                        "yaxis": "y2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "14a418d4-2b26-4487-9708-6698c76de4e4",
                        "line": {
                            "color": "#2694A7"
                        },
                        "name": "SOE 11",
                        "type": "scatter",
                        "xsrc": "NadjaM:142:1bf6ba",
                        "ysrc": "NadjaM:142:f92ad7",
                        "yaxis": "y2",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time Series By Source Of Entry Index"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Lower 3 Target Action"
                        }
                    },
                    "yaxis2": {
                        "side": "right",
                        "overlaying": "y"
                    },
                    "updatemenus": [
                        {
                            "active": -1,
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_1",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 1",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_2",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 2",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_3",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 3",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_4",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 4",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_5",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 5",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_6",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 6",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_7",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 7",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_8",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 8",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_9",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 9",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_10",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 10",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true
                                            ]
                                        },
                                        {
                                            "title": "Lower_3_Target_Action and SOE_11",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "SOE 11",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true
                                            ]
                                        },
                                        {
                                            "title": "Time Series by Source Of Entry Index",
                                            "annotations": []
                                        }
                                    ],
                                    "label": "Reset",
                                    "method": "update"
                                }
                            ]
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~NadjaM",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-11 19:05:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NadjaM",
                "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-06-17T21:53:39.674079Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Jakehofgard1/0.embed",
            "fid": "Jakehofgard1:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Jakehofgard1:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Jakehofgard1:0/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jakehofgard1/0/8_031YOWZOSLNR2V93K26KACBU0PFS24.png",
                "list-thumb": "https://api.plotly.com/v2/files/Jakehofgard1:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Jakehofgard1:0",
                "plots": "https://api.plotly.com/v2/plots/Jakehofgard1:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=Jakehofgard1"
            },
            "owner": "Jakehofgard1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Jakehofgard1/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:53:40.164Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Jakehofgard1/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "fef83260-dde0-47ba-9f73-4c8b96393f04",
                        "type": "mesh3d",
                        "xsrc": "Jakehofgard1:1:8df7c4",
                        "ysrc": "Jakehofgard1:1:8e44c8",
                        "zsrc": "Jakehofgard1:1:c8fbcf",
                        "color": "#FFB6C1",
                        "opacity": 1
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Jakehofgard1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 21:32:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Jakehofgard1",
                "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-06-17T21:52:35.325550Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~reenac/11.embed",
            "fid": "reenac:11",
            "filename": "Visual fields",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/reenac/11/9_GZNE62D904OHJO60RP9EKEYBGDOG50.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/reenac/11/2_7A2W1WUGLR7H0Q866CR0MCTHEUFIT6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/reenac/11/8_H6WV7LYCEDO1YS531K85S624TXRXRF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/reenac/11/9_GZNE62D904OHJO60RP9EKEYBGDOG50.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/reenac:11",
                "plots": "https://api.plotly.com/v2/plots/reenac:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=reenac"
            },
            "owner": "reenac",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~reenac/11/",
            "world_readable": true,
            "date_modified": "2019-06-22T15:01:55.561Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~reenac/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Number of patients",
                        "type": "scatter",
                        "xsrc": "reenac:10:b981c2",
                        "ysrc": "reenac:10:556b25",
                        "marker": {
                            "size": 7,
                            "color": "rgb(248, 168, 109)"
                        },
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "name": "Number of exams",
                        "type": "scatter",
                        "xsrc": "reenac:10:b981c2",
                        "ysrc": "reenac:10:54d97c",
                        "marker": {
                            "size": 7,
                            "color": "rgb(248, 109, 173)",
                            "sizeref": null,
                            "sizemode": "area"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 24
                        },
                        "text": "Number of visual field exams (January 2009 - January 2019)"
                    },
                    "width": 1459,
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -7.216281151363829,
                            127.21628115136383
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Month/Year"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "tickfont": {
                            "size": 13
                        },
                        "autorange": true,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -1062.8165556934885,
                            19967.816555693487
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Count"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "tickfont": {
                            "size": 13
                        },
                        "autorange": true
                    },
                    "height": 690,
                    "legend": {
                        "x": 1.150000000000001,
                        "y": 1,
                        "font": {
                            "size": 14
                        },
                        "valign": "middle",
                        "xanchor": "auto",
                        "itemsizing": "trace"
                    },
                    "margin": {
                        "t": 100
                    },
                    "autosize": false,
                    "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"
                    }
                }
            },
            "height": 690,
            "width": 1459,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~reenac",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-19 10:47:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "reenac",
                "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-06-17T21:52:33.769362Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~workinDead/2.embed",
            "fid": "workinDead:2",
            "filename": "pandas-multiple-scatter",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/workinDead:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/workinDead:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/workinDead:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/workinDead:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/workinDead:2",
                "plots": "https://api.plotly.com/v2/plots/workinDead:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=workinDead"
            },
            "owner": "workinDead",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Life Expectancy vs GDP per Capita",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~workinDead/2/life-expectancy-vs-gdp-per-capita/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:52:34.237Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~workinDead/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5aaf3ea4-e1e6-4d38-adcf-12b2afc4b183",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "workinDead:3:dcfaee",
                        "ysrc": "workinDead:3:61cb5a",
                        "textsrc": "workinDead:3:fd2888"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "type": "log",
                        "title": {
                            "text": "GDP per Capita"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Life Expectancy"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~workinDead",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 21:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "workinDead",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}