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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE4KzAxJTNBMjIlM0EyNS43Mzc0OTYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswMSUzQTM2JTNBMzUuMDA3OTgxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T01:36:35.007981Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dingqy/13.embed",
            "fid": "dingqy:13",
            "filename": "d3-world-map",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dingqy:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dingqy:13/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/dingqy:13/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/dingqy:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dingqy:13",
                "plots": "https://api.plotly.com/v2/plots/dingqy:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=dingqy"
            },
            "owner": "dingqy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "2014 Global GDP",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dingqy/13/_2014-global-gdp/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:36:35.550Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dingqy/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "fe432087-3486-4d01-927c-9981deafa41b",
                        "type": "choropleth",
                        "zsrc": "dingqy:14:dfe37b",
                        "marker": {
                            "line": {
                                "color": "rgb(180,180,180)",
                                "width": 0.5
                            }
                        },
                        "textsrc": "dingqy:14:c1360b",
                        "colorbar": {
                            "title": {
                                "text": "GDP<br>Billions US$"
                            },
                            "tickprefix": "$"
                        },
                        "colorscale": [
                            [
                                0,
                                "rgb(5, 10, 172)"
                            ],
                            [
                                0.35,
                                "rgb(40, 60, 190)"
                            ],
                            [
                                0.5,
                                "rgb(70, 100, 245)"
                            ],
                            [
                                0.6,
                                "rgb(90, 120, 245)"
                            ],
                            [
                                0.7,
                                "rgb(106, 137, 247)"
                            ],
                            [
                                1,
                                "rgb(220, 220, 220)"
                            ]
                        ],
                        "locationssrc": "dingqy:14:854557",
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "geo": {
                        "showframe": false,
                        "projection": {
                            "type": "equirectangular"
                        },
                        "showcoastlines": false
                    },
                    "title": {
                        "text": "2014 Global GDP"
                    },
                    "annotations": [
                        {
                            "x": 0.55,
                            "y": 0.1,
                            "text": "Source: <a href=\"https://www.cia.gov/library/publications/the-world-factbook/fields/2195.html\">            CIA World Factbook</a>",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dingqy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-29 07:10:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dingqy",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-18T01:36:00.521321Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iusami/10.embed",
            "fid": "iusami:10",
            "filename": "sparsegp",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/iusami:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/iusami:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/iusami:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/iusami:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iusami:10",
                "plots": "https://api.plotly.com/v2/plots/iusami:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=iusami"
            },
            "owner": "iusami",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Data, Mean, Confidence, Confidence",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~iusami/10/data-mean-confidence-confidence/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:36:01.034Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iusami/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "57e2e290-c149-4c72-a23a-b9baab2c926a",
                        "mode": "markers",
                        "name": "Data",
                        "type": "scatter",
                        "xsrc": "iusami:11:303e6f",
                        "ysrc": "iusami:11:55fed4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "black",
                            "symbol": "x"
                        },
                        "showlegend": true
                    },
                    {
                        "uid": "6df9d7b1-b30c-479e-a3bc-50b8b903c4e1",
                        "line": {
                            "color": "#3465a4",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Mean",
                        "type": "scatter",
                        "xsrc": "iusami:11:6cdd05",
                        "ysrc": "iusami:11:9bd20f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showlegend": true
                    },
                    {
                        "uid": "8876c1a9-02a8-4801-946d-46a87496fe16",
                        "line": {
                            "color": "#204a87",
                            "width": 0.4
                        },
                        "mode": "lines",
                        "name": "Confidence",
                        "type": "scatter",
                        "xsrc": "iusami:11:6cdd05",
                        "ysrc": "iusami:11:1f1930",
                        "xaxis": "x",
                        "yaxis": "y",
                        "opacity": 0.3,
                        "fillcolor": "rgba(114, 159, 207, 0.3)",
                        "showlegend": false,
                        "legendgroup": "Confidence_fill_(1,1)"
                    },
                    {
                        "uid": "7a48c6d7-2757-4164-8745-7101cb1380dd",
                        "fill": "tonextx",
                        "line": {
                            "color": "#204a87",
                            "width": 0.4
                        },
                        "mode": "lines",
                        "name": "Confidence",
                        "type": "scatter",
                        "xsrc": "iusami:11:6cdd05",
                        "ysrc": "iusami:11:b0b31c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "opacity": 0.3,
                        "fillcolor": "rgba(114, 159, 207, 0.3)",
                        "showlegend": true,
                        "legendgroup": "Confidence_fill_(1,1)"
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Raleway, sans-serif"
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iusami",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-22 10:11:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iusami",
                "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-18T01:33:01.218181Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ellemorris/17.embed",
            "fid": "ellemorris:17",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ellemorris:17/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ellemorris:17/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ellemorris:17/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ellemorris:17/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ellemorris:17",
                "plots": "https://api.plotly.com/v2/plots/ellemorris:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=ellemorris"
            },
            "owner": "ellemorris",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Petal Width (cm)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ellemorris/17/petal-width-cm/",
            "world_readable": true,
            "date_modified": "2019-06-20T16:08:18.724Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ellemorris/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "78184c1c-e9a0-47a7-a1a7-7973884f9e98",
                        "name": "petal width (cm)",
                        "type": "histogram",
                        "xsrc": "ellemorris:16:048b45",
                        "xbins": {
                            "end": 3,
                            "size": 0.5,
                            "start": 0
                        },
                        "marker": {
                            "line": {
                                "color": "#4D5663",
                                "width": 0
                            }
                        },
                        "nbinsx": 0,
                        "opacity": 0.78,
                        "histfunc": "count",
                        "histnorm": "",
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Petal Width (cm)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            3
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": "Standard Deviations from Mean"
                        },
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "showspikes": false,
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "range": [
                            0,
                            50.526315789473685
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": "Petal Width (cm)"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "showspikes": false,
                        "zerolinecolor": "#E1E5ED"
                    },
                    "bargap": 0,
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "barmode": "overlay",
                    "autosize": true,
                    "bargroupgap": 0,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ellemorris",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/DVAHZ4A7OH3D79E2DX36KV1GCA6T9H.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "ellemorris",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-11-19 19:27:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ellemorris",
                "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-18T01:32:56.002285Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Magnet/4.embed",
            "fid": "Magnet:4",
            "filename": "basic_pie_chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Magnet:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Magnet:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Magnet:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Magnet:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Magnet:4",
                "plots": "https://api.plotly.com/v2/plots/Magnet:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=Magnet"
            },
            "owner": "Magnet",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Magnet/4/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:32:56.456Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Magnet/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e2099554-a429-4f98-93d4-a0c641fb0715",
                        "type": "pie",
                        "labelssrc": "Magnet:5:d2bbf1",
                        "valuessrc": "Magnet:5:f87958"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Magnet",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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 01:00:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Magnet",
                "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-18T01:29:16.816449Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Magnet/2.embed",
            "fid": "Magnet:2",
            "filename": "pandas-multiple-scatter",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Magnet:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Magnet:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Magnet:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Magnet:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Magnet:2",
                "plots": "https://api.plotly.com/v2/plots/Magnet:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Magnet"
            },
            "owner": "Magnet",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Life Expectancy vs GDP per Capita",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Magnet/2/life-expectancy-vs-gdp-per-capita/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:29:17.423Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Magnet/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "82b4f1ca-69d7-42a2-8878-c358d54f7d8d",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "Magnet:3:1ce1d5",
                        "ysrc": "Magnet:3:c0eed0",
                        "textsrc": "Magnet:3:0d0422"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "type": "log",
                        "title": {
                            "text": "GDP per Capita"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Life Expectancy"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Magnet",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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 01:00:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Magnet",
                "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-18T01:27:26.181974Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~matthewspaul/10.embed",
            "fid": "matthewspaul:10",
            "filename": "Plot 10",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/matthewspaul/10/9_CO9AVKN7NSXN4JIQ3GZIDZ2QBGG6TS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/matthewspaul/10/2_VB44O04QCCGRTTREPY8X70YN0RXS9P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/matthewspaul/10/8_UF9QZ4RFG3UW759A4YE5HU3MDJPFHD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/matthewspaul/10/9_CO9AVKN7NSXN4JIQ3GZIDZ2QBGG6TS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/matthewspaul:10",
                "plots": "https://api.plotly.com/v2/plots/matthewspaul:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=matthewspaul"
            },
            "owner": "matthewspaul",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~matthewspaul/10/",
            "world_readable": true,
            "date_modified": "2019-06-18T04:32:10.894Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~matthewspaul/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "mode": "markers+text",
                        "rsrc": "matthewspaul:9:6ef0e3",
                        "type": "scatterpolar",
                        "marker": {
                            "sizeref": 1,
                            "sizesrc": "matthewspaul:9:2b2d91",
                            "sizemode": "diameter"
                        },
                        "textsrc": "matthewspaul:9:015c21",
                        "textfont": {
                            "family": "Droid Sans"
                        },
                        "thetasrc": "matthewspaul:9:08e47f",
                        "hoverinfo": "text",
                        "cliponaxis": true,
                        "textpositionsrc": "matthewspaul:9:40e7b2"
                    },
                    {
                        "fill": "toself",
                        "mode": "lines",
                        "rsrc": "matthewspaul:11:7fb2b9",
                        "type": "scatterpolar",
                        "subplot": "polar",
                        "thetasrc": "matthewspaul:11:b7e362",
                        "hoverinfo": "none",
                        "cliponaxis": false,
                        "showlegend": false,
                        "connectgaps": false
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "hole": 0.15,
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "sector": [
                            0,
                            180
                        ],
                        "bgcolor": "rgba(210, 46, 46, 0.05)",
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                4
                            ],
                            "tickmode": "linear",
                            "autorange": false
                        },
                        "angularaxis": {
                            "type": "linear"
                        }
                    },
                    "title": {
                        "text": "Technology Roadmap - Radar"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "images": [],
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_GRAY"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~matthewspaul",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 02:03:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "matthewspaul",
                "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-18T01:27:21.351181Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~weilsh/5.embed",
            "fid": "weilsh:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/weilsh/5/9_7TONZQ3N7ZKYM1FKLC4FOV4IKZVTB8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/weilsh/5/2_U1U7I97VHOVWJTSWBPOLVYF04SEMZT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/weilsh/5/8_6JKZSVJKGBIWZUAGURYZDI552LDKQA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/weilsh/5/9_7TONZQ3N7ZKYM1FKLC4FOV4IKZVTB8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/weilsh:5",
                "plots": "https://api.plotly.com/v2/plots/weilsh:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=weilsh"
            },
            "owner": "weilsh",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~weilsh/5/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:27:21.382Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~weilsh/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b328cf",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(1,133,113,1)",
                            "shape": "hv",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "name": "high",
                        "type": "scatter",
                        "xsrc": "weilsh:4:41bbfb",
                        "ysrc": "weilsh:4:6f773d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:80c511",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "high"
                    },
                    {
                        "uid": "d9cbb7",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(166,97,26,1)",
                            "shape": "hv",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "name": "low",
                        "type": "scatter",
                        "xsrc": "weilsh:4:102aa4",
                        "ysrc": "weilsh:4:7b7c56",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:aeafb1",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "low"
                    },
                    {
                        "uid": "46fc40",
                        "mode": "markers",
                        "name": "(high,1)",
                        "type": "scatter",
                        "xsrc": "weilsh:4:e5d38b",
                        "ysrc": "weilsh:4:d1b9fc",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(1,133,113,1)",
                                "width": 1.88976377952756
                            },
                            "size": 7.55905511811024,
                            "color": "rgba(1,133,113,1)",
                            "symbol": "cross-thin-open",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "weilsh:4:34b3ed",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(high,1)"
                    },
                    {
                        "uid": "698252",
                        "mode": "markers",
                        "name": "(low,1)",
                        "type": "scatter",
                        "xsrc": "weilsh:4:6749c6",
                        "ysrc": "weilsh:4:1fc261",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(166,97,26,1)",
                                "width": 1.88976377952756
                            },
                            "size": 7.55905511811024,
                            "color": "rgba(166,97,26,1)",
                            "symbol": "cross-thin-open",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "weilsh:4:333191",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(low,1)"
                    },
                    {
                        "uid": "2b5aeb",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "weilsh:4:b7e945",
                        "ysrc": "weilsh:4:9a3e1b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:13bfc0",
                        "textfont": {
                            "size": 14.6645669291339,
                            "color": "rgba(0, 0, 0, 1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "weilsh:4:28259b"
                    },
                    {
                        "uid": "e36b81",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "weilsh:4:b7e945",
                        "ysrc": "weilsh:4:10556e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:323221",
                        "textfont": {
                            "size": 14.6645669291339,
                            "color": "rgba(0, 0, 0, 1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "weilsh:4:fa2125"
                    },
                    {
                        "uid": "f3dfe3",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "weilsh:4:b7e945",
                        "ysrc": "weilsh:4:e47da9",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:7d1bf8",
                        "textfont": {
                            "size": 14.6645669291339,
                            "color": "rgba(0, 0, 0, 1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "weilsh:4:475f2c"
                    },
                    {
                        "uid": "75ac83",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "weilsh:4:b7e945",
                        "ysrc": "weilsh:4:8aa186",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:5d0db0",
                        "textfont": {
                            "size": 14.6645669291339,
                            "color": "rgba(0, 0, 0, 1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "weilsh:4:e165a6"
                    },
                    {
                        "uid": "9539d6",
                        "mode": "text",
                        "type": "scatter",
                        "xsrc": "weilsh:4:22c56e",
                        "ysrc": "weilsh:4:c3113d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "weilsh:4:7f68bc",
                        "textfont": {
                            "size": 14.6645669291339,
                            "color": "rgba(0, 0, 0, 1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "hovertextsrc": "weilsh:4:dd7aec"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15.9402241594022,
                        "color": "rgba(0, 0, 0, 1)",
                        "family": ""
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4.56833333333334,
                            95.935
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 15.9402241594022,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "Time(months)"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.98505603985056,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12.7521793275218,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "25",
                            "50",
                            "75"
                        ],
                        "tickvals": [
                            0,
                            25,
                            50,
                            75
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.724555643609193,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.724555643609193,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "25",
                            "50",
                            "75"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.05,
                            1.05
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 15.9402241594022,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "Percent Survival"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.98505603985056,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12.7521793275218,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.00",
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00"
                        ],
                        "tickvals": [
                            0,
                            0.25,
                            0.5,
                            0.75,
                            1
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.724555643609193,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.724555643609193,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.00",
                            "0.25",
                            "0.50",
                            "0.75",
                            "1.00"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 0.929133858267717,
                        "font": {
                            "size": 12.7521793275218,
                            "color": "rgba(0, 0, 0, 1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 2.06156048675734
                    },
                    "margin": {
                        "b": 43.3042756330428,
                        "l": 53.3997509339975,
                        "r": 7.97011207970112,
                        "t": 26.6268161062682
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(51,51,51,1)",
                                "width": 0.724555643609193,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        }
                    ],
                    "barmode": "relative",
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 1.02,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 15.9402241594022,
                                "color": "rgba(0, 0, 0, 1)",
                                "family": ""
                            },
                            "text": "group",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "left",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0,
                            "legendTitle": true
                        }
                    ],
                    "plot_bgcolor": "rgba(255,255,255,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~weilsh",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-06-17 15:11:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "weilsh",
                "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-18T01:26:02.509231Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mehdirifai/71.embed",
            "fid": "mehdirifai:71",
            "filename": "styled-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mehdirifai:71/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/mehdirifai:71/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mehdirifai/71/8_YU7EXOPPVGJR9996G50UV68HCN1PGN.png",
                "list-thumb": "https://api.plotly.com/v2/files/mehdirifai:71/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mehdirifai:71",
                "plots": "https://api.plotly.com/v2/plots/mehdirifai:71",
                "parent": "https://api.plotly.com/v2/folders/home?user=mehdirifai"
            },
            "owner": "mehdirifai",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Cumulative performance Methys",
            "views": 65,
            "web_url": "https://chart-studio.plotly.com/~mehdirifai/71/cumulative-performance-methys/",
            "world_readable": true,
            "date_modified": "2019-09-12T19:51:08.529Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mehdirifai/71/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "Methys performance - Sharpe = -2.50",
                        "type": "scatter",
                        "xsrc": "mehdirifai:72:3fef82",
                        "ysrc": "mehdirifai:72:912aae"
                    },
                    {
                        "mode": "lines",
                        "name": "Model performance - Sharpe = -2.23",
                        "type": "scatter",
                        "xsrc": "mehdirifai:72:359c36",
                        "ysrc": "mehdirifai:72:2f7e90"
                    },
                    {
                        "mode": "lines",
                        "name": "Benchmark portfolio (volume weighted) - Sharpe = -0.77",
                        "type": "scatter",
                        "xsrc": "mehdirifai:72:359c36",
                        "ysrc": "mehdirifai:72:ea2962"
                    }
                ],
                "layout": {
                    "title": "Cumulative performance Methys",
                    "xaxis": {
                        "title": "Date"
                    },
                    "yaxis": {
                        "title": "Performance Index"
                    },
                    "legend": {
                        "x": -0.1,
                        "y": 1.1,
                        "font": {
                            "size": 12,
                            "color": "#000",
                            "family": "sans-serif"
                        },
                        "bgcolor": "#E2E2E2",
                        "traceorder": "normal",
                        "bordercolor": "#FFFFFF",
                        "borderwidth": 2
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mehdirifai",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.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": "2015-02-09 00:26:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mehdirifai",
                "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-18T01:25:03.331620Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ChenS/3.embed",
            "fid": "ChenS:3",
            "filename": "high expression of LLGL2 in tumor",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ChenS:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ChenS/3/2_NLEVV2M504KT26FOMRNUVT243XEBIQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ChenS/3/8_2211H9GOAYVG1CVWON3V09JMWVZ0IZ.png",
                "list-thumb": "https://api.plotly.com/v2/files/ChenS:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ChenS:3",
                "plots": "https://api.plotly.com/v2/plots/ChenS:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=ChenS"
            },
            "owner": "ChenS",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ChenS/3/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:39:32.215Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ChenS/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cdc905",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "ChenS:2:159795",
                        "ysrc": "ChenS:2:203ab6",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "d5d00f",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "ChenS:2:159795",
                        "ysrc": "ChenS:2:2e3cad",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            11.5
                        ],
                        "title": {
                            "text": "tumor"
                        },
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            143.6
                        ],
                        "title": {
                            "text": "expression of certain"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ChenS",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-06-18 01:21:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ChenS",
                "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-18T01:22:25.737496Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ChenS/1.embed",
            "fid": "ChenS:1",
            "filename": "low expression data of LLGL2 in tumor",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ChenS:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ChenS/1/2_SHHGXMCAUWD09JFORDTHCYNOTZOQKC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ChenS/1/8_U3HN7KR1ICP54U13TZZ04J5TZLBYDN.png",
                "list-thumb": "https://api.plotly.com/v2/files/ChenS:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ChenS:1",
                "plots": "https://api.plotly.com/v2/plots/ChenS:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ChenS"
            },
            "owner": "ChenS",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ChenS/1/",
            "world_readable": true,
            "date_modified": "2019-06-18T01:46:01.861Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ChenS/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cdc905",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "ChenS:0:159795",
                        "ysrc": "ChenS:0:203ab6",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "d5d00f",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "ChenS:0:159795",
                        "ysrc": "ChenS:0:2e3cad",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            11.5
                        ],
                        "title": {
                            "text": "tumor"
                        },
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            143.6
                        ],
                        "title": {
                            "text": "expression of certain"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ChenS",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-06-18 01:21:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ChenS",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}