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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzEyJTNBMTElM0E1MC42ODM2MzclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxMiUzQTIyJTNBMTMuNzkxMzc5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T12:22:13.791379Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~granoifi/512.embed",
            "fid": "granoifi:512",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/granoifi:512/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/granoifi:512/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/granoifi/512/8_MLDX52CUJRWQ0U2BFCAH1LD8D7FVFS.png",
                "list-thumb": "https://api.plotly.com/v2/files/granoifi:512/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/granoifi:512",
                "plots": "https://api.plotly.com/v2/plots/granoifi:512",
                "parent": "https://api.plotly.com/v2/folders/home?user=granoifi"
            },
            "owner": "granoifi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~granoifi/512/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:26:23.564Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~granoifi/512/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "granoifi:513:b37030",
                        "ysrc": "granoifi:513:a2114d"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~granoifi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-01-15 17:23:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "granoifi",
                "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-17T12:22:05.231347Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ChrisTDick/134.embed",
            "fid": "ChrisTDick:134",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ChrisTDick:134/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ChrisTDick:134/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ChrisTDick:134/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ChrisTDick:134/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ChrisTDick:134",
                "plots": "https://api.plotly.com/v2/plots/ChrisTDick:134",
                "parent": "https://api.plotly.com/v2/folders/home?user=ChrisTDick"
            },
            "owner": "ChrisTDick",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Entity Vectors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ChrisTDick/134/entity-vectors/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:22:05.696Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ChrisTDick/134/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9bca7cc4-0e09-47ff-bc9c-43e353a207fb",
                        "mode": "text",
                        "type": "scattergl",
                        "xsrc": "ChrisTDick:135:69b148",
                        "ysrc": "ChrisTDick:135:28d60e",
                        "marker": {
                            "opacity": 0.5
                        },
                        "textsrc": "ChrisTDick:135:522021"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Entity Vectors"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        }
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ChrisTDick",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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-02-15 09:55:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ChrisTDick",
                "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-17T12:20:50.353058Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akovacevich/5.embed",
            "fid": "akovacevich:5",
            "filename": "substance_Abuse_history",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akovacevich/5/9_AI8AFYO2F2RUU6Z4V1CADZ7MOLHLKU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akovacevich/5/2_T4BIY75CECFX2KGTAQT1340LG97686.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/5/8_4OP5TQSUYWQ986M68CAIL73GSFI7YF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/5/9_AI8AFYO2F2RUU6Z4V1CADZ7MOLHLKU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akovacevich:5",
                "plots": "https://api.plotly.com/v2/plots/akovacevich:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=akovacevich"
            },
            "owner": "akovacevich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~akovacevich/5/",
            "world_readable": true,
            "date_modified": "2019-08-08T16:03:00.725Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akovacevich/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(43,140,190,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "akovacevich:4:f13c88",
                        "ysrc": "akovacevich:4:d8d32e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "akovacevich:4:ac962f",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 15.9402241594022,
                            "color": "rgba(0,0,0,1)",
                            "family": "Open Sans"
                        },
                        "text": "Average Count of Substance Abuse History",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            3
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2016",
                            "2017",
                            "2018"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2016",
                            "2017",
                            "2018"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.25,
                            5.25
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 25.5707762557078,
                        "l": 16.8036529680365,
                        "r": 7.30593607305936,
                        "t": 42.1685346616853
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akovacevich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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": "2019-06-14 21:21:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akovacevich",
                "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-17T12:19:51.007903Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akovacevich/3.embed",
            "fid": "akovacevich:3",
            "filename": "first_call_month",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akovacevich/3/9_N84ZSHP7MDNOQ24GMJ0J8AH15UXNDW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akovacevich/3/2_GRLP2L4KQXQ612O8DUKMSNYGFZMDH7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/3/8_PUHFFDU97V7LT5TYAS1ISBCYDP24Q2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/3/9_N84ZSHP7MDNOQ24GMJ0J8AH15UXNDW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akovacevich:3",
                "plots": "https://api.plotly.com/v2/plots/akovacevich:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=akovacevich"
            },
            "owner": "akovacevich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~akovacevich/3/",
            "world_readable": true,
            "date_modified": "2019-08-08T16:03:05.646Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akovacevich/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(43,140,190,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "akovacevich:2:b48ed7",
                        "ysrc": "akovacevich:2:de254b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "akovacevich:2:912fc7",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 15.9402241594022,
                            "color": "rgba(0,0,0,1)",
                            "family": "Open Sans"
                        },
                        "text": "Number of First Calls by Month",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            16046,
                            18926
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": "Number of Calls"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "17000",
                            "18000"
                        ],
                        "tickvals": [
                            17000,
                            18000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "17000",
                            "18000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.9551681195517,
                            "color": "rgba(0,0,0,1)",
                            "family": "Open Sans"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 42.1887382227497,
                        "l": 52.1378165213782,
                        "r": 7.30593607305936,
                        "t": 42.1685346616853
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akovacevich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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": "2019-06-14 21:21:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akovacevich",
                "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-17T12:19:23.878737Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dingqy/11.embed",
            "fid": "dingqy:11",
            "filename": "West Africa Ebola cases 2014",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dingqy:11/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dingqy:11/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dingqy:11/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/dingqy:11/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dingqy:11",
                "plots": "https://api.plotly.com/v2/plots/dingqy:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=dingqy"
            },
            "owner": "dingqy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Ebola cases reported by month in West Africa 2014<br> Source: <a href=\"https://data.hdx.rwlabs.org/dataset/rowca-ebola-cases\">HDX</a>",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dingqy/11/ebola-cases-reported-by-month-in-west-africa-2014-source-hdx/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:20:14.291Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dingqy/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1d6232ff-4b38-45f3-830b-960a2a183386",
                        "mode": "markers+text",
                        "name": "Sept",
                        "type": "scattergeo",
                        "latsrc": "dingqy:12:c3bc71",
                        "lonsrc": "dingqy:12:3710c0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(33,113,181)",
                            "sizesrc": "dingqy:12:c7f757"
                        },
                        "textsrc": "dingqy:12:9ecfe9",
                        "textposition": "bottom center"
                    },
                    {
                        "uid": "ebb7a483-5ca3-4c14-b531-106c43b9b2b8",
                        "name": "Aug",
                        "type": "scattergeo",
                        "latsrc": "dingqy:12:c3bc71",
                        "lonsrc": "dingqy:12:3710c0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(107,174,214)",
                            "sizesrc": "dingqy:12:32f532"
                        },
                        "textsrc": "dingqy:12:cd9c89"
                    },
                    {
                        "uid": "5bf6a335-6e80-4075-8abc-777da1b06dc2",
                        "name": "July",
                        "type": "scattergeo",
                        "latsrc": "dingqy:12:ddbbd8",
                        "lonsrc": "dingqy:12:20ed13",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(189,215,231)",
                            "sizesrc": "dingqy:12:8b15b5"
                        },
                        "textsrc": "dingqy:12:3a917d"
                    },
                    {
                        "uid": "c1b917be-d926-410d-a1dc-6258d4d337bd",
                        "name": "June",
                        "type": "scattergeo",
                        "latsrc": "dingqy:12:ddbbd8",
                        "lonsrc": "dingqy:12:20ed13",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(239,243,255)",
                            "sizesrc": "dingqy:12:47084f"
                        },
                        "textsrc": "dingqy:12:95e5e6"
                    },
                    {
                        "geo": "geo2",
                        "uid": "66903bba-b689-4308-8a41-ff9f8d2b9ea0",
                        "type": "choropleth",
                        "zsrc": "dingqy:12:1dd162",
                        "textsrc": "dingqy:12:ab7279",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "rgb(0, 0, 0)"
                            ],
                            [
                                1,
                                "rgb(0, 0, 0)"
                            ]
                        ],
                        "locationmode": "country names",
                        "locationssrc": "dingqy:12:d4bda9",
                        "autocolorscale": false
                    },
                    {
                        "geo": "geo2",
                        "uid": "2adb5676-d2aa-469e-ab20-10fc24d2da20",
                        "mode": "text",
                        "type": "scattergeo",
                        "latsrc": "dingqy:12:ac6f08",
                        "lonsrc": "dingqy:12:51ddfc",
                        "textsrc": "dingqy:12:59fc12",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "asia",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "lataxis": {
                            "range": [
                                0.0,
                                12.0
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -15.0,
                                -5.0
                            ]
                        },
                        "showland": true,
                        "landcolor": "rgb(229, 229, 229)",
                        "showframe": false,
                        "projection": {
                            "type": "mercator"
                        },
                        "resolution": 50,
                        "countrycolor": "rgb(255, 255, 255)",
                        "coastlinecolor": "rgb(255, 255, 255)",
                        "showcoastlines": true
                    },
                    "geo2": {
                        "scope": "asia",
                        "domain": {
                            "x": [
                                0,
                                0.6
                            ],
                            "y": [
                                0,
                                0.6
                            ]
                        },
                        "bgcolor": "rgba(255, 255, 255, 0.0)",
                        "showland": true,
                        "landcolor": "rgb(229, 229, 229)",
                        "showframe": false,
                        "showcountries": false
                    },
                    "title": {
                        "text": "Ebola cases reported by month in West Africa 2014<br> Source: <a href=\"https://data.hdx.rwlabs.org/dataset/rowca-ebola-cases\">HDX</a>"
                    },
                    "legend": {
                        "traceorder": "reversed"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dingqy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-29 07:10:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dingqy",
                "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-17T12:17:55.607683Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gfrecords/1.embed",
            "fid": "gfrecords:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gfrecords:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gfrecords/1/2_JJNLZS6EAG6Q78THIOSOYDSW0E1L45.png",
                "block-thumb": "https://api.plotly.com/v2/files/gfrecords:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/gfrecords:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gfrecords:1",
                "plots": "https://api.plotly.com/v2/plots/gfrecords:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=gfrecords"
            },
            "owner": "gfrecords",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gfrecords/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:17:55.624Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gfrecords/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "Intensity",
                        "type": "scatter",
                        "xsrc": "gfrecords:0:3e3cc7",
                        "ysrc": "gfrecords:0:2504f2"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(255, 255, 255)",
                        "family": "Roboto"
                    },
                    "title": {
                        "x": 0.1,
                        "font": {
                            "size": 18
                        },
                        "text": "Проникновение интернета в России"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            25,
                            75.4
                        ],
                        "title": {
                            "text": "Доля пользователей"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2007.4444444444443,
                            2018.5555555555557
                        ],
                        "title": {
                            "text": "Год"
                        },
                        "autorange": true
                    },
                    "margin": {
                        "t": 100
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gfrecords",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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-06-17 12:17:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gfrecords",
                "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-17T12:17:48.467408Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~icaads/9.embed",
            "fid": "icaads:9",
            "filename": "combined-savings",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/icaads:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/icaads:9/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/icaads:9/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/icaads:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/icaads:9",
                "plots": "https://api.plotly.com/v2/plots/icaads:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=icaads"
            },
            "owner": "icaads",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Saving Accounts Exploration",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~icaads/9/saving-accounts-exploration/",
            "world_readable": true,
            "date_modified": "2019-06-18T07:06:23.210Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~icaads/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "62e20459-1fcb-4dcc-bcaa-71b0786aeb0b",
                        "name": "Good credit",
                        "type": "bar",
                        "xsrc": "icaads:10:a49f8f",
                        "ysrc": "icaads:10:ab9f40",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "bd55147a-fa12-4f03-9806-87ad9ecd99e3",
                        "name": "Bad credit",
                        "type": "bar",
                        "xsrc": "icaads:10:a49f8f",
                        "ysrc": "icaads:10:73cb8d",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "c5f5d831-70ee-4de4-ad3a-83022b56b22b",
                        "name": "Bad credit",
                        "type": "box",
                        "xsrc": "icaads:10:a0555a",
                        "ysrc": "icaads:10:ffd47e",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "5b6f5767-bce7-49a9-9b95-84af074f526a",
                        "name": "Good credit",
                        "type": "box",
                        "xsrc": "icaads:10:e87e0e",
                        "ysrc": "icaads:10:90b26c",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "61ab2764-cf68-485b-aa60-ae146a2c1607",
                        "name": "Good credit",
                        "type": "box",
                        "xsrc": "icaads:10:e87e0e",
                        "ysrc": "icaads:10:f4bfd7",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "4252093d-314c-4442-b1a6-3384faff7184",
                        "name": "Bad credit",
                        "type": "box",
                        "xsrc": "icaads:10:a0555a",
                        "ysrc": "icaads:10:9876c6",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Saving Accounts Exploration"
                    },
                    "width": 800,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "height": 700,
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.625,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.0,
                            0.375
                        ]
                    },
                    "boxmode": "group",
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Count Saving Accounts",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Credit Amount by Savings Acc",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.375,
                            "font": {
                                "size": 16
                            },
                            "text": "Age by Saving accounts",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 700,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~icaads",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.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-06-13 12:39:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "icaads",
                "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-17T12:16:53.291222Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~granoifi/510.embed",
            "fid": "granoifi:510",
            "filename": "coverage entropy",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/granoifi:510/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/granoifi:510/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/granoifi/510/8_FYEAPVI8RV4WXWJRAHPDI3J1NN2FQV.png",
                "list-thumb": "https://api.plotly.com/v2/files/granoifi:510/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/granoifi:510",
                "plots": "https://api.plotly.com/v2/plots/granoifi:510",
                "parent": "https://api.plotly.com/v2/folders/home?user=granoifi"
            },
            "owner": "granoifi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100, 0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100, 0, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~granoifi/510/_0-5-10-15-20-30-40-50-60-70-80-90-100-0-5-10-15-20-30-40-50-60-70-80-90-100-0-5-/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:16:53.938Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~granoifi/510/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "0",
                        "type": "histogram",
                        "xsrc": "granoifi:511:dbaafc",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.8683323271393486,
                            "size": 1.0,
                            "start": 0.28404286311649224
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "0"
                    },
                    {
                        "name": "5",
                        "type": "histogram",
                        "xsrc": "granoifi:511:085a08",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.7977532511488183,
                            "size": 1.0,
                            "start": 0.28552081533133866
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "5"
                    },
                    {
                        "name": "10",
                        "type": "histogram",
                        "xsrc": "granoifi:511:39393f",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.77683048278159,
                            "size": 1.0,
                            "start": 0.29693084707674444
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "10"
                    },
                    {
                        "name": "15",
                        "type": "histogram",
                        "xsrc": "granoifi:511:e159d2",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.7916827800226747,
                            "size": 1.0,
                            "start": 0.3015827841805706
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "15"
                    },
                    {
                        "name": "20",
                        "type": "histogram",
                        "xsrc": "granoifi:511:661dde",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.756788767100196,
                            "size": 1.0,
                            "start": 0.2941894036883506
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "20"
                    },
                    {
                        "name": "30",
                        "type": "histogram",
                        "xsrc": "granoifi:511:8d73e7",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.759542251091963,
                            "size": 1.0,
                            "start": 0.2905611247465535
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(140, 86, 75)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "30"
                    },
                    {
                        "name": "40",
                        "type": "histogram",
                        "xsrc": "granoifi:511:da9d65",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.7596793604681134,
                            "size": 1.0,
                            "start": 0.27842000929740957
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(227, 119, 194)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "40"
                    },
                    {
                        "name": "50",
                        "type": "histogram",
                        "xsrc": "granoifi:511:571f03",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.7531984662034814,
                            "size": 1.0,
                            "start": 0.3033978036137199
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(127, 127, 127)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "50"
                    },
                    {
                        "name": "60",
                        "type": "histogram",
                        "xsrc": "granoifi:511:cddbb3",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.740144885547422,
                            "size": 1.0,
                            "start": 0.2868012504674669
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(188, 189, 34)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "60"
                    },
                    {
                        "name": "70",
                        "type": "histogram",
                        "xsrc": "granoifi:511:76bff1",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.7287955376847086,
                            "size": 1.0,
                            "start": 0.27958040297148595
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "70"
                    },
                    {
                        "name": "80",
                        "type": "histogram",
                        "xsrc": "granoifi:511:39c7b8",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.739502820405313,
                            "size": 1.0,
                            "start": 0.2997941202536241
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "80"
                    },
                    {
                        "name": "90",
                        "type": "histogram",
                        "xsrc": "granoifi:511:7787de",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.737840324526185,
                            "size": 1.0,
                            "start": 0.2989984500983469
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "90"
                    },
                    {
                        "name": "100",
                        "type": "histogram",
                        "xsrc": "granoifi:511:1a3990",
                        "xaxis": "x1",
                        "xbins": {
                            "end": 2.716524700008841,
                            "size": 1.0,
                            "start": 0.2852301284585053
                        },
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "100"
                    },
                    {
                        "mode": "lines",
                        "name": "0",
                        "type": "scatter",
                        "xsrc": "granoifi:511:29cad7",
                        "ysrc": "granoifi:511:21b24f",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "0"
                    },
                    {
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "granoifi:511:5cac55",
                        "ysrc": "granoifi:511:c8a6eb",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false,
                        "legendgroup": "5"
                    },
                    {
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "granoifi:511:3adb2a",
                        "ysrc": "granoifi:511:0f08f5",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false,
                        "legendgroup": "10"
                    },
                    {
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "granoifi:511:124884",
                        "ysrc": "granoifi:511:ac026e",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false,
                        "legendgroup": "15"
                    },
                    {
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "granoifi:511:1319e6",
                        "ysrc": "granoifi:511:170c09",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false,
                        "legendgroup": "20"
                    },
                    {
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "granoifi:511:d2f9ad",
                        "ysrc": "granoifi:511:0100dd",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(140, 86, 75)"
                        },
                        "showlegend": false,
                        "legendgroup": "30"
                    },
                    {
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "granoifi:511:4fb5c4",
                        "ysrc": "granoifi:511:21ad45",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(227, 119, 194)"
                        },
                        "showlegend": false,
                        "legendgroup": "40"
                    },
                    {
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "granoifi:511:354faf",
                        "ysrc": "granoifi:511:c8ed7d",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(127, 127, 127)"
                        },
                        "showlegend": false,
                        "legendgroup": "50"
                    },
                    {
                        "mode": "lines",
                        "name": "60",
                        "type": "scatter",
                        "xsrc": "granoifi:511:98480a",
                        "ysrc": "granoifi:511:0b6d58",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(188, 189, 34)"
                        },
                        "showlegend": false,
                        "legendgroup": "60"
                    },
                    {
                        "mode": "lines",
                        "name": "70",
                        "type": "scatter",
                        "xsrc": "granoifi:511:f700c7",
                        "ysrc": "granoifi:511:deb2d0",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "showlegend": false,
                        "legendgroup": "70"
                    },
                    {
                        "mode": "lines",
                        "name": "80",
                        "type": "scatter",
                        "xsrc": "granoifi:511:572ec4",
                        "ysrc": "granoifi:511:209444",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "80"
                    },
                    {
                        "mode": "lines",
                        "name": "90",
                        "type": "scatter",
                        "xsrc": "granoifi:511:dbd28f",
                        "ysrc": "granoifi:511:11d3f6",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false,
                        "legendgroup": "90"
                    },
                    {
                        "mode": "lines",
                        "name": "100",
                        "type": "scatter",
                        "xsrc": "granoifi:511:910167",
                        "ysrc": "granoifi:511:a38068",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false,
                        "legendgroup": "100"
                    },
                    {
                        "mode": "markers",
                        "name": "0",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:dbaafc",
                        "ysrc": "granoifi:511:aaa496",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "0"
                    },
                    {
                        "mode": "markers",
                        "name": "5",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:085a08",
                        "ysrc": "granoifi:511:d905cb",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "5"
                    },
                    {
                        "mode": "markers",
                        "name": "10",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:39393f",
                        "ysrc": "granoifi:511:114f8b",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(44, 160, 44)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "10"
                    },
                    {
                        "mode": "markers",
                        "name": "15",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:e159d2",
                        "ysrc": "granoifi:511:4ab62d",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(214, 39, 40)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "15"
                    },
                    {
                        "mode": "markers",
                        "name": "20",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:661dde",
                        "ysrc": "granoifi:511:4478b8",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(148, 103, 189)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "20"
                    },
                    {
                        "mode": "markers",
                        "name": "30",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:8d73e7",
                        "ysrc": "granoifi:511:cc18d6",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(140, 86, 75)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "30"
                    },
                    {
                        "mode": "markers",
                        "name": "40",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:da9d65",
                        "ysrc": "granoifi:511:5e7384",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(227, 119, 194)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "40"
                    },
                    {
                        "mode": "markers",
                        "name": "50",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:571f03",
                        "ysrc": "granoifi:511:9948dd",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(127, 127, 127)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "50"
                    },
                    {
                        "mode": "markers",
                        "name": "60",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:cddbb3",
                        "ysrc": "granoifi:511:f80487",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(188, 189, 34)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "60"
                    },
                    {
                        "mode": "markers",
                        "name": "70",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:76bff1",
                        "ysrc": "granoifi:511:37dc5e",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(23, 190, 207)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "70"
                    },
                    {
                        "mode": "markers",
                        "name": "80",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:39c7b8",
                        "ysrc": "granoifi:511:c75094",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "80"
                    },
                    {
                        "mode": "markers",
                        "name": "90",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:7787de",
                        "ysrc": "granoifi:511:5d82e0",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "90"
                    },
                    {
                        "mode": "markers",
                        "name": "100",
                        "text": null,
                        "type": "scatter",
                        "xsrc": "granoifi:511:1a3990",
                        "ysrc": "granoifi:511:465804",
                        "xaxis": "x1",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(44, 160, 44)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "100"
                    }
                ],
                "layout": {
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "xaxis1": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis1": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x1",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~granoifi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-01-15 17:23:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "granoifi",
                "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-17T12:15:06.135775Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cornenagel/4.embed",
            "fid": "cornenagel:4",
            "filename": "labelled-heatmap",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cornenagel/4/9_3VLIFJJSGPZXPSO42NHBFXCVIPC6ZJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cornenagel/4/2_S26LAQCU8OE0KBMSSMD27G0Q7GGR0J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cornenagel/4/8_8LTOYR1S3JWAWC8FUUNTQ7KC5X6D8D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cornenagel/4/9_3VLIFJJSGPZXPSO42NHBFXCVIPC6ZJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cornenagel:4",
                "plots": "https://api.plotly.com/v2/plots/cornenagel:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=cornenagel"
            },
            "owner": "cornenagel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cornenagel/4/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:41:08.962Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cornenagel/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d20aaeff-c94e-4973-a4f3-8d7b69c1c355",
                        "type": "heatmap",
                        "xsrc": "cornenagel:5:4e6333",
                        "ysrc": "cornenagel:5:01a884",
                        "zsrc": "cornenagel:5:4c03a5,2ce5ca",
                        "colorscale": [
                            [
                                0.0,
                                "rgba(0,200,255,0.5)"
                            ],
                            [
                                0.1111111111111111,
                                "rgba(2,187,240,0.5)"
                            ],
                            [
                                0.2222222222222222,
                                "rgba(4,174,225,0.5)"
                            ],
                            [
                                0.3333333333333333,
                                "rgba(5,161,209,0.5)"
                            ],
                            [
                                0.4444444444444444,
                                "rgba(7,148,194,0.5)"
                            ],
                            [
                                0.5555555555555556,
                                "rgba(11,122,164,0.5)"
                            ],
                            [
                                0.6666666666666666,
                                "rgba(15,96,133,0.5)"
                            ],
                            [
                                0.7777777777777778,
                                "rgba(18,70,103,0.5)"
                            ],
                            [
                                0.8888888888888888,
                                "rgba(20,57,87,0.5)"
                            ],
                            [
                                1.0,
                                "rgba(22,44,72,0.5)"
                            ]
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cornenagel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.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": "2017-08-09 20:59:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cornenagel",
                "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-17T12:11:50.683637Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akovacevich/1.embed",
            "fid": "akovacevich:1",
            "filename": "case-creations-by-month",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akovacevich/1/9_67KZUPH99M95AMCN6BXDGDZOEY0WXR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/akovacevich/1/2_E59LUPU5BJFSLSPOLWJAZX2YWRD3XN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/1/8_UDB3YLECK91KFITT066XX6TFRH3WRQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/1/9_67KZUPH99M95AMCN6BXDGDZOEY0WXR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akovacevich:1",
                "plots": "https://api.plotly.com/v2/plots/akovacevich:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=akovacevich"
            },
            "owner": "akovacevich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~akovacevich/1/",
            "world_readable": true,
            "date_modified": "2019-08-26T00:14:37.299Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akovacevich/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(236,231,242,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "name": "2016",
                        "type": "scatter",
                        "xsrc": "akovacevich:0:788455",
                        "ysrc": "akovacevich:0:c8cc23",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "akovacevich:0:a7991c",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2016"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(166,189,219,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "name": "2017",
                        "type": "scatter",
                        "xsrc": "akovacevich:0:0f340d",
                        "ysrc": "akovacevich:0:a4f5ce",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "akovacevich:0:bdbe3a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2017"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(43,140,190,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "name": "2018",
                        "type": "scatter",
                        "xsrc": "akovacevich:0:fd5799",
                        "ysrc": "akovacevich:0:c4d134",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "akovacevich:0:0b4636",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "2018"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 15.9402241594022,
                            "color": "rgba(0,0,0,1)",
                            "family": "Open Sans"
                        },
                        "text": "Case Creations by Month",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            12
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            528
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 11.9551681195517,
                                "color": "rgba(0,0,0,1)",
                                "family": "Open Sans"
                            },
                            "text": "Number of Calls"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": "Open Sans"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "100",
                            "200",
                            "300",
                            "400",
                            "500"
                        ],
                        "tickvals": [
                            100,
                            200,
                            300,
                            400,
                            500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": "rgba(224,224,224,1)",
                        "linewidth": 0.66417600664176,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "100",
                            "200",
                            "300",
                            "400",
                            "500"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "y": 0.921375028121485,
                        "font": {
                            "size": 11.9551681195517,
                            "color": "rgba(0,0,0,1)",
                            "family": "Open Sans"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 43.7814322866766,
                        "l": 40.4483188044832,
                        "r": 7.30593607305936,
                        "t": 43.7612287256123
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akovacevich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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": "2019-06-14 21:21:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akovacevich",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}