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=cj0xJnA9MjAxOS0wNi0xOCswNSUzQTA2JTNBMjIuNjcxNjI4JTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE4KzA1JTNBMDclM0EwNC43ODM2OTMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswNSUzQTQxJTNBNTEuMjAyOTE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T05:41:51.202919Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~babit13/5.embed",
            "fid": "babit13:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/babit13:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/babit13:5/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/5/8_RIKV0GGYJA4HZ6ZCPANEOXZ20QEJC1.png",
                "list-thumb": "https://api.plotly.com/v2/files/babit13:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/babit13:5",
                "plots": "https://api.plotly.com/v2/plots/babit13:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=babit13"
            },
            "owner": "babit13",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 31,
            "web_url": "https://chart-studio.plotly.com/~babit13/5/",
            "world_readable": true,
            "date_modified": "2019-06-18T06:46:29.796Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~babit13/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Q1",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:14:d0d186",
                        "ysrc": "babit13:14:86d126"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Q2",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:14:d0d186",
                        "ysrc": "babit13:14:2e1318"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Q3",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:14:d0d186",
                        "ysrc": "babit13:14:5396bd"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Q4",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:14:d0d186",
                        "ysrc": "babit13:14:10a6fe"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Quarterly  Turnover "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1982,
                            1992
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            12719.900000000001,
                            17605.899999999998
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~babit13",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "babit13",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:40:49.503447Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~baranidharan/36.embed",
            "fid": "baranidharan:36",
            "filename": "Plot 36",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/baranidharan:36/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/baranidharan/36/2_061M2H93K2JW28NW87MAHJBHZVVX8E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/baranidharan/36/8_9YN7Z344SGSW7X7FEP7H8KQ9D5AYJ2.png",
                "list-thumb": "https://api.plotly.com/v2/files/baranidharan:36/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/baranidharan:36",
                "plots": "https://api.plotly.com/v2/plots/baranidharan:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=baranidharan"
            },
            "owner": "baranidharan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~baranidharan/36/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:40:49.524Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~baranidharan/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "055eccdc-0ad1-487a-8351-3bebc005296f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "2019",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "baranidharan:35:761969",
                        "ysrc": "baranidharan:35:6badb6"
                    },
                    {
                        "uid": "77756067-a1b7-4400-8cbf-609b258fb538",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "2020",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "baranidharan:35:761969",
                        "ysrc": "baranidharan:35:59a293"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            11
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            86.93323333333333,
                            125.70656666666666
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~baranidharan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-23 15:04:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "baranidharan",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:39:31.854197Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~babit13/3.embed",
            "fid": "babit13:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/babit13:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/babit13:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/3/8_KJ110F41QSN276JVC4S057VYWDSQC4.png",
                "list-thumb": "https://api.plotly.com/v2/files/babit13:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/babit13:3",
                "plots": "https://api.plotly.com/v2/plots/babit13:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=babit13"
            },
            "owner": "babit13",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 29,
            "web_url": "https://chart-studio.plotly.com/~babit13/3/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:39:31.875Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~babit13/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Turnover",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:2:7dc757",
                        "ysrc": "babit13:2:bb5023"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Total Turnover"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "1982-09-30",
                            "1992-03-31"
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            12719.900000000001,
                            17605.899999999998
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~babit13",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "babit13",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:37:02.732853Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Frankie4Figz/5.embed",
            "fid": "Frankie4Figz:5",
            "filename": "pie_dipsensitive_8hr",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Frankie4Figz/5/9_MBFXFR5N58XM555A88OT4N5NLAGB8J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Frankie4Figz/5/2_FXEQTFET5KECI4TG9RM90AEJ83VR2R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Frankie4Figz/5/8_C73MC6F21XJKEIUBZMXPOIFR08Y32E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Frankie4Figz/5/9_MBFXFR5N58XM555A88OT4N5NLAGB8J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Frankie4Figz:5",
                "plots": "https://api.plotly.com/v2/plots/Frankie4Figz:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=Frankie4Figz"
            },
            "owner": "Frankie4Figz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Frankie4Figz/5/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:42:10.011Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Frankie4Figz/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "rgba(255,255,255,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "labelssrc": "Frankie4Figz:4:1e165b",
                        "valuessrc": "Frankie4Figz:4:b0db92"
                    }
                ],
                "layout": {
                    "title": "Variable Importance",
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Frankie4Figz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 04:57:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Frankie4Figz",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:36:47.180187Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~umer41789/1.embed",
            "fid": "umer41789:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/umer41789:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/umer41789:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/umer41789/1/8_KAXDHAJBEW4BLSTTW1B2Y9E816DS1A.png",
                "list-thumb": "https://api.plotly.com/v2/files/umer41789:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/umer41789:1",
                "plots": "https://api.plotly.com/v2/plots/umer41789:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=umer41789"
            },
            "owner": "umer41789",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~umer41789/1/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:36:47.195Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~umer41789/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cd5bf1",
                        "name": "lymphoma_DLBCL(18)",
                        "type": "box",
                        "ysrc": "umer41789:0:ecd731",
                        "marker": {
                            "color": "hsl(0,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "d6823e",
                        "name": "lung_small_cell(54)",
                        "type": "box",
                        "ysrc": "umer41789:0:f6f02e",
                        "marker": {
                            "color": "hsl(27.692307692307693,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "85bd30",
                        "name": "B-cell_lymphoma_other(16)",
                        "type": "box",
                        "ysrc": "umer41789:0:e38c0e",
                        "marker": {
                            "color": "hsl(46.15384615384615,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "05b3f9",
                        "name": "T-cell_lymphoma_other(11)",
                        "type": "box",
                        "ysrc": "umer41789:0:af48b8",
                        "marker": {
                            "color": "hsl(55.38461538461539,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "e35488",
                        "name": "lymphoma_Burkitt(11)",
                        "type": "box",
                        "ysrc": "umer41789:0:5b5d79",
                        "marker": {
                            "color": "hsl(64.61538461538461,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "9545a2",
                        "name": "prostate(8)",
                        "type": "box",
                        "ysrc": "umer41789:0:0c7035",
                        "marker": {
                            "color": "hsl(73.84615384615384,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "b9b158",
                        "name": "Ewings_sarcoma(12)",
                        "type": "box",
                        "ysrc": "umer41789:0:c238b0",
                        "marker": {
                            "color": "hsl(92.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "7f5aa6",
                        "name": "AML(39)",
                        "type": "box",
                        "ysrc": "umer41789:0:990970",
                        "marker": {
                            "color": "hsl(138.46153846153845,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "c8c0a0",
                        "name": "breast(60)",
                        "type": "box",
                        "ysrc": "umer41789:0:dcb578",
                        "marker": {
                            "color": "hsl(147.69230769230768,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "3bc710",
                        "name": "NA(387)",
                        "type": "box",
                        "ysrc": "umer41789:0:3f6e6b",
                        "marker": {
                            "color": "hsl(156.92307692307693,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "115aec",
                        "name": "other(8)",
                        "type": "box",
                        "ysrc": "umer41789:0:394984",
                        "marker": {
                            "color": "hsl(166.15384615384616,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "bd06b1",
                        "name": "colorectal(63)",
                        "type": "box",
                        "ysrc": "umer41789:0:cb1eba",
                        "marker": {
                            "color": "hsl(175.3846153846154,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "53b090",
                        "name": "liver(29)",
                        "type": "box",
                        "ysrc": "umer41789:0:95119f",
                        "marker": {
                            "color": "hsl(193.84615384615384,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "81aba4",
                        "name": "soft_tissue(20)",
                        "type": "box",
                        "ysrc": "umer41789:0:3c8773",
                        "marker": {
                            "color": "hsl(221.53846153846155,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "2dcfd7",
                        "name": "ovary(55)",
                        "type": "box",
                        "ysrc": "umer41789:0:bc3997",
                        "marker": {
                            "color": "hsl(249.23076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "14d604",
                        "name": "multiple_myeloma(29)",
                        "type": "box",
                        "ysrc": "umer41789:0:1daada",
                        "marker": {
                            "color": "hsl(313.84615384615387,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "4efdbf",
                        "name": "giant_cell_tumour(3)",
                        "type": "box",
                        "ysrc": "umer41789:0:61a1e4",
                        "marker": {
                            "color": "hsl(332.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "edb8f0",
                        "name": "meningioma(3)",
                        "type": "box",
                        "ysrc": "umer41789:0:3cba33",
                        "marker": {
                            "color": "hsl(360,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "mRNA expression (RNAseq): KDM6B"
                    },
                    "width": 1124,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            17.5
                        ],
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.1098274384891031,
                            5.046259070921458
                        ],
                        "autorange": true
                    },
                    "height": 750,
                    "legend": {
                        "bgcolor": "#E2E2E2",
                        "bordercolor": "#222",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 250,
                        "pad": 5
                    },
                    "hovermode": "closest",
                    "showticklabels": true
                }
            },
            "height": 750,
            "width": 1124,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~umer41789",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:36:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "umer41789",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:35:37.953454Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~baranidharan/34.embed",
            "fid": "baranidharan:34",
            "filename": "Plot 34",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/baranidharan:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/baranidharan:34/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/baranidharan/34/8_8LFNMBN2NH2XREJFR02LN8S1G9XS8G.png",
                "list-thumb": "https://api.plotly.com/v2/files/baranidharan:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/baranidharan:34",
                "plots": "https://api.plotly.com/v2/plots/baranidharan:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=baranidharan"
            },
            "owner": "baranidharan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~baranidharan/34/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:35:37.968Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~baranidharan/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6b7350d6-fa46-438b-b507-72cb4944a2a7",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "energy",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "baranidharan:33:a260c8",
                        "ysrc": "baranidharan:33:2fbed6"
                    },
                    {
                        "uid": "0f189605-6515-4b93-8f5c-98fca4e5632a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "prediction",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "baranidharan:33:a260c8",
                        "ysrc": "baranidharan:33:a7707e"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "1939-01-01",
                            "2020-12-01"
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.5892944444444455,
                            135.88059444444445
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~baranidharan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-23 15:04:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "baranidharan",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:27:24.662856Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~annaskobeleva/0.embed",
            "fid": "annaskobeleva:0",
            "filename": "networkx",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/annaskobeleva:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/annaskobeleva:0/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/annaskobeleva/0/8_FF6HVLITSKV2IIW5CVG69SIU4J2657.png",
                "list-thumb": "https://api.plotly.com/v2/files/annaskobeleva:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/annaskobeleva:0",
                "plots": "https://api.plotly.com/v2/plots/annaskobeleva:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=annaskobeleva"
            },
            "owner": "annaskobeleva",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<br>Network graph made with Python",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~annaskobeleva/0/network-graph-made-with-python/",
            "world_readable": true,
            "date_modified": "2019-06-19T01:44:45.610Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~annaskobeleva/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "63d30d2a-4121-4632-a2fd-46286f457665",
                        "line": {
                            "color": "#888",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "annaskobeleva:1:788fb7",
                        "ysrc": "annaskobeleva:1:e8392f",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "4a816217-6cd3-4f56-a051-1c67c9d584eb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "annaskobeleva:1:1ec6a7",
                        "ysrc": "annaskobeleva:1:591e24",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "size": 10,
                            "colorbar": {
                                "title": {
                                    "side": "right",
                                    "text": "Node Connections"
                                },
                                "xanchor": "left",
                                "thickness": 15
                            },
                            "colorsrc": "annaskobeleva:1:123741",
                            "showscale": true,
                            "colorscale": "YlGnBu",
                            "reversescale": true
                        },
                        "textsrc": "annaskobeleva:1:6f06e2",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16
                        },
                        "text": "<br>Network graph made with Python"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 20,
                        "l": 5,
                        "r": 5,
                        "t": 40
                    },
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.005,
                            "y": -0.002,
                            "text": "Python code: <a href='https://plot.ly/ipython-notebooks/network-graphs/'> https://plot.ly/ipython-notebooks/network-graphs/</a>",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~annaskobeleva",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-06-18 05:08:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "annaskobeleva",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:19:16.211767Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~surpass1988/8.embed",
            "fid": "surpass1988:8",
            "filename": "gantt-hours-minutes",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/surpass1988:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/surpass1988:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/surpass1988:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/surpass1988:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/surpass1988:8",
                "plots": "https://api.plotly.com/v2/plots/surpass1988:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=surpass1988"
            },
            "owner": "surpass1988",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Daily Schedule",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~surpass1988/8/daily-schedule/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:20:12.997Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~surpass1988/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "94342451-b462-42e5-a36a-66ad8a6c496b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:0d76bd",
                        "ysrc": "surpass1988:9:6f896b",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "03328695-69c2-4bbc-8d41-93a91244eca0",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:c8519f",
                        "ysrc": "surpass1988:9:2f273c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "4de3d6ab-988d-4e39-ade0-7b9e870fa9bb",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:7cfda9",
                        "ysrc": "surpass1988:9:63dffc",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "00a385a3-fb91-47b7-9bf0-ec6b9ad4ae17",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:2286a4",
                        "ysrc": "surpass1988:9:88b823",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "f137b9c3-2406-4bab-8d55-2a165bb36104",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:e2501c",
                        "ysrc": "surpass1988:9:2e7175",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "33b405d6-9e46-4516-83fa-bc517e4842e1",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:839628",
                        "ysrc": "surpass1988:9:937e09",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "56cfe5dd-38f0-4a73-ba1a-63fe9728f33a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:d1b7dc",
                        "ysrc": "surpass1988:9:e60eb2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b48f48fc-25ea-4098-b491-3ba549bec693",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:788999",
                        "ysrc": "surpass1988:9:4af993",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "53bcdc5f-be53-486e-8d80-e27ac4c66868",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:f28c43",
                        "ysrc": "surpass1988:9:d27186",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "795acddf-b4dc-4394-b562-2e2377e7616e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:7bdc90",
                        "ysrc": "surpass1988:9:0ef789",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "7cd64eed-5944-4ef6-acc3-204f6ed6e253",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:71b0c6",
                        "ysrc": "surpass1988:9:e77671",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "9cda0c07-0c2c-4395-95c3-11170ec6bd4d",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:b12c45",
                        "ysrc": "surpass1988:9:aeebe2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "922fa2ea-c924-467a-b012-7d95847e23d3",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:4e3c23",
                        "ysrc": "surpass1988:9:d24629",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "6e6b9646-0506-4890-a177-83e3e96da7ab",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:f774ba",
                        "ysrc": "surpass1988:9:7564ca",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "5ecec94a-0495-4d49-a1f6-325e56faaf90",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:fc7341",
                        "ysrc": "surpass1988:9:5d3a7e",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "fc0764ca-24e4-4944-a296-1c583d837f8d",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:733ef9",
                        "ysrc": "surpass1988:9:3b5eda",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "a8d5c71e-e553-4f7a-a320-645043968361",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:fc9dc0",
                        "ysrc": "surpass1988:9:aef66c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "87788479-9650-4799-89da-8a66c19ffad0",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:4253df",
                        "ysrc": "surpass1988:9:088d13",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "3f8ffeb9-b073-4ed1-8620-f87212adb9d4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:35e8e9",
                        "ysrc": "surpass1988:9:1ba6f5",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "be85db13-4681-4ae1-8101-a1a0aff8c4a4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:ab4bf3",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "95c882d2-3ead-4bdb-8c85-537f2fb17f06",
                        "name": "occupied",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:6f896b",
                        "marker": {
                            "size": 1,
                            "color": "rgb(31, 119, 180)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "13571e33-2a66-4350-9644-f8842b27581e",
                        "name": "off",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:2f273c",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 127, 14)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "1ae1692f-f2db-4629-8848-41bbf8ffe27f",
                        "name": "on",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:63dffc",
                        "marker": {
                            "size": 1,
                            "color": "rgb(44, 160, 44)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "ec4eedc9-c06a-4310-8f39-4e4e6187e437",
                        "name": "present",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:88b823",
                        "marker": {
                            "size": 1,
                            "color": "rgb(214, 39, 40)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "b26e3cc6-63d3-47fb-b86c-b82a61fe574c",
                        "name": "unoccupied",
                        "type": "scatter",
                        "xsrc": "surpass1988:9:abc1a5",
                        "ysrc": "surpass1988:9:2e7175",
                        "marker": {
                            "size": 1,
                            "color": "rgb(148, 103, 189)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Daily Schedule"
                    },
                    "width": 900,
                    "xaxis": {
                        "type": "date",
                        "showgrid": false,
                        "zeroline": false,
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "day",
                                    "count": 7,
                                    "label": "1w",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            21
                        ],
                        "showgrid": false,
                        "ticktext": [
                            "2019-04-22",
                            "2019-04-22",
                            "2019-04-24",
                            "2019-04-24",
                            "2019-04-25",
                            "2019-04-25",
                            "2019-04-26",
                            "2019-04-26",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-27",
                            "2019-04-28",
                            "2019-04-28",
                            "2019-04-28",
                            "2019-04-28"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19
                        ],
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 600,
                    "shapes": [
                        {
                            "x0": "2019-04-22 06:35:02",
                            "x1": "2019-04-22 06:35:02",
                            "y0": -0.2,
                            "y1": 0.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-22 17:07:32",
                            "x1": "2019-04-22 17:07:32",
                            "y0": 0.8,
                            "y1": 1.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-24 12:15:54",
                            "x1": "2019-04-24 12:15:54",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-24 16:40:57",
                            "x1": "2019-04-24 16:40:57",
                            "y0": 2.8,
                            "y1": 3.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-25 14:24:52",
                            "x1": "2019-04-25 14:24:52",
                            "y0": 3.8,
                            "y1": 4.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-25 16:19:41",
                            "x1": "2019-04-25 16:19:41",
                            "y0": 4.8,
                            "y1": 5.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-26 13:32:07",
                            "x1": "2019-04-26 13:32:07",
                            "y0": 5.8,
                            "y1": 6.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-26 18:06:17",
                            "x1": "2019-04-26 18:06:17",
                            "y0": 6.8,
                            "y1": 7.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-27 06:30:30",
                            "x1": "2019-04-27 06:30:30",
                            "y0": 7.8,
                            "y1": 8.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-27 08:18:29",
                            "x1": "2019-04-27 08:18:29",
                            "y0": 8.8,
                            "y1": 9.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-27 10:16:50",
                            "x1": "2019-04-27 10:16:50",
                            "y0": 9.8,
                            "y1": 10.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2019-04-27 10:16:51",
                            "x1": "2019-04-27 10:16:51",
                            "y0": 10.8,
                            "y1": 11.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2019-04-27 11:02:37",
                            "x1": "2019-04-27 11:02:37",
                            "y0": 11.8,
                            "y1": 12.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-27 13:48:17",
                            "x1": "2019-04-27 13:48:17",
                            "y0": 12.8,
                            "y1": 13.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2019-04-27 15:31:02",
                            "x1": "2019-04-27 15:31:02",
                            "y0": 13.8,
                            "y1": 14.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2019-04-27 16:20:46",
                            "x1": "2019-04-27 16:20:46",
                            "y0": 14.8,
                            "y1": 15.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-04-28 05:23:35",
                            "x1": "2019-04-28 05:23:35",
                            "y0": 15.8,
                            "y1": 16.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2019-04-28 05:36:36",
                            "x1": "2019-04-28 05:36:36",
                            "y0": 16.8,
                            "y1": 17.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2019-04-28 14:26:50",
                            "x1": "2019-04-28 14:26:50",
                            "y0": 17.8,
                            "y1": 18.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2019-04-28 16:20:02",
                            "x1": "2019-04-28 16:20:02",
                            "y0": 18.8,
                            "y1": 19.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~surpass1988",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-16 02:23:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "surpass1988",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:17:22.086685Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~babit13/1.embed",
            "fid": "babit13:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/babit13:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/babit13:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/1/8_T1W6KZAFG3A170P4A6ZK2JDZT9SSC8.png",
                "list-thumb": "https://api.plotly.com/v2/files/babit13:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/babit13:1",
                "plots": "https://api.plotly.com/v2/plots/babit13:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=babit13"
            },
            "owner": "babit13",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~babit13/1/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:17:22.101Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~babit13/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Turnover",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:0:8110ce",
                        "ysrc": "babit13:0:62d108"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Energy Production Jan 1939--Mar 2019"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "1982-09-30",
                            "1992-03-31"
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            12719.900000000001,
                            17605.899999999998
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~babit13",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "babit13",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T05:07:04.783693Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~metrics/10.embed",
            "fid": "metrics:10",
            "filename": "Numnodes per Hop",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/metrics/10/9_3GGD1MC8LRY63EIMJD7NBFJF0KWXE5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/metrics/10/2_DYWTRU64O9ALNHMMJPXD6M9M9URDCA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/metrics/10/8_OORWGUUZKSINJXMQKTFQFNDM1D5QHT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/metrics/10/9_3GGD1MC8LRY63EIMJD7NBFJF0KWXE5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/metrics:10",
                "plots": "https://api.plotly.com/v2/plots/metrics:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=metrics"
            },
            "owner": "metrics",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~metrics/10/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:07:05.304Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~metrics/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c0a788b6-88be-47fb-a55b-6a134b4aa3f0",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:084dba"
                    },
                    {
                        "uid": "bcdd7626-8acf-494d-a7b1-6cf7ebd7fe2f",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:7a5bd9"
                    },
                    {
                        "uid": "88b17a65-b8c9-4d7a-84b6-2df5124322b1",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:c99c5f"
                    },
                    {
                        "uid": "c99cdb6b-135e-4c46-bda6-b1879121875f",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:2f4694"
                    },
                    {
                        "uid": "db628f20-5b3e-4567-8332-01782b7e29f0",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:52a16a"
                    },
                    {
                        "uid": "41589789-1094-4f0f-a160-f113784a794f",
                        "type": "scatter",
                        "xsrc": "metrics:11:d44853",
                        "ysrc": "metrics:11:2302af"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~metrics",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 09:42:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "metrics",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}