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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAyJTNBNTMlM0EzMS44MzQxODUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMyUzQTExJTNBMjMuMDAwMjIzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T03:11:23.000223Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~Teja001/2.embed",
            "fid": "Teja001:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Teja001/2/9_X9PWMVJDVV4PQC6QESZ95GL7GP8Z7F.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Teja001/2/2_BPJ98DNTAGDJ27OKHS3JW1VKRGUGJ5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Teja001/2/8_Z66H37F6YAP0WWRVXJ4JVITRKFQB16.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Teja001/2/9_X9PWMVJDVV4PQC6QESZ95GL7GP8Z7F.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Teja001:2",
                "plots": "https://api.plotly.com/v2/plots/Teja001:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Teja001"
            },
            "owner": "Teja001",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://plotly.com/~Teja001/2/",
            "world_readable": true,
            "date_modified": "2019-03-21T06:50:13.064Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~Teja001/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "AHP",
                        "type": "scatter",
                        "xsrc": "Teja001:1:6c292f",
                        "ysrc": "Teja001:1:d77d3e"
                    },
                    {
                        "mode": "lines",
                        "name": "WSM",
                        "type": "scatter",
                        "xsrc": "Teja001:1:6c292f",
                        "ysrc": "Teja001:1:7765ba",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "mode": "lines",
                        "name": "WPM",
                        "type": "scatter",
                        "xsrc": "Teja001:1:6c292f",
                        "ysrc": "Teja001:1:818485",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Result Analysis"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "Ordered Rank of Services<br>"
                        },
                        "autorange": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                1,
                                9
                            ],
                            "yaxis": {
                                "rangemode": "match"
                            },
                            "yaxis2": {
                                "rangemode": "match"
                            },
                            "visible": true,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.16666666666666666,
                            3.1666666666666665
                        ],
                        "title": {
                            "text": "IaaS Service Identifiers"
                        },
                        "autorange": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -0.16666666666666666,
                            3.1666666666666665
                        ],
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~Teja001",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.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": "2019-03-21 03:10:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Teja001",
                "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-21T03:10:32.955049Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~xuzhaoqing/8.embed",
            "fid": "xuzhaoqing:8",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/8/9_4SZD28R9DQ4IWT7O4PL40VXPCQ90RK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/8/2_YRFTCPJF2OP50FJKNQWL74N6NG3TBQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/8/8_GJ4L63ETUKA1IUKKFY3ZF59VD3ZYF2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/8/9_4SZD28R9DQ4IWT7O4PL40VXPCQ90RK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xuzhaoqing:8",
                "plots": "https://api.plotly.com/v2/plots/xuzhaoqing:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=xuzhaoqing"
            },
            "owner": "xuzhaoqing",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://plotly.com/~xuzhaoqing/8/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:10:33.464Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~xuzhaoqing/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c731d720-b68f-4895-81e0-d1a04c8355fe",
                        "type": "box",
                        "ysrc": "xuzhaoqing:9:7e9870"
                    },
                    {
                        "uid": "37729f37-647e-49ba-8198-1cdfe2edd11e",
                        "type": "box",
                        "ysrc": "xuzhaoqing:9:46d6ef"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~xuzhaoqing",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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-21 02:28:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xuzhaoqing",
                "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-21T03:10:26.292150Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~fibi/11.embed",
            "fid": "fibi:11",
            "filename": "interest_seg_repin",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fibi/11/9_E7JDUQLQVK0BHAWANX0B577JMVT7PZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fibi/11/2_PU1NEQ87LGSQCSX9V73SLXYGZNC06G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fibi/11/8_XIYDEU1Y5BMU9L0MVW70KEPBPHE01I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fibi/11/9_E7JDUQLQVK0BHAWANX0B577JMVT7PZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fibi:11",
                "plots": "https://api.plotly.com/v2/plots/fibi:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=fibi"
            },
            "owner": "fibi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://plotly.com/~fibi/11/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:15:51.861Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~fibi/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "fibi:10:c87817",
                        "ysrc": "fibi:10:a3236f",
                        "zsrc": "fibi:10:61e31c",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "symbol": "circle",
                            "sizesrc": "fibi:10:6f155d",
                            "colorsrc": "fibi:10:941586",
                            "sizemode": "diameter",
                            "fillcolor": "rgba(31,119,180,1)",
                            "showscale": true,
                            "colorscale": [
                                "#FFE1A1",
                                "#683531"
                            ]
                        },
                        "textsrc": "fibi:10:32a9d6"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": "Recency"
                        },
                        "yaxis": {
                            "title": "Frequency"
                        },
                        "zaxis": {
                            "title": "Depth"
                        },
                        "plot_bgcolor": "rgb(243, 243, 243)",
                        "paper_bgcolor": "rgb(243, 243, 243)"
                    },
                    "xaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "yaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~fibi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-19 20:55:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fibi",
                "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-21T03:09:16.094076Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~drewbbarkk/1.embed",
            "fid": "drewbbarkk:1",
            "filename": "yaya",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/drewbbarkk/1/9_WHU2HI15P5S1KVW4I6HTNVAQDHVSOX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/drewbbarkk/1/2_S4K6L27C5UTDZ5T8HFEFN70BWFU8FF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/drewbbarkk/1/8_JX4MW9CSCUYDEJ7BNMAJIXY2NDXO5K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/drewbbarkk/1/9_WHU2HI15P5S1KVW4I6HTNVAQDHVSOX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/drewbbarkk:1",
                "plots": "https://api.plotly.com/v2/plots/drewbbarkk:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=drewbbarkk"
            },
            "owner": "drewbbarkk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://plotly.com/~drewbbarkk/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:09:16.104Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~drewbbarkk/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(17, 148, 7)"
                        },
                        "mode": "lines",
                        "name": "Translational KE ",
                        "type": "scatter",
                        "xsrc": "drewbbarkk:0:ffbba1",
                        "ysrc": "drewbbarkk:0:815eac"
                    },
                    {
                        "line": {
                            "color": "rgb(254, 4, 4)"
                        },
                        "mode": "lines",
                        "name": "Rotational KE",
                        "type": "scatter",
                        "xsrc": "drewbbarkk:0:ffbba1",
                        "ysrc": "drewbbarkk:0:f1dea9",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(227, 215, 26)"
                        },
                        "mode": "lines",
                        "name": "Potential Energy ",
                        "type": "scatter",
                        "xsrc": "drewbbarkk:0:ffbba1",
                        "ysrc": "drewbbarkk:0:0d31c3",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "mode": "lines",
                        "name": "Total KE",
                        "type": "scatter",
                        "xsrc": "drewbbarkk:0:ffbba1",
                        "ysrc": "drewbbarkk:0:9c27e7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(39, 25, 243)"
                        },
                        "mode": "lines",
                        "name": "Total Energy",
                        "type": "scatter",
                        "xsrc": "drewbbarkk:0:ffbba1",
                        "ysrc": "drewbbarkk:0:2a8494",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.1,
                            1.2
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.06361111111111112,
                            1.2686111111111111
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "color": "rgb(0, 0, 0)"
                        }
                    },
                    "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"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~drewbbarkk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-03-21 03:07:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "drewbbarkk",
                "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-21T03:07:00.148399Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~s3582228/2.embed",
            "fid": "s3582228:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/s3582228/2/9_05SUHSX5GMTTY8L5CFG2RCK2L1WLW3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/s3582228/2/2_NQ8ISJ396VZQ5ABT0C3IYYHABO78IO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/s3582228/2/8_FELWH83LSXNIE4QUNY6JEJY6FOQYYX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/s3582228/2/9_05SUHSX5GMTTY8L5CFG2RCK2L1WLW3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/s3582228:2",
                "plots": "https://api.plotly.com/v2/plots/s3582228:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=s3582228"
            },
            "owner": "s3582228",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://plotly.com/~s3582228/2/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:15:16.302Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~s3582228/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "men",
                        "type": "bar",
                        "xsrc": "s3582228:1:6e3efc",
                        "ysrc": "s3582228:1:720958",
                        "orientation": "v"
                    },
                    {
                        "name": "female",
                        "type": "bar",
                        "xsrc": "s3582228:1:6e3efc",
                        "ysrc": "s3582228:1:6b46c9",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Prevalence of self-reported diabetes among persons, 18 and over, by age and sex, 2014-2015"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "title": {
                            "text": "Age Group"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            197164.2105263158
                        ],
                        "title": {
                            "text": "Number of people"
                        },
                        "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"
                    },
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~s3582228",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 02:55:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "s3582228",
                "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-21T03:05:14.206717Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~subhadeep/3.embed",
            "fid": "subhadeep:3",
            "filename": "surface-3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/subhadeep/3/9_X92QDRR0IEDHF98D4U3XDBBDJ3045Y.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/subhadeep/3/2_06WK45QM6MIGZH4NPF7Y3LBVVVQNUK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/subhadeep/3/8_RELDU1DU531WZQ0A6X1TLRBGH8Y6NG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/subhadeep/3/9_X92QDRR0IEDHF98D4U3XDBBDJ3045Y.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/subhadeep:3",
                "plots": "https://api.plotly.com/v2/plots/subhadeep:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=subhadeep"
            },
            "owner": "subhadeep",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://plotly.com/~subhadeep/3/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:05:14.218Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~subhadeep/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "surface",
                        "zsrc": "subhadeep:2:63eed1",
                        "frame": null,
                        "colorbar": {
                            "title": "z<br />z2<br />z3",
                            "ticklen": 2
                        },
                        "showscale": false,
                        "colorscale": [
                            [
                                "0",
                                "rgba(68,1,84,1)"
                            ],
                            [
                                "0.0236220472440947",
                                "rgba(69,11,91,1)"
                            ],
                            [
                                "0.0511811023622043",
                                "rgba(71,22,100,1)"
                            ],
                            [
                                "0.0669291338582677",
                                "rgba(71,27,105,1)"
                            ],
                            [
                                "0.074803149606299",
                                "rgba(71,29,108,1)"
                            ],
                            [
                                "0.0905511811023624",
                                "rgba(72,34,113,1)"
                            ],
                            [
                                "0.103346456692913",
                                "rgba(72,38,117,1)"
                            ],
                            [
                                "0.173228346456693",
                                "rgba(68,60,129,1)"
                            ],
                            [
                                "0.333333333333332",
                                "rgba(49,104,142,1)"
                            ],
                            [
                                "0.41732283464567",
                                "rgba(42,124,142,1)"
                            ],
                            [
                                "0.444881889763779",
                                "rgba(38,130,142,1)"
                            ],
                            [
                                "0.460629921259843",
                                "rgba(38,134,141,1)"
                            ],
                            [
                                "0.468503937007874",
                                "rgba(38,136,141,1)"
                            ],
                            [
                                "0.483103674540682",
                                "rgba(37,140,140,1)"
                            ],
                            [
                                "0.496062992125984",
                                "rgba(37,143,140,1)"
                            ],
                            [
                                "0.566929133858268",
                                "rgba(34,161,135,1)"
                            ],
                            [
                                "0.666666666666663",
                                "rgba(53,183,121,1)"
                            ],
                            [
                                "0.811023622047245",
                                "rgba(133,210,78,1)"
                            ],
                            [
                                "0.836614173228347",
                                "rgba(149,214,69,1)"
                            ],
                            [
                                "0.854330708661418",
                                "rgba(160,217,61,1)"
                            ],
                            [
                                "0.862204724409449",
                                "rgba(165,218,58,1)"
                            ],
                            [
                                "0.875492125984253",
                                "rgba(172,220,51,1)"
                            ],
                            [
                                "0.889763779527559",
                                "rgba(181,222,44,1)"
                            ],
                            [
                                "0.956528871391076",
                                "rgba(225,228,40,1)"
                            ],
                            [
                                "1",
                                "rgba(253,231,37,1)"
                            ]
                        ]
                    },
                    {
                        "type": "surface",
                        "zsrc": "subhadeep:2:61eeee",
                        "frame": null,
                        "opacity": 0.98,
                        "colorbar": {
                            "title": "z<br />z2<br />z3",
                            "ticklen": 2
                        },
                        "showscale": false,
                        "colorscale": [
                            [
                                "0",
                                "rgba(68,1,84,1)"
                            ],
                            [
                                "0.0236220472440947",
                                "rgba(69,11,91,1)"
                            ],
                            [
                                "0.0511811023622043",
                                "rgba(71,22,100,1)"
                            ],
                            [
                                "0.0669291338582677",
                                "rgba(71,27,105,1)"
                            ],
                            [
                                "0.074803149606299",
                                "rgba(71,29,108,1)"
                            ],
                            [
                                "0.0905511811023624",
                                "rgba(72,34,113,1)"
                            ],
                            [
                                "0.103346456692913",
                                "rgba(72,38,117,1)"
                            ],
                            [
                                "0.173228346456693",
                                "rgba(68,60,129,1)"
                            ],
                            [
                                "0.333333333333332",
                                "rgba(49,104,142,1)"
                            ],
                            [
                                "0.41732283464567",
                                "rgba(42,124,142,1)"
                            ],
                            [
                                "0.444881889763779",
                                "rgba(38,130,142,1)"
                            ],
                            [
                                "0.460629921259843",
                                "rgba(38,134,141,1)"
                            ],
                            [
                                "0.468503937007874",
                                "rgba(38,136,141,1)"
                            ],
                            [
                                "0.483103674540682",
                                "rgba(37,140,140,1)"
                            ],
                            [
                                "0.496062992125984",
                                "rgba(37,143,140,1)"
                            ],
                            [
                                "0.566929133858268",
                                "rgba(34,161,135,1)"
                            ],
                            [
                                "0.666666666666663",
                                "rgba(53,183,121,1)"
                            ],
                            [
                                "0.811023622047245",
                                "rgba(133,210,78,1)"
                            ],
                            [
                                "0.836614173228347",
                                "rgba(149,214,69,1)"
                            ],
                            [
                                "0.854330708661418",
                                "rgba(160,217,61,1)"
                            ],
                            [
                                "0.862204724409449",
                                "rgba(165,218,58,1)"
                            ],
                            [
                                "0.875492125984253",
                                "rgba(172,220,51,1)"
                            ],
                            [
                                "0.889763779527559",
                                "rgba(181,222,44,1)"
                            ],
                            [
                                "0.956528871391076",
                                "rgba(225,228,40,1)"
                            ],
                            [
                                "1",
                                "rgba(253,231,37,1)"
                            ]
                        ]
                    },
                    {
                        "type": "surface",
                        "zsrc": "subhadeep:2:c523b6",
                        "frame": null,
                        "opacity": 0.98,
                        "colorbar": {
                            "title": "z<br />z2<br />z3",
                            "ticklen": 2
                        },
                        "showscale": false,
                        "colorscale": [
                            [
                                "0",
                                "rgba(68,1,84,1)"
                            ],
                            [
                                "0.0236220472440947",
                                "rgba(69,11,91,1)"
                            ],
                            [
                                "0.0511811023622043",
                                "rgba(71,22,100,1)"
                            ],
                            [
                                "0.0669291338582677",
                                "rgba(71,27,105,1)"
                            ],
                            [
                                "0.074803149606299",
                                "rgba(71,29,108,1)"
                            ],
                            [
                                "0.0905511811023624",
                                "rgba(72,34,113,1)"
                            ],
                            [
                                "0.103346456692913",
                                "rgba(72,38,117,1)"
                            ],
                            [
                                "0.173228346456693",
                                "rgba(68,60,129,1)"
                            ],
                            [
                                "0.333333333333332",
                                "rgba(49,104,142,1)"
                            ],
                            [
                                "0.41732283464567",
                                "rgba(42,124,142,1)"
                            ],
                            [
                                "0.444881889763779",
                                "rgba(38,130,142,1)"
                            ],
                            [
                                "0.460629921259843",
                                "rgba(38,134,141,1)"
                            ],
                            [
                                "0.468503937007874",
                                "rgba(38,136,141,1)"
                            ],
                            [
                                "0.483103674540682",
                                "rgba(37,140,140,1)"
                            ],
                            [
                                "0.496062992125984",
                                "rgba(37,143,140,1)"
                            ],
                            [
                                "0.566929133858268",
                                "rgba(34,161,135,1)"
                            ],
                            [
                                "0.666666666666663",
                                "rgba(53,183,121,1)"
                            ],
                            [
                                "0.811023622047245",
                                "rgba(133,210,78,1)"
                            ],
                            [
                                "0.836614173228347",
                                "rgba(149,214,69,1)"
                            ],
                            [
                                "0.854330708661418",
                                "rgba(160,217,61,1)"
                            ],
                            [
                                "0.862204724409449",
                                "rgba(165,218,58,1)"
                            ],
                            [
                                "0.875492125984253",
                                "rgba(172,220,51,1)"
                            ],
                            [
                                "0.889763779527559",
                                "rgba(181,222,44,1)"
                            ],
                            [
                                "0.956528871391076",
                                "rgba(225,228,40,1)"
                            ],
                            [
                                "1",
                                "rgba(253,231,37,1)"
                            ]
                        ]
                    }
                ],
                "layout": {
                    "scene": {
                        "zaxis": {
                            "title": "z"
                        }
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~subhadeep",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.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-03-21 03:01:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "subhadeep",
                "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-21T03:04:51.796340Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~gcp.ncaa/7.embed",
            "fid": "gcp.ncaa:7",
            "filename": "2018-19 NCAA D-I Tournament Teams Score Control vs Avg Final PtDiff\n(2018-11-06 to 2019-03-19).html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/gcp.ncaa/7/9_0451M4B16LSLPYELFIW5QP5M4YCSBT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gcp.ncaa/7/2_SSE6WPIVZNEDWVFMYLXS8IEHD85FL2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gcp.ncaa/7/8_5LTY32Z7NZNKZK8B0UUXZULQH36OZN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/gcp.ncaa/7/9_0451M4B16LSLPYELFIW5QP5M4YCSBT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gcp.ncaa:7",
                "plots": "https://api.plotly.com/v2/plots/gcp.ncaa:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=gcp.ncaa"
            },
            "owner": "gcp.ncaa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "2018-19 NCAA D-I Tournament Teams Score Control vs Avg Final PtDiff<br>(2018-11-06 to 2019-03-19)",
            "views": 1489,
            "web_url": "https://plotly.com/~gcp.ncaa/7/_2018-19-ncaa-d-i-tournament-teams-score-control-vs-avg-final-ptdiff-2018-11-06-t/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:04:52.303Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~gcp.ncaa/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a79affa9-3842-4b96-84ff-631b99a4dc5c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "gcp.ncaa:8:23867d",
                        "ysrc": "gcp.ncaa:8:129490",
                        "marker": {
                            "size": 10,
                            "colorsrc": "gcp.ncaa:8:b9cdf8"
                        },
                        "textsrc": "gcp.ncaa:8:7f0d15"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "2018-19 NCAA D-I Tournament Teams Score Control vs Avg Final PtDiff<br>(2018-11-06 to 2019-03-19)"
                    },
                    "width": 900,
                    "xaxis": {
                        "title": {
                            "text": "Avg Final PtDiff"
                        },
                        "ticklen": 5,
                        "gridwidth": 1,
                        "hoverformat": ".2f"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Score Control"
                        },
                        "ticklen": 5,
                        "gridwidth": 1,
                        "hoverformat": ".2f"
                    },
                    "height": 600,
                    "shapes": [
                        {
                            "x0": 1.0303030303030303,
                            "x1": 23.78787878787879,
                            "y0": 2.339784089761525,
                            "y1": 14.176229650695031,
                            "line": {
                                "color": "grey",
                                "width": 1
                            },
                            "type": "line"
                        }
                    ],
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://plotly.com/~gcp.ncaa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2019-03-12 17:48:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gcp.ncaa",
                "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-21T03:04:08.182092Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~subhadeep/1.embed",
            "fid": "subhadeep:1",
            "filename": "r-docs-midwest-boxplots",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/subhadeep/1/9_D1C7BN6SQFA97FJWYH4NBHLEQZSMEM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/subhadeep/1/2_3QNICKPLJ85RXR2RIJXKUXEQYYI1V1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/subhadeep/1/8_IYLAXAVUTY64USYA4DWY6D1KYH80NK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/subhadeep/1/9_D1C7BN6SQFA97FJWYH4NBHLEQZSMEM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/subhadeep:1",
                "plots": "https://api.plotly.com/v2/plots/subhadeep:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=subhadeep"
            },
            "owner": "subhadeep",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://plotly.com/~subhadeep/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T03:04:08.198Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~subhadeep/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(102,194,165,1)"
                        },
                        "name": "IL",
                        "type": "box",
                        "xsrc": "subhadeep:0:9404f8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(102,194,165,1)"
                            },
                            "color": "rgba(102,194,165,1)"
                        },
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "color": "rgba(252,141,98,1)"
                        },
                        "name": "IN",
                        "type": "box",
                        "xsrc": "subhadeep:0:63d69e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(252,141,98,1)"
                            },
                            "color": "rgba(252,141,98,1)"
                        },
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "color": "rgba(141,160,203,1)"
                        },
                        "name": "MI",
                        "type": "box",
                        "xsrc": "subhadeep:0:4eb0e3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(141,160,203,1)"
                            },
                            "color": "rgba(141,160,203,1)"
                        },
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "color": "rgba(231,138,195,1)"
                        },
                        "name": "OH",
                        "type": "box",
                        "xsrc": "subhadeep:0:c4524e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(231,138,195,1)"
                            },
                            "color": "rgba(231,138,195,1)"
                        },
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "color": "rgba(166,216,84,1)"
                        },
                        "name": "WI",
                        "type": "box",
                        "xsrc": "subhadeep:0:db68fb",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(166,216,84,1)"
                            },
                            "color": "rgba(166,216,84,1)"
                        },
                        "orientation": "h"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "percollege",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~subhadeep",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.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-03-21 03:01:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "subhadeep",
                "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-21T02:59:38.930293Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~xuzhaoqing/6.embed",
            "fid": "xuzhaoqing:6",
            "filename": "choropleth_california_and_surr_states_outlines",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/6/9_DLCZTBGS7OK5IMCDWP31TT7YZPKDW1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/6/2_GII7E0LQ9IANAUZLOM01FJAAT58SZO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/6/8_6Z7EZGQ5B4G3Z1LRAJJSPJAF1YR5XJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xuzhaoqing/6/9_DLCZTBGS7OK5IMCDWP31TT7YZPKDW1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xuzhaoqing:6",
                "plots": "https://api.plotly.com/v2/plots/xuzhaoqing:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=xuzhaoqing"
            },
            "owner": "xuzhaoqing",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "California Number of Collision Death People by County (Per 100,000)",
            "views": 5,
            "web_url": "https://plotly.com/~xuzhaoqing/6/california-number-of-collision-death-people-by-county-per-100000/",
            "world_readable": true,
            "date_modified": "2019-03-21T04:04:26.032Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~xuzhaoqing/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2d283b20-91fa-43b4-b8f4-b4461675d715",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "< 5",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:2b8d85",
                        "ysrc": "xuzhaoqing:7:a3dd67",
                        "fillcolor": "rgb(193, 193, 193)",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "7437e86e-efa5-4a73-9d8d-428604f005b7",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "5 - 10",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:30e1be",
                        "ysrc": "xuzhaoqing:7:fbe72a",
                        "fillcolor": "rgb(239,239,239)",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "53fea235-7348-4604-9f15-449fde6a85bf",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "10 - 50",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:3fdc4b",
                        "ysrc": "xuzhaoqing:7:578780",
                        "fillcolor": "rgb(195, 196, 222)",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "dc08102a-7dfc-45b5-a5b4-d5c5723b912f",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "50 - 100",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:b7fba9",
                        "ysrc": "xuzhaoqing:7:2fd6a9",
                        "fillcolor": "rgb(144,148,194)",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "459b60dc-9e6e-4b35-81d4-22a8c4b91c89",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "> 100",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:0cb342",
                        "ysrc": "xuzhaoqing:7:c00073",
                        "fillcolor": "rgb(101,104,168)",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "48c04b3d-652b-4167-8b5d-f394a39afef4",
                        "mode": "markers",
                        "name": "US Counties",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:07dba6",
                        "ysrc": "xuzhaoqing:7:a9d385",
                        "marker": {
                            "color": "white",
                            "opacity": 0
                        },
                        "textsrc": "xuzhaoqing:7:47d1a6",
                        "selected": {
                            "marker": {
                                "size": 3,
                                "color": "white",
                                "opacity": 1
                            }
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "unselected": {
                            "marker": {
                                "opacity": 0
                            }
                        },
                        "legendgroup": "centroids"
                    },
                    {
                        "uid": "0b8f0a1e-f51b-4339-b8f5-71bf72577a49",
                        "line": {
                            "color": "rgb(240, 240, 240)",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "xuzhaoqing:7:5b04dd",
                        "ysrc": "xuzhaoqing:7:eb2b2a",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "States"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "California Number of Collision Death People by County (Per 100,000)"
                    },
                    "width": 900,
                    "xaxis": {
                        "range": [
                            -135.504654,
                            -98.105164
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            31.332238999999998,
                            46.292035
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "height": 450,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "xanchor": "right",
                        "yanchor": "top",
                        "traceorder": "reversed"
                    },
                    "margin": {
                        "b": 20,
                        "l": 20,
                        "r": 20,
                        "t": 40
                    },
                    "dragmode": "select",
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 1,
                            "y": 1.05,
                            "text": "<b>Population by County</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 450,
            "width": 900,
            "user": {
                "profile_url": "https://plotly.com/~xuzhaoqing",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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-21 02:28:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xuzhaoqing",
                "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-21T02:53:31.834185Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~wjpark2002/1.embed",
            "fid": "wjpark2002:1",
            "filename": "Stpid",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/wjpark2002/1/9_PWCX335J6G4TTFC53HAGSEALM5Y0BG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/wjpark2002/1/2_WZ0P1J1I92C67QYF93REO1JP7CE6FW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wjpark2002/1/8_4JG0N1KLUMN3DKAW27G12P02UY550Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/wjpark2002/1/9_PWCX335J6G4TTFC53HAGSEALM5Y0BG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wjpark2002:1",
                "plots": "https://api.plotly.com/v2/plots/wjpark2002:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=wjpark2002"
            },
            "owner": "wjpark2002",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://plotly.com/~wjpark2002/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T02:53:31.846Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~wjpark2002/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "wjpark2002:0:9b9d53",
                        "ysrc": "wjpark2002:0:f32c1a",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 26
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.3696416022487714,
                            288.59840218959204
                        ],
                        "title": {
                            "text": "Number of Cases"
                        },
                        "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"
                    },
                    "annotations": [
                        {
                            "x": -0.023178807947019868,
                            "y": 190.46673286991063,
                            "ax": -1,
                            "ay": -14,
                            "font": {
                                "size": 42,
                                "color": "rgb(255, 255, 255)"
                            },
                            "text": "274"
                        },
                        {
                            "x": 1.0275938189845475,
                            "y": 12.697782191327375,
                            "ax": -10,
                            "ay": -13,
                            "font": {
                                "size": 42
                            },
                            "text": "2"
                        },
                        {
                            "x": 1.9988962472406182,
                            "y": 179.33992039327424,
                            "ax": -2,
                            "ay": -15,
                            "font": {
                                "size": 42
                            },
                            "text": "167"
                        },
                        {
                            "x": 2.9834437086092715,
                            "y": 26.01079047743332,
                            "ax": 1,
                            "ay": -14,
                            "font": {
                                "size": 42
                            },
                            "text": "16"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~wjpark2002",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/12.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-12-19 20:39:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wjpark2002",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}