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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE2JTNBMzIlM0EwMC4yNzQ0NTIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNiUzQTM5JTNBMTAuNTA4MDgyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T16:39:10.508082Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67086.embed",
            "fid": "amper:67086",
            "filename": "06-17-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67086/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67086/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67086/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67086/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67086",
                "plots": "https://api.plotly.com/v2/plots/amper:67086",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-17-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67086/_06-17-19-ds-1642-alg-5421-param-1250-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:39:12.538Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67086/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0f37f995-8792-4fb4-8072-32f694228d31",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67087:16dd2b",
                        "ysrc": "amper:67087:0dbbc3",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "c24ec152-2a29-4cb9-b8b6-623b4b7b2754",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67087:16dd2b",
                        "ysrc": "amper:67087:39e179",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "1f2b4556-a177-4525-ab3b-4a3368fb7c3b",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67087:16dd2b",
                        "ysrc": "amper:67087:b815cd",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    }
                ],
                "layout": {
                    "title": "06-17-19_ds-1642_alg-5421_param-1250_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "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-17T16:37:59.399019Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SPAddict25/36.embed",
            "fid": "SPAddict25:36",
            "filename": "Tutorial Barchart",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/36/9_O186KAATLXQNQ4A9C67S5N5PBSP0PD.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SPAddict25:36/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/36/8_LWQL1INCIKOMSIU05TV6FDJBE89MIS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/36/9_O186KAATLXQNQ4A9C67S5N5PBSP0PD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SPAddict25:36",
                "plots": "https://api.plotly.com/v2/plots/SPAddict25:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=SPAddict25"
            },
            "owner": "SPAddict25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SPAddict25/36/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:40:50.294Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SPAddict25/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cd073c3b-6995-4d77-8935-bf08e82892a8",
                        "name": "Gbl Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:9036e5",
                        "marker": {
                            "line": {
                                "color": "rgba(255, 153, 51, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(255, 153, 51, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "e5996185-039e-4068-b9fa-29bb23bd4c31",
                        "name": "Gbl ex-US Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:41c6fc",
                        "marker": {
                            "line": {
                                "color": "rgba(55, 128, 191, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(55, 128, 191, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "777c2692-e7d1-480c-8aea-0cb6b330a12f",
                        "name": "Euro Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:def3d5",
                        "marker": {
                            "line": {
                                "color": "rgba(50, 171, 96, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(50, 171, 96, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "9042a596-22ff-4076-82c2-715e88d71b5c",
                        "name": "Japan Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:d473ed",
                        "marker": {
                            "line": {
                                "color": "rgba(128, 0, 128, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(128, 0, 128, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "ff679a08-ab2a-46c9-96f4-f33a8a8ebff7",
                        "name": "Asia Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:36e684",
                        "marker": {
                            "line": {
                                "color": "rgba(219, 64, 82, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(219, 64, 82, 0.6)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "ecb38a87-44e7-46cb-8222-e25f5008d51a",
                        "name": "NA Mkt",
                        "text": "",
                        "type": "bar",
                        "xsrc": "SPAddict25:37:f6a617",
                        "ysrc": "SPAddict25:37:d5b169",
                        "marker": {
                            "line": {
                                "color": "rgba(0, 128, 128, 1.0)",
                                "width": 1
                            },
                            "color": "rgba(0, 128, 128, 0.6)"
                        },
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SPAddict25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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-06-13 18:07:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SPAddict25",
                "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-17T16:37:21.353979Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kylejscampbell/4.embed",
            "fid": "kylejscampbell:4",
            "filename": "Plate Like",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kylejscampbell:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kylejscampbell:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kylejscampbell:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kylejscampbell:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kylejscampbell:4",
                "plots": "https://api.plotly.com/v2/plots/kylejscampbell:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=kylejscampbell"
            },
            "owner": "kylejscampbell",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kylejscampbell/4/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:40:12.295Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kylejscampbell/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "contour",
                        "xsrc": "kylejscampbell:3:7f04d4",
                        "ysrc": "kylejscampbell:3:26ec4e",
                        "zsrc": "kylejscampbell:3:728c34",
                        "contours": {
                            "end": 3.2,
                            "size": 0.1,
                            "start": 0.6000000000000001,
                            "coloring": "heatmap"
                        },
                        "colorscale": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Electric Potential for Plate Like Terminals"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "x position"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "y position"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kylejscampbell",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 15:53:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kylejscampbell",
                "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-17T16:37:04.285189Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~soumyadipdutta2007/0.embed",
            "fid": "soumyadipdutta2007:0",
            "filename": "stacked-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/soumyadipdutta2007:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/soumyadipdutta2007:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/soumyadipdutta2007:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/soumyadipdutta2007:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/soumyadipdutta2007:0",
                "plots": "https://api.plotly.com/v2/plots/soumyadipdutta2007:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=soumyadipdutta2007"
            },
            "owner": "soumyadipdutta2007",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Yes vs No",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~soumyadipdutta2007/0/yes-vs-no/",
            "world_readable": true,
            "date_modified": "2019-06-19T12:43:23.320Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~soumyadipdutta2007/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "35fa8d68-2688-46b5-8cfd-708b2ed6c62b",
                        "name": "Yes",
                        "type": "bar",
                        "xsrc": "soumyadipdutta2007:1:fb330f",
                        "ysrc": "soumyadipdutta2007:1:e5f7ed"
                    },
                    {
                        "uid": "9801fdad-f2d7-4000-9858-75c1e53b8992",
                        "name": "No",
                        "type": "bar",
                        "xsrc": "soumyadipdutta2007:1:334186",
                        "ysrc": "soumyadipdutta2007:1:97a14a"
                    }
                ],
                "layout": {
                    "barmode": "stack"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~soumyadipdutta2007",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.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 16:36:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "soumyadipdutta2007",
                "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-17T16:36:11.138487Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~andacdemir/156.embed",
            "fid": "andacdemir:156",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/andacdemir:156/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/andacdemir:156/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/andacdemir/156/8_9IS6AWZLZKPYH413RYW67YW9M08MCL.png",
                "list-thumb": "https://api.plotly.com/v2/files/andacdemir:156/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/andacdemir:156",
                "plots": "https://api.plotly.com/v2/plots/andacdemir:156",
                "parent": "https://api.plotly.com/v2/folders/home?user=andacdemir"
            },
            "owner": "andacdemir",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "$\text{Lag Color Map}$",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~andacdemir/156/extlag-color-map/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:36:11.631Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~andacdemir/156/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "87506028-6c00-413d-8036-f8d652385b23",
                        "type": "heatmap",
                        "xsrc": "andacdemir:157:25d7ae",
                        "ysrc": "andacdemir:157:924b31",
                        "zsrc": "andacdemir:157:0c990d,bc5c97,d0675b,b45a07,00c5ff,e4d597",
                        "colorscale": "Viridis"
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0,
                        "text": "$\text{Lag Color Map}$",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            5,
                            455
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 17,
                                "color": "rgb(68, 68, 68)",
                                "family": "Courier New, monospace"
                            },
                            "text": "$\text{EMG - EEG Latency (samples)}$"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            5,
                            255
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 17,
                                "color": "rgb(68, 68, 68)",
                                "family": "Courier New, monospace"
                            },
                            "text": "$\text{Haptic Force - EMG Latency (samples)}$"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~andacdemir",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-30 05:00:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "andacdemir",
                "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-17T16:33:03.564997Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rjt_1996/35.embed",
            "fid": "rjt_1996:35",
            "filename": "business posted last week",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/35/9_SKMJR3OAABIVH1P9U5UAAQ1ELO7UYI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/35/2_ZP68XICYO1IH17ZPPCKJFM0Q9K86XM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/35/8_JSVJEP40NN0MW50KL30C9W1UHVF4CR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rjt_1996/35/9_SKMJR3OAABIVH1P9U5UAAQ1ELO7UYI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rjt_1996:35",
                "plots": "https://api.plotly.com/v2/plots/rjt_1996:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=rjt_1996"
            },
            "owner": "rjt_1996",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~rjt_1996/35/",
            "world_readable": true,
            "date_modified": "2019-06-20T14:41:11.692Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rjt_1996/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9a3c4d1a-7819-49bd-bb46-cbb33ddd2741",
                        "type": "table",
                        "cells": {
                            "valuessrc": "rjt_1996:36:2a5d91"
                        },
                        "header": {
                            "valuessrc": "rjt_1996:36:2efda6"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rjt_1996",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 16:12:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rjt_1996",
                "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-17T16:32:46.457505Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~japrietov/155.embed",
            "fid": "japrietov:155",
            "filename": "mandatum",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/japrietov:155/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/japrietov/155/2_8ZCO3CGE9VK51L29IKBRWJ6EFCMWWY.png",
                "block-thumb": "https://api.plotly.com/v2/files/japrietov:155/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/japrietov:155/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/japrietov:155",
                "plots": "https://api.plotly.com/v2/plots/japrietov:155",
                "parent": "https://api.plotly.com/v2/folders/home?user=japrietov"
            },
            "owner": "japrietov",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~japrietov/155/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:57:47.586Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~japrietov/155/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f56beca9-ffc9-4b9f-bba2-1b832183d034",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "japrietov:156:ac36fd",
                        "ysrc": "japrietov:156:9584b1",
                        "textsrc": "japrietov:156:59dd32",
                        "hoverinfo": "text"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~japrietov",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.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": "2017-07-02 15:48:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "japrietov",
                "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-17T16:32:34.937325Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sarwarazhar55/14.embed",
            "fid": "sarwarazhar55:14",
            "filename": "Plot 7 copy",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sarwarazhar55:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sarwarazhar55/14/2_LSNOS23N3BJGKVNEDAONM4CYR3PZ45.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sarwarazhar55/14/8_G1KWK20PJUBUEZWBGKHTTFGHBOVVZA.png",
                "list-thumb": "https://api.plotly.com/v2/files/sarwarazhar55:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sarwarazhar55:14",
                "plots": "https://api.plotly.com/v2/plots/sarwarazhar55:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=sarwarazhar55"
            },
            "owner": "sarwarazhar55",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sarwarazhar55/14/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:36:39.122Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sarwarazhar55/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "74156e",
                        "mode": "lines",
                        "name": "Relevant Docs",
                        "type": "scatter",
                        "xsrc": "sarwarazhar55:13:a4a7e9",
                        "ysrc": "sarwarazhar55:13:1fc8c0"
                    },
                    {
                        "uid": "796c86",
                        "mode": "lines",
                        "name": "Non Relevant Docs",
                        "type": "scatter",
                        "xsrc": "sarwarazhar55:13:a4a7e9",
                        "ysrc": "sarwarazhar55:13:ab7cd4"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Cohesive Scores for each Query in the Cranfield Collection"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            225
                        ],
                        "title": {
                            "text": "Query Number"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.02415189738888889,
                            0.05060612961111111
                        ],
                        "title": {
                            "text": "Cohesive Score"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sarwarazhar55",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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": "2018-02-01 18:40:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sarwarazhar55",
                "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-17T16:32:00.793688Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SPAddict25/34.embed",
            "fid": "SPAddict25:34",
            "filename": "Market Premiums.html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/34/9_3BSD9P074UV6IWM6PKBMGAWZUWR1PD.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SPAddict25:34/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/34/8_XIG9H9DLTMC9F19G3F996K6OZIVDKC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SPAddict25/34/9_3BSD9P074UV6IWM6PKBMGAWZUWR1PD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SPAddict25:34",
                "plots": "https://api.plotly.com/v2/plots/SPAddict25:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=SPAddict25"
            },
            "owner": "SPAddict25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Market Premiums",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SPAddict25/34/market-premiums/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:32:01.478Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SPAddict25/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "49aa792f-86f8-47fa-a31e-7f01f0ef3f53",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:77a68b",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "5c2d96a2-f47d-464a-bac7-872a69da3fe4",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Gbl ex-US Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:15d284",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "2d800b14-dd5a-4087-a9b3-d5bbad1143f2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Euro Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:f7547d",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "d77c1ed5-e2cc-48e8-9196-ee2653f3c244",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Japan Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:fb1675",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    },
                    {
                        "uid": "41e476e3-44e2-4ade-9b79-da7362a5ad48",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Asia Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:bd5064",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "uid": "7f17b785-8513-46e2-aa50-fdd27eaba7f9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "NA Mkt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SPAddict25:35:431733",
                        "ysrc": "SPAddict25:35:989bff",
                        "xaxis": "x6",
                        "yaxis": "y6"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#D9D9D9"
                        },
                        "text": "Market Premiums"
                    },
                    "width": 1000,
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "height": 1000,
                    "legend": {
                        "font": {
                            "color": "#D9D9D9"
                        },
                        "bgcolor": "#151516"
                    },
                    "xaxis2": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "xaxis3": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "xaxis4": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y4",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "xaxis5": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.45
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "xaxis6": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "y6",
                        "domain": [
                            0.55,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis2": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x2",
                        "domain": [
                            0.7777777777777778,
                            1.0
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis3": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x3",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis4": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x4",
                        "domain": [
                            0.3888888888888889,
                            0.6111111111111112
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis5": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x5",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "yaxis6": {
                        "title": {
                            "font": {
                                "color": "#D9D9D9"
                            },
                            "text": ""
                        },
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.22222222222222224
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "color": "#C2C2C2"
                        },
                        "gridcolor": "#434343",
                        "zerolinecolor": "#666570"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.225,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "Gbl ex-US Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Euro Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.6111111111111112,
                            "font": {
                                "size": 16
                            },
                            "text": "Japan Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.225,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "Asia Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.775,
                            "y": 0.22222222222222224,
                            "font": {
                                "size": 16
                            },
                            "text": "NA Mkt",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "#151516",
                    "paper_bgcolor": "#151516"
                }
            },
            "height": 1000,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SPAddict25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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-06-13 18:07:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SPAddict25",
                "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-17T16:32:00.274452Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~srt7/4.embed",
            "fid": "srt7:4",
            "filename": "corrosion",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/srt7:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/srt7:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/srt7:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/srt7:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/srt7:4",
                "plots": "https://api.plotly.com/v2/plots/srt7:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=srt7"
            },
            "owner": "srt7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~srt7/4/",
            "world_readable": true,
            "date_modified": "2019-06-18T07:53:47.898Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~srt7/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8e3b3d84-9c67-4d1e-a7aa-ebd2d8dc5ccc",
                        "type": "heatmap",
                        "zsrc": "srt7:5:",
                        "opacity": 0.75,
                        "hoverinfo": "none",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#00083e"
                            ],
                            [
                                0.5,
                                "#ededee"
                            ],
                            [
                                1,
                                "#ffffff"
                            ]
                        ]
                    }
                ],
                "layout": {
                    "xaxis": {
                        "dtick": 1,
                        "tick0": -0.5,
                        "ticks": "",
                        "zeroline": false,
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "dtick": 1,
                        "tick0": 0.5,
                        "ticks": "",
                        "zeroline": false,
                        "autorange": "reversed",
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "height": 1010,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "annotations": [
                        {
                            "x": -0.45,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>age</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>avg</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "2.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "51.13689655172414",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "3.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "95.06344086021502",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "4.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "214.6410344827586",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 4,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "5.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 4,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "310.4602564102564",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 5,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "6.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 5,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "93.31333333333335",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 6,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "7.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 6,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "528.2632500000001",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 7,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "8.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 7,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "667.9766666666666",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 8,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "9.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 8,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "509.01783783783776",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 9,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "10.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 9,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "299.08714285714274",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 10,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "11.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 10,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "814.5734782608697",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 11,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "12.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 11,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "832.1612244897959",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 12,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "13.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 12,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "854.2570886075949",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 13,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "14.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 13,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "496.6200000000001",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 14,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "15.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 14,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "647.0624324324326",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 15,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "16.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 15,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "915.86",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 16,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "17.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 16,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "707.1471929824561",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 17,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "18.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 17,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "613.155",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 18,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "19.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 18,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "708.6542592592594",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 19,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "20.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 19,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "508.443653846154",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 20,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "21.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 20,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "686.8063636363639",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 21,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "22.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 21,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "427.99130434782614",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 22,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "23.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 22,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "570.7400000000001",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 23,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "24.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 23,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "1319.66",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 24,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "25.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 24,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "988.7139999999999",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 25,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "26.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 25,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "126.91",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 26,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "27.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 26,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "nan",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 27,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "29.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 27,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "425.48",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 28,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "30.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 28,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "308.46",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 29,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "31.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 29,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "520.53",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 30,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "33.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 30,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "111.2",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 31,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "38.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 31,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.0",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 1010,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~srt7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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-16 07:53:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "srt7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}