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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE2JTNBNTAlM0ExNC4xOTMyNjMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNiUzQTUyJTNBMzcuMDE0NjQ5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T16:52:37.014649Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fsdfsdfds/6.embed",
            "fid": "fsdfsdfds:6",
            "filename": "DB_table",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/fsdfsdfds:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fsdfsdfds/6/2_ANPDJFYFHS8C2JSGAWG18E46613K4J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fsdfsdfds/6/8_CJI4E5DU57TFLELGOVFNGZPX855R5Q.png",
                "list-thumb": "https://api.plotly.com/v2/files/fsdfsdfds:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fsdfsdfds:6",
                "plots": "https://api.plotly.com/v2/plots/fsdfsdfds:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=fsdfsdfds"
            },
            "owner": "fsdfsdfds",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~fsdfsdfds/6/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:52:37.456Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fsdfsdfds/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1cd63d3a-9659-4bd5-889c-cf494f7800ab",
                        "type": "table",
                        "cells": {
                            "fill": {
                                "colorsrc": "fsdfsdfds:7:22eeb0"
                            },
                            "font": {
                                "size": 12,
                                "color": "#506784"
                            },
                            "line": {
                                "color": "#506784"
                            },
                            "height": 30,
                            "alignsrc": "fsdfsdfds:7:80bc55",
                            "valuessrc": "fsdfsdfds:7:-80bc55,22eeb0,7ef96c"
                        },
                        "header": {
                            "fill": {
                                "color": "#119DFF"
                            },
                            "font": {
                                "size": 12,
                                "color": "white"
                            },
                            "line": {
                                "color": "#506784"
                            },
                            "height": 40,
                            "alignsrc": "fsdfsdfds:7:80bc55",
                            "valuessrc": "fsdfsdfds:7:7ef96c"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fsdfsdfds",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "plotme",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-02 11:09:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fsdfsdfds",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:52:32.861565Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~srt7/10.embed",
            "fid": "srt7:10",
            "filename": "Corrosion1560790348.373002",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/srt7:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/srt7:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/srt7:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/srt7:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/srt7:10",
                "plots": "https://api.plotly.com/v2/plots/srt7:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=srt7"
            },
            "owner": "srt7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~srt7/10/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:52:32.919Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~srt7/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(114, 186, 59)"
                        },
                        "mode": "lines",
                        "name": "Corrosion",
                        "type": "scatter",
                        "xsrc": "srt7:9:619a9c",
                        "ysrc": "srt7:9:588dbe",
                        "fillcolor": "rgba(114, 186, 59, 0.5)"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:619a9c",
                                "ysrc": "srt7:9:588dbe"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:58f3c6",
                                "ysrc": "srt7:9:4d7237"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:9edeec",
                                "ysrc": "srt7:9:8193f3"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:956618",
                                "ysrc": "srt7:9:16115c"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:d85a0b",
                                "ysrc": "srt7:9:373917"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:18a6ef",
                                "ysrc": "srt7:9:bcbb51"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:a7e768",
                                "ysrc": "srt7:9:b8f7e8"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:31e7e4",
                                "ysrc": "srt7:9:ee7d33"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:00bcf3",
                                "ysrc": "srt7:9:bfd9cb"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:6882ff",
                                "ysrc": "srt7:9:7c980b"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:b38ef3",
                                "ysrc": "srt7:9:48024b"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:d5e4df",
                                "ysrc": "srt7:9:3c9a41"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:80d491",
                                "ysrc": "srt7:9:c06ee7"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:e113e9",
                                "ysrc": "srt7:9:e41a82"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:adea4c",
                                "ysrc": "srt7:9:a81ed9"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:1f9677",
                                "ysrc": "srt7:9:785b92"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:910b42",
                                "ysrc": "srt7:9:f0a416"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:b20a8b",
                                "ysrc": "srt7:9:4da49c"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:31ed8f",
                                "ysrc": "srt7:9:02f1c1"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:b8b8d5",
                                "ysrc": "srt7:9:c464f6"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:1e1feb",
                                "ysrc": "srt7:9:caa581"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:fbc1b9",
                                "ysrc": "srt7:9:c75d3f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:eb1829",
                                "ysrc": "srt7:9:a0cd8f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:3ed3c7",
                                "ysrc": "srt7:9:6a91ee"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:d214ac",
                                "ysrc": "srt7:9:a4f044"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:63e3fb",
                                "ysrc": "srt7:9:8c1f5b"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:adb097",
                                "ysrc": "srt7:9:a0a9d8"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:f04948",
                                "ysrc": "srt7:9:f05364"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:cd46b4",
                                "ysrc": "srt7:9:ecb33f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:9:f4633f",
                                "ysrc": "srt7:9:f34454"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Balto"
                    },
                    "title": "Corrosion",
                    "width": 800,
                    "xaxis": {
                        "range": [
                            0,
                            1500
                        ],
                        "mirror": true,
                        "nticks": 12,
                        "ticklen": 4,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "range": [
                            0,
                            40
                        ],
                        "title": "$",
                        "mirror": true,
                        "ticklen": 4,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 400,
                    "autosize": false,
                    "showlegend": false,
                    "updatemenus": [
                        {
                            "x": 1.1,
                            "y": 1,
                            "pad": {
                                "r": 10,
                                "t": 0
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        null,
                                        {
                                            "mode": "immediate",
                                            "frame": {
                                                "redraw": false,
                                                "duration": 50
                                            },
                                            "transition": {
                                                "duration": 0
                                            },
                                            "fromcurrent": true
                                        }
                                    ],
                                    "label": "Play",
                                    "method": "animate"
                                }
                            ],
                            "xanchor": "right",
                            "yanchor": "top",
                            "showactive": false
                        }
                    ]
                }
            },
            "height": 400,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~srt7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-16 07:53:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "srt7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:52:27.782914Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kylejscampbell/6.embed",
            "fid": "kylejscampbell:6",
            "filename": "Point Like with Ring",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kylejscampbell:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kylejscampbell:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kylejscampbell:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kylejscampbell:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kylejscampbell:6",
                "plots": "https://api.plotly.com/v2/plots/kylejscampbell:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=kylejscampbell"
            },
            "owner": "kylejscampbell",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kylejscampbell/6/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:00:42.588Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kylejscampbell/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid"
                        },
                        "mode": "markers",
                        "type": "contour",
                        "xsrc": "kylejscampbell:5:0fa40d",
                        "ysrc": "kylejscampbell:5:be43ed",
                        "zsrc": "kylejscampbell:5:fd7042",
                        "contours": {
                            "end": 3.2,
                            "size": 0.05,
                            "start": 1,
                            "coloring": "heatmap"
                        },
                        "colorscale": [
                            [
                                0,
                                "#fff5eb"
                            ],
                            [
                                0.125,
                                "#fee6ce"
                            ],
                            [
                                0.25,
                                "#fdd0a2"
                            ],
                            [
                                0.375,
                                "#fdae6b"
                            ],
                            [
                                0.5,
                                "#fd8d3c"
                            ],
                            [
                                0.625,
                                "#f16913"
                            ],
                            [
                                0.75,
                                "#d94801"
                            ],
                            [
                                0.875,
                                "#a63603"
                            ],
                            [
                                1,
                                "#7f2704"
                            ]
                        ],
                        "autocontour": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Electric Potential with Point Like Terminals and a Faraday Cage"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "x Position"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            9
                        ],
                        "title": {
                            "text": "y Position"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kylejscampbell",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 15:53:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kylejscampbell",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:52:19.951444Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Ethan.sun/16.embed",
            "fid": "Ethan.sun:16",
            "filename": "xgb_importance",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Ethan.sun:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Ethan.sun:16/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Ethan.sun:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Ethan.sun:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Ethan.sun:16",
                "plots": "https://api.plotly.com/v2/plots/Ethan.sun:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=Ethan.sun"
            },
            "owner": "Ethan.sun",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Ethan.sun/16/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:10:29.552Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Ethan.sun/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3fcf91c5-8c54-45a9-90e7-2c6b2bc15b9c",
                        "type": "bar",
                        "xsrc": "Ethan.sun:17:e26e1a",
                        "ysrc": "Ethan.sun:17:11118e"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Ethan.sun",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 15:22:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Ethan.sun",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:52:16.917681Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~michaelbabyn/980.embed",
            "fid": "michaelbabyn:980",
            "filename": "Plot 980",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/980/9_3YHZ1QFYV4LOM4XI564K2ADPLKOYGH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/980/2_MP75EA505MWHU3GSUHIX5NQUADZI32.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/980/8_G2GO2PI8DHEBVF2YBSSWQEJ54G2UYR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/michaelbabyn/980/9_3YHZ1QFYV4LOM4XI564K2ADPLKOYGH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/michaelbabyn:980",
                "plots": "https://api.plotly.com/v2/plots/michaelbabyn:980",
                "parent": "https://api.plotly.com/v2/folders/home?user=michaelbabyn"
            },
            "owner": "michaelbabyn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~michaelbabyn/980/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:52:16.942Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~michaelbabyn/980/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "base": 1000,
                        "type": "waterfall",
                        "xsrc": "michaelbabyn:979:55ff28",
                        "ysrc": "michaelbabyn:979:57fa2e",
                        "measuresrc": "michaelbabyn:979:fcda3e"
                    },
                    {
                        "base": 1000,
                        "type": "waterfall",
                        "xsrc": "michaelbabyn:979:730ec4",
                        "ysrc": "michaelbabyn:979:e6380b",
                        "measuresrc": "michaelbabyn:979:701d53"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "ticks": "outside",
                        "title": {
                            "text": "MULTI-CATEGORY"
                        },
                        "tickfont": {
                            "size": 16
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "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.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "waterfallgroupgap": 0.5
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~michaelbabyn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-09 16:52:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "michaelbabyn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:51:37.953889Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~haitm7/12.embed",
            "fid": "haitm7:12",
            "filename": "simple-node-example",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/haitm7:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/haitm7:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/haitm7:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/haitm7:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/haitm7:12",
                "plots": "https://api.plotly.com/v2/plots/haitm7:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=haitm7"
            },
            "owner": "haitm7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~haitm7/12/",
            "world_readable": true,
            "date_modified": "2019-06-18T02:03:04.401Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~haitm7/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "haitm7:13:69d388",
                        "ysrc": "haitm7:13:7f641a"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~haitm7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-01-11 05:43:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "haitm7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:51:37.119854Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~codybarney/33.embed",
            "fid": "codybarney:33",
            "filename": "West Africa Gold Mines",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/codybarney:33/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/codybarney:33/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/codybarney/33/8_0ZL52KJVHKR71XLNYXNAJ3N6SIQPYV.png",
                "list-thumb": "https://api.plotly.com/v2/files/codybarney:33/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/codybarney:33",
                "plots": "https://api.plotly.com/v2/plots/codybarney:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=codybarney"
            },
            "owner": "codybarney",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 20,
            "web_url": "https://chart-studio.plotly.com/~codybarney/33/",
            "world_readable": true,
            "date_modified": "2019-07-09T18:10:16.230Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~codybarney/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "codybarney:32:5eda5f",
                        "ysrc": "codybarney:32:020927",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 2,
                            "cmin": 0,
                            "line": {
                                "cmax": 2,
                                "cmin": 0,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "codybarney:32:14a0a6",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(228,26,28,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(195,80,81,1)"
                                    ],
                                    [
                                        "0.0833333333333333",
                                        "rgba(150,106,132,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(55,126,184,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(78,142,150,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(83,158,114,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(77,175,74,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(117,147,108,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(139,116,136,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(152,78,163,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(194,92,122,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(227,109,79,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(255,127,0,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(255,172,18,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(255,214,35,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(255,255,51,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(227,197,50,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(197,141,46,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(166,86,40,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(195,100,90,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(222,114,140,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(247,129,191,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(217,140,178,1)"
                                    ],
                                    [
                                        "0.958333333333333",
                                        "rgba(186,148,166,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(153,153,153,1)"
                                    ]
                                ]
                            },
                            "opacity": 0.8,
                            "sizesrc": "codybarney:32:5d9d95",
                            "colorbar": {
                                "title": "marketCapRef",
                                "ticklen": 2
                            },
                            "colorsrc": "codybarney:32:9f10ac",
                            "sizemode": "diameter",
                            "showscale": false,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(228,26,28,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(195,80,81,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(150,106,132,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(55,126,184,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(78,142,150,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(83,158,114,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(77,175,74,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(117,147,108,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(139,116,136,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(152,78,163,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(194,92,122,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(227,109,79,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(255,127,0,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(255,172,18,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(255,214,35,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(255,255,51,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(227,197,50,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(197,141,46,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(166,86,40,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(195,100,90,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(222,114,140,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(247,129,191,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(217,140,178,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(186,148,166,1)"
                                ],
                                [
                                    "1",
                                    "rgba(153,153,153,1)"
                                ]
                            ]
                        },
                        "textsrc": "codybarney:32:279ca5",
                        "hoverlabel": "text",
                        "hovertextsrc": "codybarney:32:cbb6e7"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "codybarney:32:14efad",
                        "ysrc": "codybarney:32:7d266f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "cmax": 2,
                            "cmin": 0,
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "colorbar": {
                                "y": 1,
                                "len": 0.5,
                                "title": "marketCapRef",
                                "lenmode": "fraction",
                                "ticklen": 2,
                                "yanchor": "top"
                            },
                            "colorsrc": "codybarney:32:a041b5",
                            "showscale": false,
                            "colorscale": [
                                [
                                    "0",
                                    "rgba(228,26,28,1)"
                                ],
                                [
                                    "0.0416666666666667",
                                    "rgba(195,80,81,1)"
                                ],
                                [
                                    "0.0833333333333333",
                                    "rgba(150,106,132,1)"
                                ],
                                [
                                    "0.125",
                                    "rgba(55,126,184,1)"
                                ],
                                [
                                    "0.166666666666667",
                                    "rgba(78,142,150,1)"
                                ],
                                [
                                    "0.208333333333333",
                                    "rgba(83,158,114,1)"
                                ],
                                [
                                    "0.25",
                                    "rgba(77,175,74,1)"
                                ],
                                [
                                    "0.291666666666667",
                                    "rgba(117,147,108,1)"
                                ],
                                [
                                    "0.333333333333333",
                                    "rgba(139,116,136,1)"
                                ],
                                [
                                    "0.375",
                                    "rgba(152,78,163,1)"
                                ],
                                [
                                    "0.416666666666667",
                                    "rgba(194,92,122,1)"
                                ],
                                [
                                    "0.458333333333333",
                                    "rgba(227,109,79,1)"
                                ],
                                [
                                    "0.5",
                                    "rgba(255,127,0,1)"
                                ],
                                [
                                    "0.541666666666667",
                                    "rgba(255,172,18,1)"
                                ],
                                [
                                    "0.583333333333333",
                                    "rgba(255,214,35,1)"
                                ],
                                [
                                    "0.625",
                                    "rgba(255,255,51,1)"
                                ],
                                [
                                    "0.666666666666667",
                                    "rgba(227,197,50,1)"
                                ],
                                [
                                    "0.708333333333333",
                                    "rgba(197,141,46,1)"
                                ],
                                [
                                    "0.75",
                                    "rgba(166,86,40,1)"
                                ],
                                [
                                    "0.791666666666667",
                                    "rgba(195,100,90,1)"
                                ],
                                [
                                    "0.833333333333333",
                                    "rgba(222,114,140,1)"
                                ],
                                [
                                    "0.875",
                                    "rgba(247,129,191,1)"
                                ],
                                [
                                    "0.916666666666667",
                                    "rgba(217,140,178,1)"
                                ],
                                [
                                    "0.958333333333333",
                                    "rgba(186,148,166,1)"
                                ],
                                [
                                    "1",
                                    "rgba(153,153,153,1)"
                                ]
                            ]
                        },
                        "opacity": 0,
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "West Africa Gold Mines",
                    "xaxis": {
                        "title": "Ore Tonnage, Reserves (Mt)",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "yaxis": {
                        "title": "Ore Grade, Reserves (g/t)",
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true
                    },
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~codybarney",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.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-06-05 17:38:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "codybarney",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:50:57.703878Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ChrisTDick/140.embed",
            "fid": "ChrisTDick:140",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ChrisTDick:140/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ChrisTDick:140/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ChrisTDick:140/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ChrisTDick:140/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ChrisTDick:140",
                "plots": "https://api.plotly.com/v2/plots/ChrisTDick:140",
                "parent": "https://api.plotly.com/v2/folders/home?user=ChrisTDick"
            },
            "owner": "ChrisTDick",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Entity Vectors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ChrisTDick/140/entity-vectors/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:50:58.822Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ChrisTDick/140/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "eefb1e62-192d-4f58-820b-371ae8000b78",
                        "mode": "text",
                        "type": "scattergl",
                        "xsrc": "ChrisTDick:141:606517",
                        "ysrc": "ChrisTDick:141:8e01b1",
                        "marker": {
                            "opacity": 0.5
                        },
                        "textsrc": "ChrisTDick:141:c34901"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Entity Vectors"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        }
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ChrisTDick",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-15 09:55:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ChrisTDick",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:50:32.703346Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JeffKatzy/217.embed",
            "fid": "JeffKatzy:217",
            "filename": "plot from API (92)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/JeffKatzy:217/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/JeffKatzy:217/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/217/8_EPEBDNVTO3BE3UMUVUKSAEIBA5KCEI.png",
                "list-thumb": "https://api.plotly.com/v2/files/JeffKatzy:217/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JeffKatzy:217",
                "plots": "https://api.plotly.com/v2/plots/JeffKatzy:217",
                "parent": "https://api.plotly.com/v2/folders/home?user=JeffKatzy"
            },
            "owner": "JeffKatzy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "ad spending effect vs sales spending effect",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~JeffKatzy/217/ad-spending-effect-vs-sales-spending-effect/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:50:33.151Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JeffKatzy/217/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0231bb88-6ef8-4203-96ac-cb94038c34e9",
                        "mode": "lines+markers",
                        "name": "ad spending effect",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "JeffKatzy:218:4a648c",
                        "ysrc": "JeffKatzy:218:86968c"
                    },
                    {
                        "uid": "a23c2f16-8b5f-42ba-9105-d790e8318b8f",
                        "mode": "lines+markers",
                        "name": "sales spending effect",
                        "text": [],
                        "type": "scatter",
                        "xsrc": "JeffKatzy:218:29cf9d",
                        "ysrc": "JeffKatzy:218:4ea87b"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JeffKatzy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-02-05 15:49:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JeffKatzy",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T16:50:14.193263Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ChrisTDick/138.embed",
            "fid": "ChrisTDick:138",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ChrisTDick:138/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ChrisTDick:138/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ChrisTDick:138/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ChrisTDick:138/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ChrisTDick:138",
                "plots": "https://api.plotly.com/v2/plots/ChrisTDick:138",
                "parent": "https://api.plotly.com/v2/folders/home?user=ChrisTDick"
            },
            "owner": "ChrisTDick",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Entity Vectors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ChrisTDick/138/entity-vectors/",
            "world_readable": true,
            "date_modified": "2019-06-17T16:50:14.992Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ChrisTDick/138/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "40ea67ec-01f0-48f4-b160-1ee349c960e2",
                        "mode": "text",
                        "type": "scattergl",
                        "xsrc": "ChrisTDick:139:470f21",
                        "ysrc": "ChrisTDick:139:429f9c",
                        "marker": {
                            "opacity": 0.5
                        },
                        "textsrc": "ChrisTDick:139:8bafc6"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Entity Vectors"
                    },
                    "xaxis": {
                        "title": {
                            "text": "x"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "y"
                        }
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ChrisTDick",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-15 09:55:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ChrisTDick",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}