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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIxJTNBNDAlM0E1OC4zODIyMjYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMSUzQTQ2JTNBMjcuMDc4Mzg0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T21:46:27.078384Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ar795/4.embed",
            "fid": "ar795:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ar795:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ar795:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ar795:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ar795:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ar795:4",
                "plots": "https://api.plotly.com/v2/plots/ar795:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=ar795"
            },
            "owner": "ar795",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ar795/4/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:59:49.178Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ar795/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "RDF",
                        "type": "scatter",
                        "ysrc": "ar795:3:d2faa2"
                    },
                    {
                        "mode": "lines",
                        "name": "DF ",
                        "type": "scatter",
                        "ysrc": "ar795:3:722e9d",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "RDF VS DF -Seed 4-"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            199
                        ],
                        "title": {
                            "text": "Episodes"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.6363333333333333,
                            0.9896666666666667
                        ],
                        "title": {
                            "text": "Acceptance Ratio"
                        },
                        "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/~ar795",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-27 09:18:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ar795",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:45:01.095350Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~keeganhughes/24.embed",
            "fid": "keeganhughes:24",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/keeganhughes:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/keeganhughes:24/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/keeganhughes:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/keeganhughes:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/keeganhughes:24",
                "plots": "https://api.plotly.com/v2/plots/keeganhughes:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=keeganhughes"
            },
            "owner": "keeganhughes",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Scottish Referendum Voters who now want Independence",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~keeganhughes/24/scottish-referendum-voters-who-now-want-independence/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:45:01.545Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~keeganhughes/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "colorsrc": "keeganhughes:25:af2f10",
                            "valuesrc": "keeganhughes:25:2f0ce9",
                            "sourcesrc": "keeganhughes:25:bf5d35",
                            "targetsrc": "keeganhughes:25:f669c9"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0
                            },
                            "colorsrc": "keeganhughes:25:4fdeb1",
                            "labelsrc": "keeganhughes:25:33deb4",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "sort": false,
                    "title": "Scottish Referendum Voters who now want Independence",
                    "height": 772
                }
            },
            "height": 772,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~keeganhughes",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-26 23:51:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "keeganhughes",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:44:58.907991Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sligarbros/0.embed",
            "fid": "sligarbros:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sligarbros:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sligarbros:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/sligarbros:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/sligarbros:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sligarbros:0",
                "plots": "https://api.plotly.com/v2/plots/sligarbros:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=sligarbros"
            },
            "owner": "sligarbros",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sligarbros/0/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:44:59.363Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sligarbros/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b2ab8dab-be38-49c6-835a-fb92fe487f8b",
                        "type": "ohlc",
                        "xsrc": "sligarbros:1:7cf251",
                        "lowsrc": "sligarbros:1:bad879",
                        "highsrc": "sligarbros:1:88d27c",
                        "opensrc": "sligarbros:1:ef39f2",
                        "closesrc": "sligarbros:1:04b577"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sligarbros",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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-03-20 21:41:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sligarbros",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:44:49.994553Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/6.embed",
            "fid": "jzenemig:6",
            "filename": "basic-bar-chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:6",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/6/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:44:50.449Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f0df93cf-0f44-40b0-9987-b28af64e6f45",
                        "type": "bar",
                        "xsrc": "jzenemig:7:2d90bc",
                        "ysrc": "jzenemig:7:a683c8"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:44:01.963000Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~narayanan_infiswift/6.embed",
            "fid": "narayanan_infiswift:6",
            "filename": "grouped-bar-direct-labels",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/narayanan_infiswift:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/narayanan_infiswift:6/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/narayanan_infiswift/6/8_AVWBY3KOX2C708XE7K1AQM6JHG0MAM.png",
                "list-thumb": "https://api.plotly.com/v2/files/narayanan_infiswift:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/narayanan_infiswift:6",
                "plots": "https://api.plotly.com/v2/plots/narayanan_infiswift:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=narayanan_infiswift"
            },
            "owner": "narayanan_infiswift",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Correlation with Errors for Anomaly vs Normal",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~narayanan_infiswift/6/correlation-with-errors-for-anomaly-vs-normal/",
            "world_readable": true,
            "date_modified": "2019-03-21T19:07:33.863Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~narayanan_infiswift/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "552d40c1-0506-4cfb-b1b5-49d12a611737",
                        "name": "Anomaly",
                        "type": "bar",
                        "xsrc": "narayanan_infiswift:7:f23397",
                        "ysrc": "narayanan_infiswift:7:ac1ff7",
                        "opacity": 0.6
                    },
                    {
                        "uid": "eb2d653c-8623-4fff-a335-d29f0fcd233d",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "narayanan_infiswift:7:f23397",
                        "ysrc": "narayanan_infiswift:7:449a01",
                        "opacity": 0.6
                    }
                ],
                "layout": {
                    "font": {
                        "size": 16,
                        "color": "white",
                        "family": "Arial"
                    },
                    "title": {
                        "text": "Correlation with Errors for Anomaly vs Normal"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 18,
                                "color": "white",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Feature"
                        },
                        "tickfont": {
                            "size": 14,
                            "color": "white",
                            "family": "Arial"
                        },
                        "showexponent": "all",
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 18,
                                "color": "white",
                                "family": "Arial, sans-serif"
                            },
                            "text": "Correlation"
                        },
                        "tickfont": {
                            "size": 14,
                            "color": "white",
                            "family": "Old Standard TT, serif"
                        },
                        "showexponent": "all",
                        "exponentformat": "e",
                        "showticklabels": true
                    },
                    "plot_bgcolor": "black",
                    "paper_bgcolor": "black"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~narayanan_infiswift",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-07 20:23:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "narayanan_infiswift",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:43:42.546026Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/4.embed",
            "fid": "jzenemig:4",
            "filename": "cf-simple-line-chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:4",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Chart From Pandas DataFrame",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/4/chart-from-pandas-dataframe/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:43:42.995Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b103e081-f8d4-4035-b24e-c97ac42fd295",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "cyl",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "jzenemig:5:c4da01",
                        "ysrc": "jzenemig:5:6aa673"
                    },
                    {
                        "uid": "b1486804-ee6a-4b20-9d83-ddd71c5a2248",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "wt",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "jzenemig:5:c4da01",
                        "ysrc": "jzenemig:5:1e44a7"
                    },
                    {
                        "uid": "5a2518b5-9dec-4b76-a72f-825ecd540efb",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "mpg",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "jzenemig:5:c4da01",
                        "ysrc": "jzenemig:5:bd0a44"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Chart From Pandas DataFrame"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x-axis"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "y-axis"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:42:54.189804Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mccountystat/28.embed",
            "fid": "mccountystat:28",
            "filename": "Recycling Rate",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mccountystat:28/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mccountystat/28/2_CDKVBOVXJNPOIYTL55P3AVMG0GKJDS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/28/8_HDPMP3MB311UTRHSJMPV3ZJVODY1KU.png",
                "list-thumb": "https://api.plotly.com/v2/files/mccountystat:28/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mccountystat:28",
                "plots": "https://api.plotly.com/v2/plots/mccountystat:28",
                "parent": "https://api.plotly.com/v2/folders/mccountystat:7"
            },
            "owner": "mccountystat",
            "parent": 7,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1177,
            "web_url": "https://chart-studio.plotly.com/~mccountystat/28/",
            "world_readable": true,
            "date_modified": "2019-08-06T14:12:42.286Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mccountystat/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 3
                        },
                        "mode": "markers+lines",
                        "name": "Recycling Rate",
                        "type": "scatter",
                        "xsrc": "mccountystat:18:282005",
                        "ysrc": "mccountystat:18:624b49",
                        "marker": {
                            "size": 7
                        },
                        "transforms": [
                            {
                                "type": "filter",
                                "value": "Recycling Rate",
                                "targetsrc": "mccountystat:18:5109c4"
                            },
                            {
                                "type": "filter",
                                "value": [
                                    "2012",
                                    "2017"
                                ],
                                "operation": "[]",
                                "targetsrc": "mccountystat:18:282005"
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "color": "rgb(0, 0, 0)",
                        "family": "Overpass"
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 14
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2011.7012754772268,
                            2017.2987245227732
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "family": "Roboto"
                            },
                            "text": "<b>Year</b>"
                        },
                        "nticks": 6,
                        "ticklen": -1,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 18,
                            "color": "rgb(92, 94, 105)",
                            "family": "Roboto"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": -1,
                        "tickformat": "",
                        "showexponent": "none",
                        "separatethousands": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            100
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "family": "Roboto"
                            },
                            "text": "<b>&nbsp;Recycling Rate&nbsp;</b>"
                        },
                        "nticks": -1,
                        "ticklen": -1,
                        "tickfont": {
                            "size": 18,
                            "color": "rgb(66, 68, 71)",
                            "family": "Roboto"
                        },
                        "autorange": false,
                        "tickwidth": -1,
                        "fixedrange": true,
                        "ticksuffix": "%"
                    },
                    "legend": {
                        "x": 0.813773243320982,
                        "y": 0.8146853146853147,
                        "font": {
                            "family": "Liberation Sans"
                        },
                        "xanchor": "center",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 20,
                        "t": 20
                    },
                    "autosize": true,
                    "colorway": [
                        "#3366cc",
                        "#dc3912",
                        "#ff9900",
                        "#109618",
                        "#990099",
                        "#0099c6",
                        "#dd4477",
                        "#66aa00",
                        "#b82e2e",
                        "#316395"
                    ],
                    "dragmode": "orbit",
                    "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"
                    },
                    "clickmode": "event+select",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#0508b8"
                            ],
                            [
                                0.08333333333333333,
                                "#1910d8"
                            ],
                            [
                                0.16666666666666666,
                                "#3c19f0"
                            ],
                            [
                                0.25,
                                "#6b1cfb"
                            ],
                            [
                                0.3333333333333333,
                                "#981cfd"
                            ],
                            [
                                0.4166666666666667,
                                "#bf1cfd"
                            ],
                            [
                                0.5,
                                "#dd2bfd"
                            ],
                            [
                                0.5833333333333334,
                                "#f246fe"
                            ],
                            [
                                0.6666666666666666,
                                "#fc67fd"
                            ],
                            [
                                0.75,
                                "#fe88fc"
                            ],
                            [
                                0.8333333333333334,
                                "#fea5fd"
                            ],
                            [
                                0.9166666666666666,
                                "#febefe"
                            ],
                            [
                                1,
                                "#fec3fe"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 11,
                            "color": "#000",
                            "family": "Roboto"
                        },
                        "bgcolor": "#FFF"
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mccountystat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-06-15 16:16:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mccountystat",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:42:32.900163Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hn303/38.embed",
            "fid": "hn303:38",
            "filename": "Multiple Mapbox",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hn303:38/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hn303/38/2_0AV7HU1LO73JXPW3KCCAPMMLTOEA11.png",
                "block-thumb": "https://api.plotly.com/v2/files/hn303:38/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/hn303:38/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hn303:38",
                "plots": "https://api.plotly.com/v2/plots/hn303:38",
                "parent": "https://api.plotly.com/v2/folders/home?user=hn303"
            },
            "owner": "hn303",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hn303/38/",
            "world_readable": true,
            "date_modified": "2019-03-21T15:50:10.466Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hn303/38/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "437bb2cd-aae7-4985-851a-4220aecda0d3",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "hn303:39:b4477b",
                        "lonsrc": "hn303:39:cbf426",
                        "marker": {
                            "size": 6
                        },
                        "textsrc": "hn303:39:4b0d24"
                    }
                ],
                "layout": {
                    "mapbox": {
                        "zoom": 11,
                        "pitch": 0,
                        "center": {
                            "lat": 52.2,
                            "lon": 0.12
                        },
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1IjoiaGFpZmVuZyIsImEiOiJjanRoaWhnaW4wdjQ4NGFydWM4MXNkZXJkIn0.nw5GW8KzIdmwbEUvUqCkow"
                    },
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hn303",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.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": "2018-11-04 14:12:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hn303",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:41:41.216588Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jzenemig/2.embed",
            "fid": "jzenemig:2",
            "filename": "styled-line-chart",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jzenemig:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jzenemig:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jzenemig:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jzenemig:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jzenemig:2",
                "plots": "https://api.plotly.com/v2/plots/jzenemig:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=jzenemig"
            },
            "owner": "jzenemig",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Double Line Chart",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jzenemig/2/double-line-chart/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:41:41.906Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jzenemig/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9faf2940-3435-4904-9fcf-36daafbc18f6",
                        "line": {
                            "width": 5
                        },
                        "name": "List Object",
                        "type": "scatter",
                        "xsrc": "jzenemig:3:2455f2",
                        "ysrc": "jzenemig:3:09647d"
                    },
                    {
                        "uid": "644a93bd-cc08-43e6-aa2a-aa0a71df87a3",
                        "line": {
                            "width": 10
                        },
                        "name": "List Object 2",
                        "type": "scatter",
                        "xsrc": "jzenemig:3:2455f2",
                        "ysrc": "jzenemig:3:9038e9"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Double Line Chart"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x-axis"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "y-axis"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jzenemig",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 21:37:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jzenemig",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T21:40:58.382226Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~smileandsaydl/337.embed",
            "fid": "smileandsaydl:337",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/smileandsaydl:337/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/smileandsaydl:337/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/smileandsaydl/337/8_8HMJTT77B61616MSGM94EXLYS42MXM.png",
                "list-thumb": "https://api.plotly.com/v2/files/smileandsaydl:337/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/smileandsaydl:337",
                "plots": "https://api.plotly.com/v2/plots/smileandsaydl:337",
                "parent": "https://api.plotly.com/v2/folders/home?user=smileandsaydl"
            },
            "owner": "smileandsaydl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "x<sub>2</sub> vs x<sub>1</sub>",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~smileandsaydl/337/x-2-vs-x-1/",
            "world_readable": true,
            "date_modified": "2019-03-20T21:40:59.048Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~smileandsaydl/337/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ccff4730-4b58-11e9-937d-408d5c757ebb",
                        "type": "heatmap",
                        "xsrc": "smileandsaydl:338:d62987",
                        "ysrc": "smileandsaydl:338:422293",
                        "zsrc": "smileandsaydl:338:59495a,a067e1,83e790,7e3d59,5206e3,d6fa2f,21c794,077db7,7a23c8,f8b9a8,70ab2f,3df641,023346,3d7f1f,bdbcb0,9891f8,812657,bf8fcc,1156e1,6228e8,64857b,8a1731,1eb916,207013,52965a,aeb7aa,bf7a4f,2a127b,f41479,03a926,26691c,bcf3ed,cbb5d0,2e694a,fdfe9b,a04b20,7b9a8e,13ffa0,b9659f,1650c5,0ff56b,f892bf,6508ca,a99399,8084fa,0cf368,08fb12,4d8879,e03e3e,2bed14",
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255, 255, 255)"
                            ],
                            [
                                0.05263157894736842,
                                "rgb(242, 242, 242)"
                            ],
                            [
                                0.10526315789473684,
                                "rgb(229, 229, 229)"
                            ],
                            [
                                0.15789473684210525,
                                "rgb(215, 215, 215)"
                            ],
                            [
                                0.21052631578947367,
                                "rgb(202, 202, 202)"
                            ],
                            [
                                0.2631578947368421,
                                "rgb(188, 188, 188)"
                            ],
                            [
                                0.3157894736842105,
                                "rgb(175, 175, 175)"
                            ],
                            [
                                0.3684210526315789,
                                "rgb(161, 161, 161)"
                            ],
                            [
                                0.42105263157894735,
                                "rgb(147, 147, 147)"
                            ],
                            [
                                0.47368421052631576,
                                "rgb(134, 134, 134)"
                            ],
                            [
                                0.5263157894736842,
                                "rgb(121, 121, 121)"
                            ],
                            [
                                0.5789473684210527,
                                "rgb(107, 107, 107)"
                            ],
                            [
                                0.631578947368421,
                                "rgb(94, 94, 94)"
                            ],
                            [
                                0.6842105263157894,
                                "rgb(80, 80, 80)"
                            ],
                            [
                                0.7368421052631579,
                                "rgb(66, 66, 66)"
                            ],
                            [
                                0.7894736842105263,
                                "rgb(53, 53, 53)"
                            ],
                            [
                                0.8421052631578947,
                                "rgb(40, 40, 40)"
                            ],
                            [
                                0.894736842105263,
                                "rgb(25, 25, 25)"
                            ],
                            [
                                0.9473684210526315,
                                "rgb(13, 13, 13)"
                            ],
                            [
                                1.0,
                                "rgb(0, 0, 0)"
                            ]
                        ]
                    },
                    {
                        "uid": "ccff4731-4b58-11e9-bc0d-408d5c757ebb",
                        "line": {
                            "dash": "dashdot",
                            "width": 1
                        },
                        "type": "contour",
                        "xsrc": "smileandsaydl:338:d62987",
                        "ysrc": "smileandsaydl:338:2073d0",
                        "zsrc": "smileandsaydl:338:25f2f4,691a76,a31d21,942f86,19cf67,60e767,301248,f2b304,791357,a977f4,72a3d0,516b6c,f58c34,fd6ac6,fed757,c4b457,f9d688,6a0892,039a48,76983e,65a1f7,9dcc16,892df4,b46bb7,d2c231,03901d,b2c502,1fae93,0dcc70,ffe32d,d80657,4354f4,91f093,043c1b,44d21e,c17587,22598e,c03a87,184f6d,97adaf,9b2c9c,3b8c83,420ba7,136571,6d426a,8fb9d5,647448,bbed7c,d8fbb6,a89287",
                        "contours": {
                            "coloring": "lines"
                        },
                        "ncontours": 2,
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "black"
                            ],
                            [
                                1,
                                "white"
                            ]
                        ]
                    },
                    {
                        "uid": "ccff4732-4b58-11e9-b625-408d5c757ebb",
                        "line": {
                            "width": 1
                        },
                        "type": "contour",
                        "xsrc": "smileandsaydl:338:d62987",
                        "ysrc": "smileandsaydl:338:2073d0",
                        "zsrc": "smileandsaydl:338:59495a,a067e1,83e790,7e3d59,5206e3,d6fa2f,21c794,077db7,7a23c8,f8b9a8,70ab2f,3df641,023346,3d7f1f,bdbcb0,9891f8,812657,bf8fcc,1156e1,6228e8,64857b,8a1731,1eb916,207013,52965a,aeb7aa,bf7a4f,2a127b,f41479,03a926,26691c,bcf3ed,cbb5d0,2e694a,fdfe9b,a04b20,7b9a8e,13ffa0,b9659f,1650c5,0ff56b,f892bf,6508ca,a99399,8084fa,0cf368,08fb12,4d8879,e03e3e,2bed14",
                        "contours": {
                            "end": 0.667,
                            "size": 0.01,
                            "start": 0.666,
                            "coloring": "lines"
                        },
                        "ncontours": 2,
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "blue"
                            ],
                            [
                                1,
                                "white"
                            ]
                        ]
                    },
                    {
                        "uid": "ccff4733-4b58-11e9-8370-408d5c757ebb",
                        "line": {
                            "dash": "dash",
                            "width": 1
                        },
                        "type": "contour",
                        "xsrc": "smileandsaydl:338:d62987",
                        "ysrc": "smileandsaydl:338:422293",
                        "zsrc": "smileandsaydl:338:bc72b6,ed8ce4,895dc7,4b2dde,5eee2e,2701d3,05b348,4f33d1,942c2d,d15a42,f55289,955d33,1e6d45,75e86c,bbbdfc,a830ed,4c683b,e5c0d9,3047f1,cc2796,e75a7f,2312dc,9876f0,a683bc,3c700b,352b79,7f2c40,b6cf53,0a3c4d,61055f,a0f729,36b176,8f2b95,e89499,7f946f,389ec0,a80b7c,d0dd4d,e54755,90302a,523f01,2ce0ee,8768f2,401f40,4fc286,a1e5f7,36a387,2fc6d4,68caec,147900",
                        "contours": {
                            "end": 0.51,
                            "size": 0.1,
                            "start": 0.5,
                            "coloring": "lines"
                        },
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "black"
                            ],
                            [
                                1,
                                "white"
                            ]
                        ]
                    },
                    {
                        "uid": "ccff4734-4b58-11e9-9f92-408d5c757ebb",
                        "line": {
                            "width": 1
                        },
                        "type": "contour",
                        "xsrc": "smileandsaydl:338:d62987",
                        "ysrc": "smileandsaydl:338:422293",
                        "zsrc": "smileandsaydl:338:bc72b6,ed8ce4,895dc7,4b2dde,5eee2e,2701d3,05b348,4f33d1,942c2d,d15a42,f55289,955d33,1e6d45,75e86c,bbbdfc,a830ed,4c683b,e5c0d9,3047f1,cc2796,e75a7f,2312dc,9876f0,a683bc,3c700b,352b79,7f2c40,b6cf53,0a3c4d,61055f,a0f729,36b176,8f2b95,e89499,7f946f,389ec0,a80b7c,d0dd4d,e54755,90302a,523f01,2ce0ee,8768f2,401f40,4fc286,a1e5f7,36a387,2fc6d4,68caec,147900",
                        "contours": {
                            "end": 0.335,
                            "size": 0.1,
                            "start": 0.334,
                            "coloring": "lines"
                        },
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "red"
                            ],
                            [
                                1,
                                "white"
                            ]
                        ]
                    },
                    {
                        "uid": "ccff4735-4b58-11e9-b1c6-408d5c757ebb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:338:ae1f7e",
                        "ysrc": "smileandsaydl:338:3d64b7",
                        "marker": {
                            "size": 10,
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ccff4736-4b58-11e9-b274-408d5c757ebb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:338:ede4ea",
                        "ysrc": "smileandsaydl:338:2ee3f5",
                        "marker": {
                            "size": 10,
                            "color": "blue"
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "x<sub>1</sub>"
                    },
                    "yaxis": {
                        "title": "x<sub>2</sub>",
                        "autorange": "reversed"
                    },
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 2,
                            "y": 4.5,
                            "font": {
                                "size": 12,
                                "color": "blue",
                                "family": "Courier New, monospace"
                            },
                            "text": "0.666",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": 2,
                            "y": 0.9,
                            "font": {
                                "size": 12,
                                "color": "black",
                                "family": "Courier New, monospace"
                            },
                            "text": "0.5",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        },
                        {
                            "x": 2,
                            "y": -2.2,
                            "font": {
                                "size": 12,
                                "color": "red",
                                "family": "Courier New, monospace"
                            },
                            "text": "0.334",
                            "xref": "x",
                            "yref": "y",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~smileandsaydl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-24 14:45:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "smileandsaydl",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}