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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAwJTNBMDklM0E1Mi4xNDY1NTAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMCUzQTE0JTNBMjMuNDI5ODk0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T00:14:23.429894Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~parisk/2.embed",
            "fid": "parisk:2",
            "filename": "exploit-3d-scatter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/parisk/2/9_X5HPH7COQL023Z2RIJ21T1P0W3NDON.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/parisk/2/2_DWKMBO1B7WT9QR4DQDYG7WLFW1I9HL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/parisk/2/8_Q69I7F2C4CVOO4UCFHSYS5NAZ3KRDE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/parisk/2/9_X5HPH7COQL023Z2RIJ21T1P0W3NDON.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/parisk:2",
                "plots": "https://api.plotly.com/v2/plots/parisk:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=parisk"
            },
            "owner": "parisk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Closest Words vs Selected Word",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~parisk/2/closest-words-vs-selected-word/",
            "world_readable": true,
            "date_modified": "2019-04-20T16:56:11.992Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~parisk/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers+text",
                        "name": "Closest Words",
                        "type": "scatter3d",
                        "xsrc": "parisk:3:3ed501",
                        "ysrc": "parisk:3:6a133f",
                        "zsrc": "parisk:3:914525",
                        "marker": {
                            "line": {
                                "color": "rgb(217, 217, 217)",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(114, 112, 255)",
                            "opacity": 0.7
                        },
                        "textsrc": "parisk:3:5931f1",
                        "textposition": "top"
                    },
                    {
                        "mode": "markers+text",
                        "name": "Selected Word",
                        "text": "exploit",
                        "type": "scatter3d",
                        "xsrc": "parisk:3:fd4b0f",
                        "ysrc": "parisk:3:eeb0b9",
                        "zsrc": "parisk:3:7955a5",
                        "marker": {
                            "line": {
                                "color": "rgb(217, 217, 217)",
                                "width": 1
                            },
                            "size": 14,
                            "color": "rgb(255, 0, 0)",
                            "opacity": 0.7
                        },
                        "textposition": "top"
                    }
                ],
                "layout": {
                    "margin": {
                        "b": 100,
                        "l": 100,
                        "r": 100,
                        "t": 100
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~parisk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 13:54:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "parisk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:12:42.513835Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cguthrie/73.embed",
            "fid": "cguthrie:73",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cguthrie/73/9_X455XJ5DLBKS2P0PPVL9WKBO8H3XP2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cguthrie/73/2_619E4EDY3CXGIKJ1JFIHJ0XODGQMSK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/73/8_4WDZWL96V1E1UT7C6NZZRO8GZKDZ9P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/73/9_X455XJ5DLBKS2P0PPVL9WKBO8H3XP2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cguthrie:73",
                "plots": "https://api.plotly.com/v2/plots/cguthrie:73",
                "parent": "https://api.plotly.com/v2/folders/home?user=cguthrie"
            },
            "owner": "cguthrie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Basic Sankey Diagram",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~cguthrie/73/basic-sankey-diagram/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:12:42.996Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cguthrie/73/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "cguthrie:74:25250e",
                            "sourcesrc": "cguthrie:74:75848a",
                            "targetsrc": "cguthrie:74:15f91a"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "cguthrie:74:d19f66",
                            "labelsrc": "cguthrie:74:fad9e0",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Basic Sankey Diagram"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cguthrie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2015-03-20 18:52:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cguthrie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:12:24.185799Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~suvrangshu/4.embed",
            "fid": "suvrangshu:4",
            "filename": "Multiple Mapbox",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/suvrangshu:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/suvrangshu:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/suvrangshu:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/suvrangshu:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/suvrangshu:4",
                "plots": "https://api.plotly.com/v2/plots/suvrangshu:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=suvrangshu"
            },
            "owner": "suvrangshu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~suvrangshu/4/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:12:24.625Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~suvrangshu/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "28184a74-b667-4186-84c5-3afbeeef33bc",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "suvrangshu:5:10a8e4",
                        "lonsrc": "suvrangshu:5:048fdd",
                        "marker": {
                            "size": 9
                        },
                        "textsrc": "suvrangshu:5:d42a7d"
                    }
                ],
                "layout": {
                    "mapbox": {
                        "zoom": 10,
                        "pitch": 0,
                        "center": {
                            "lat": 38.92,
                            "lon": -77.07
                        },
                        "bearing": 0,
                        "accesstoken": "sk.eyJ1Ijoic3V2cmFuZ3NodSIsImEiOiJjanRodmZzZ2wwNmJxNDNsajU3Nmk5NWtxIn0.pcNwLGw2WlhND4YYYtFyQg"
                    },
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~suvrangshu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.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-03-08 05:49:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "suvrangshu",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:12:16.389589Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cguthrie/71.embed",
            "fid": "cguthrie:71",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cguthrie/71/9_9KUD8UUT3DVH9R4R80NLMWK3MVLF4D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cguthrie/71/2_3GX19M4RMPK16WFI3A5XZ6CDWW01RW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/71/8_GGB780FJYMLSFRBAYLANBZ2ZEW7NEK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/71/9_9KUD8UUT3DVH9R4R80NLMWK3MVLF4D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cguthrie:71",
                "plots": "https://api.plotly.com/v2/plots/cguthrie:71",
                "parent": "https://api.plotly.com/v2/folders/home?user=cguthrie"
            },
            "owner": "cguthrie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Basic Sankey Diagram",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~cguthrie/71/basic-sankey-diagram/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:12:16.869Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cguthrie/71/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "cguthrie:72:c4516b",
                            "sourcesrc": "cguthrie:72:ae9776",
                            "targetsrc": "cguthrie:72:746456"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "cguthrie:72:1a765f",
                            "labelsrc": "cguthrie:72:4d2d85",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Basic Sankey Diagram"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cguthrie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2015-03-20 18:52:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cguthrie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:11:51.894288Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Miriama/1.embed",
            "fid": "Miriama:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Miriama/1/9_OYP4UN1DJBME4WXXPPTRKSVQ56EUR2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Miriama/1/2_LULG349PGGSZYFZGMWRVNCSMAXB5UC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Miriama/1/8_7NU9MHQADA0I4IR6LHRCSI4DSZQT9S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Miriama/1/9_OYP4UN1DJBME4WXXPPTRKSVQ56EUR2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Miriama:1",
                "plots": "https://api.plotly.com/v2/plots/Miriama:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Miriama"
            },
            "owner": "Miriama",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Miriama/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:11:51.908Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Miriama/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter"
                    },
                    {
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Miriama:0:3da140",
                        "ysrc": "Miriama:0:41244d",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Southern Hemispheres Temperatures 1880-2014"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1879.5,
                            2014.5
                        ],
                        "title": {
                            "text": "Year"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -52.88888888888889,
                            64.88888888888889
                        ],
                        "title": {
                            "text": "SHem Temperature"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Miriama",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:03:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Miriama",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:11:50.831802Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MISISINGH/11.embed",
            "fid": "MISISINGH:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MISISINGH/11/9_HAMVU396QVPBKB7CP9UNQEKAUI8ERT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MISISINGH/11/2_ZDG53WOC2PQQN3RN1B691VTXMM3RCN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MISISINGH/11/8_XEOIQ531FBCDUUFAO8P8FML17REH50.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MISISINGH/11/9_HAMVU396QVPBKB7CP9UNQEKAUI8ERT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MISISINGH:11",
                "plots": "https://api.plotly.com/v2/plots/MISISINGH:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=MISISINGH"
            },
            "owner": "MISISINGH",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~MISISINGH/11/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:11:50.845Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MISISINGH/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "pie",
                        "xsrc": "MISISINGH:10:e564d0",
                        "labelssrc": "MISISINGH:10:4d970f",
                        "valuessrc": "MISISINGH:10:e564d0"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1871.713423831071,
                            2022.286576168929
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -11.258196721311478,
                            145.2581967213115
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MISISINGH",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 23:17:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MISISINGH",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:11:29.471614Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cguthrie/69.embed",
            "fid": "cguthrie:69",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cguthrie/69/9_NNPURIB9QN5C3E9W13GDK6QBHQTKO4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cguthrie/69/2_CB42LJHUJ9UZ553UKN8BFFJZLSMQZU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/69/8_2E774I9I4MXXN473TEPXTR70AFYHXJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/69/9_NNPURIB9QN5C3E9W13GDK6QBHQTKO4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cguthrie:69",
                "plots": "https://api.plotly.com/v2/plots/cguthrie:69",
                "parent": "https://api.plotly.com/v2/folders/home?user=cguthrie"
            },
            "owner": "cguthrie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Basic Sankey Diagram",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~cguthrie/69/basic-sankey-diagram/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:11:30.041Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cguthrie/69/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "cguthrie:70:5c9ee3",
                            "sourcesrc": "cguthrie:70:ce3635",
                            "targetsrc": "cguthrie:70:65dc98"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "cguthrie:70:c93ed1",
                            "labelsrc": "cguthrie:70:569d31",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Basic Sankey Diagram"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cguthrie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2015-03-20 18:52:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cguthrie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:11:17.515125Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cguthrie/67.embed",
            "fid": "cguthrie:67",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cguthrie/67/9_RSC16BJ2E9TOS23MLO9AI27GWLGHVD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cguthrie/67/2_N9JVIG2PUZGS8RFCLAT1HD7L0W1XLQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/67/8_D9UFQAXLR4Q6U0Z3K33Z9VGBMCVPX9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/67/9_RSC16BJ2E9TOS23MLO9AI27GWLGHVD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cguthrie:67",
                "plots": "https://api.plotly.com/v2/plots/cguthrie:67",
                "parent": "https://api.plotly.com/v2/folders/home?user=cguthrie"
            },
            "owner": "cguthrie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Basic Sankey Diagram",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~cguthrie/67/basic-sankey-diagram/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:11:17.947Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cguthrie/67/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "cguthrie:68:307677",
                            "sourcesrc": "cguthrie:68:469b4b",
                            "targetsrc": "cguthrie:68:8fca5b"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "cguthrie:68:c0c5d8",
                            "labelsrc": "cguthrie:68:0c2932",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Basic Sankey Diagram"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cguthrie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2015-03-20 18:52:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cguthrie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:10:12.942603Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cguthrie/65.embed",
            "fid": "cguthrie:65",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cguthrie/65/9_RQ0JSKO2OSL6CL0ISU7VUPMEVUQTBG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cguthrie/65/2_CNJ4XXBT2H29RZ4PLLSPHAQ7AJFMY1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/65/8_50EP7XP0EC4MCQSD5O53I36TXANXPT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cguthrie/65/9_RQ0JSKO2OSL6CL0ISU7VUPMEVUQTBG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cguthrie:65",
                "plots": "https://api.plotly.com/v2/plots/cguthrie:65",
                "parent": "https://api.plotly.com/v2/folders/home?user=cguthrie"
            },
            "owner": "cguthrie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Basic Sankey Diagram",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~cguthrie/65/basic-sankey-diagram/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:10:13.419Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cguthrie/65/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "cguthrie:66:577212",
                            "sourcesrc": "cguthrie:66:7a6a9c",
                            "targetsrc": "cguthrie:66:b6ac9b"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "cguthrie:66:606db6",
                            "labelsrc": "cguthrie:66:4dbc99",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Basic Sankey Diagram"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cguthrie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2015-03-20 18:52:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cguthrie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:09:52.146550Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shrinivas777/313.embed",
            "fid": "shrinivas777:313",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/313/9_GTSJHICXPPEGNMV74Z0NQTRK1TB6SV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/313/2_6AUXC89X82JBMEFIV65CAREQSG9LOW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/313/8_EL3MSHUXTJIOHWKE9RQVS8GLZN4QQZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/313/9_GTSJHICXPPEGNMV74Z0NQTRK1TB6SV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shrinivas777:313",
                "plots": "https://api.plotly.com/v2/plots/shrinivas777:313",
                "parent": "https://api.plotly.com/v2/folders/home?user=shrinivas777"
            },
            "owner": "shrinivas777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "embarked=[\"C\"] | sex=[\"female\"] | survived=[\"0.0\"], embarked=[\"C\"] | sex=[\"female\"] | survived=[\"1.0\"], embarked=[\"C\"] | sex=[\"male\"] | survived=[\"0.0\"], embarked=[\"C\"] | sex=[\"male\"] | survived=[\"1.0\"], embarked=[\"Q\"] | sex=[\"female\"] | survived=[\"0.0\"], embarked=[\"Q\"] | sex=[\"female\"] | survived=[\"1.0\"], embarked=[\"Q\"] | sex=[\"male\"] | survived=[\"0.0\"], embarked=[\"Q\"] | sex=[\"male\"] | survived=[\"1.0\"], embarked=[\"S\"] | sex=[\"female\"] | survived=[\"0.0\"], embarked=[\"S\"] | sex=[\"female\"] | survived=[\"1.0\"], embarked=[\"S\"] | sex=[\"male\"] | survived=[\"0.0\"], embarked=[\"S\"] | sex=[\"male\"] | survived=[\"1.0\"]",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~shrinivas777/313/embarkedc-sexfemale-survived00-embarkedc-sexfemale-survived10-embarkedc-sexmale-/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:09:53.206Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shrinivas777/313/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "450b5fc0-592a-41c0-8426-09f8e383c62b",
                        "name": "embarked=[\"C\"] | sex=[\"female\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:d07eb9",
                        "marker": {
                            "color": "rgb(0, 0, 0)"
                        }
                    },
                    {
                        "uid": "7460c0a1-64c2-4e67-94f9-fb4a37c42530",
                        "name": "embarked=[\"C\"] | sex=[\"female\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:ffe01e",
                        "marker": {
                            "color": "rgb(0, 0, 256)"
                        }
                    },
                    {
                        "uid": "3c118c29-35f2-43f6-9e50-eb705cf40da5",
                        "name": "embarked=[\"C\"] | sex=[\"male\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:182414",
                        "marker": {
                            "color": "rgb(0, 256, 0)"
                        }
                    },
                    {
                        "uid": "1c36d0f3-3914-4aef-b66c-f0658cbed0a9",
                        "name": "embarked=[\"C\"] | sex=[\"male\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:905e46",
                        "marker": {
                            "color": "rgb(0, 256, 256)"
                        }
                    },
                    {
                        "uid": "65524fb7-6eb7-4613-a32e-d67940c6755d",
                        "name": "embarked=[\"Q\"] | sex=[\"female\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:1f8d3e",
                        "marker": {
                            "color": "rgb(128, 0, 0)"
                        }
                    },
                    {
                        "uid": "a73e6db7-0c8a-40b5-8336-6c5deaa0ef46",
                        "name": "embarked=[\"Q\"] | sex=[\"female\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:875408",
                        "marker": {
                            "color": "rgb(128, 0, 256)"
                        }
                    },
                    {
                        "uid": "806fa560-caf5-4799-832f-5e4fa5e1176c",
                        "name": "embarked=[\"Q\"] | sex=[\"male\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:4c57c3",
                        "marker": {
                            "color": "rgb(128, 256, 0)"
                        }
                    },
                    {
                        "uid": "47a24350-93f2-412f-a024-ef2d2c57dbf6",
                        "name": "embarked=[\"Q\"] | sex=[\"male\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:74d34b",
                        "marker": {
                            "color": "rgb(128, 256, 256)"
                        }
                    },
                    {
                        "uid": "453bdf1e-02b3-401d-88db-7fd86a58fdbf",
                        "name": "embarked=[\"S\"] | sex=[\"female\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:47bbb8",
                        "marker": {
                            "color": "rgb(256, 0, 0)"
                        }
                    },
                    {
                        "uid": "8d83394d-3a8d-4fc4-8876-297fe8bf1201",
                        "name": "embarked=[\"S\"] | sex=[\"female\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:7b927f",
                        "marker": {
                            "color": "rgb(256, 0, 256)"
                        }
                    },
                    {
                        "uid": "69bcb2db-f1c9-4d8d-8a0e-96649843a76e",
                        "name": "embarked=[\"S\"] | sex=[\"male\"] | survived=[\"0.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:a013b4",
                        "marker": {
                            "color": "rgb(256, 256, 0)"
                        }
                    },
                    {
                        "uid": "8f89a25f-a958-43b7-8e04-98728c6cb31d",
                        "name": "embarked=[\"S\"] | sex=[\"male\"] | survived=[\"1.0\"]",
                        "type": "box",
                        "ysrc": "shrinivas777:314:76c4b5",
                        "marker": {
                            "color": "rgb(256, 256, 256)"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shrinivas777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 22:29:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shrinivas777",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}