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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD00OTk1NDQ%3D&format=api&order_by=-views",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9NTU4MzI1&format=api&order_by=-views",
    "results": [
        {
            "creation_time": "2015-08-19T00:32:14.157654Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~MattSundquist/19553.embed",
            "fid": "MattSundquist:19553",
            "filename": "numpy-bins",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19553/9_FI3G8YRFTQ0QHAGUMFM27T8GSMADAZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19553%2F2_SMCPPLSF6RBCHV4IJT88B6A8TL224J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19553%2F8_YWUGJXJURNWEXVMKPOIIDWBBKTTHD8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19553/9_FI3G8YRFTQ0QHAGUMFM27T8GSMADAZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattSundquist:19553",
                "plots": "https://api.plotly.com/v2/plots/MattSundquist:19553",
                "parent": "https://api.plotly.com/v2/folders/home?user=MattSundquist"
            },
            "owner": "MattSundquist",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "y",
            "views": 558325,
            "web_url": "https://plotly.com/~MattSundquist/19553/y/",
            "world_readable": true,
            "date_modified": "2015-08-19T00:32:14.184Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~MattSundquist/19553/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2051c5",
                        "name": "y",
                        "type": "bar",
                        "xsrc": "MattSundquist:22377:7c6e8f",
                        "ysrc": "MattSundquist:22377:6b0bd0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "color": "#0000FF"
                        },
                        "opacity": 1,
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "width": 762,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            3
                        ],
                        "ticks": "inside",
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "zeroline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            2.1052631578947367
                        ],
                        "ticks": "inside",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "zeroline": false,
                        "autorange": true
                    },
                    "bargap": 0,
                    "height": 522,
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 522,
            "width": 762,
            "user": {
                "profile_url": "https://plotly.com/~MattSundquist",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "matthewsundquist.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-12-19 03:08:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattSundquist",
                "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": "2015-08-18T19:11:48.738171Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~MattSundquist/19516.embed",
            "fid": "MattSundquist:19516",
            "filename": "histogram-mpl-same",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19516/9_M3O90FD384UBFVP0GGBWCF0OP9BT1D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19516%2F2_JPSOVOVHDPXC67GN9KLIV3AE8XGB9K.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19516%2F8_8T7HPZOW2CVTT6E8DYG60ZBYQKGMRX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19516/9_M3O90FD384UBFVP0GGBWCF0OP9BT1D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattSundquist:19516",
                "plots": "https://api.plotly.com/v2/plots/MattSundquist:19516",
                "parent": "https://api.plotly.com/v2/folders/home?user=MattSundquist"
            },
            "owner": "MattSundquist",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 556715,
            "web_url": "https://plotly.com/~MattSundquist/19516/",
            "world_readable": true,
            "date_modified": "2015-08-18T19:11:48.999Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~wenliuwen1",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2023-03-10 13:19:33",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "wenliuwen1",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 1
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~MattSundquist/19516/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "bar",
                        "xsrc": "MattSundquist:22374:d39abb",
                        "ysrc": "MattSundquist:22374:92c605",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#0000FF"
                        },
                        "opacity": 0.5,
                        "orientation": "v"
                    },
                    {
                        "type": "bar",
                        "xsrc": "MattSundquist:22374:d39abb",
                        "ysrc": "MattSundquist:22374:48fced",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#007F00"
                        },
                        "opacity": 0.5,
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "bargap": 1.7763568394002505e-15,
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -10.0,
                            10.0
                        ],
                        "ticks": "inside",
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12.0
                        },
                        "zeroline": false
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.0,
                            40.0
                        ],
                        "ticks": "inside",
                        "anchor": "x1",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 9,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12.0
                        },
                        "zeroline": false
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~MattSundquist",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "matthewsundquist.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-12-19 03:08:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattSundquist",
                "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": "2015-08-19T00:27:21.923259Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~MattSundquist/19547.embed",
            "fid": "MattSundquist:19547",
            "filename": "histogram-mpl-legend",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19547/9_RF5CMDEJ47J8E2ZPNU478VR8V2XI4V.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19547%2F2_9E18FL8O1H6LPH4EL2PUY72RVNI9VZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist%2F19547%2F8_BF8NT35MF9YY2GQNSJGZPNLPLXB3LH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MattSundquist/19547/9_RF5CMDEJ47J8E2ZPNU478VR8V2XI4V.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattSundquist:19547",
                "plots": "https://api.plotly.com/v2/plots/MattSundquist:19547",
                "parent": "https://api.plotly.com/v2/folders/MattSundquist:19543"
            },
            "owner": "MattSundquist",
            "parent": 19543,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_line0",
            "views": 556403,
            "web_url": "https://plotly.com/~MattSundquist/19547/-line0/",
            "world_readable": true,
            "date_modified": "2015-08-19T00:27:22.445Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~wenliuwen1",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2023-03-10 13:19:33",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "wenliuwen1",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 1
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~MattSundquist/19547/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash",
                            "color": "#FF0000",
                            "width": 1.0,
                            "opacity": 1
                        },
                        "mode": "lines",
                        "name": "_line0",
                        "type": "scatter",
                        "xsrc": "MattSundquist:22376:a41034",
                        "ysrc": "MattSundquist:22376:9d0738",
                        "xaxis": "x1",
                        "yaxis": "y1"
                    },
                    {
                        "type": "bar",
                        "xsrc": "MattSundquist:22376:5ae949",
                        "ysrc": "MattSundquist:22376:844560",
                        "xaxis": "x1",
                        "yaxis": "y1",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#008000"
                        },
                        "opacity": 0.5,
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "bargap": 7.105427357601002e-15,
                    "xaxis1": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            40.0,
                            180.0
                        ],
                        "ticks": "inside",
                        "title": "Smarts",
                        "anchor": "y1",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 8,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 12.0,
                            "color": "#000000"
                        }
                    },
                    "yaxis1": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.0,
                            0.03
                        ],
                        "ticks": "inside",
                        "title": "Probability",
                        "anchor": "x1",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 7,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 12.0,
                            "color": "#000000"
                        }
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~MattSundquist",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1428999724.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "matthewsundquist.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-12-19 03:08:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattSundquist",
                "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": "2018-06-01T14:44:48.320624Z",
            "comments": {
                "results": [
                    {
                        "cid": 6415,
                        "comment": "WHERE IS WYOMING'S DATA.?",
                        "commenter": {
                            "profile_url": "https://plotly.com/~missginny",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2018-08-24 04:01:43",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "missginny",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        },
                        "ref_id": null,
                        "creation_time": "2018-08-24T04:02:26.154875Z"
                    }
                ],
                "count": 1
            },
            "parented": true,
            "embed_url": "https://plotly.com/~governing/963.embed",
            "fid": "governing:963",
            "filename": "2016perpupilspending",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/governing/963/9_DBXB20MR9ZDJZNCDQ7BLTVZK7XMRB3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/governing%2F963%2F2_DQK0BRPSP8TDQG2LSZMD50PMCPSCTY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/governing%2F963%2F8_A0GZMIMJMSPEMP1C4AUJDO66U8KVY2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/governing/963/9_DBXB20MR9ZDJZNCDQ7BLTVZK7XMRB3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/governing:963",
                "plots": "https://api.plotly.com/v2/plots/governing:963",
                "parent": "https://api.plotly.com/v2/folders/home?user=governing"
            },
            "owner": "governing",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Instruction Employee Salaries, Instruction Employee Benefits, Pupil Support, Instructional Staff Support, General Administration, School Administration, Other",
            "views": 545625,
            "web_url": "https://plotly.com/~governing/963/instruction-employee-salaries-instruction-employee-benefits-pupil-support-instru/",
            "world_readable": true,
            "date_modified": "2018-06-01T17:48:11.052Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~wenliuwen1",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2023-03-10 13:19:33",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "wenliuwen1",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 1
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~governing/963/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ccd732",
                        "name": "Instruction employee salaries",
                        "type": "bar",
                        "xsrc": "governing:962:ed3658",
                        "ysrc": "governing:962:eeafe7",
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "37661e",
                        "name": "Instruction employee benefits",
                        "type": "bar",
                        "xsrc": "governing:962:857b01",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "color": "rgb(118, 194, 247)"
                        },
                        "visible": true,
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "afc4b3",
                        "name": "Pupil support",
                        "type": "bar",
                        "xsrc": "governing:962:dea9e0",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "color": "rgb(204, 204, 204)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "523497",
                        "name": "Instruction staff support",
                        "type": "bar",
                        "xsrc": "governing:962:c4dc6e",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "line": {
                                "color": "rgb(141, 136, 136)"
                            },
                            "color": "rgb(127, 127, 127)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "964533",
                        "name": "General admin.",
                        "type": "bar",
                        "xsrc": "governing:962:1c0799",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "color": "rgb(249, 141, 141)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "06b618",
                        "name": "School admin.",
                        "type": "bar",
                        "xsrc": "governing:962:1e6dd0",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "visible": true,
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "7183b7",
                        "name": "Other",
                        "type": "bar",
                        "xsrc": "governing:962:0a679d",
                        "ysrc": "governing:962:eeafe7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgb(201, 216, 219)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "orientation": "h"
                    }
                ],
                "frames": [
                    {
                        "name": "workspace-breakpoint-0",
                        "layout": {
                            "width": 320,
                            "xaxis": {
                                "type": "-",
                                "range": [
                                    -144,
                                    23543.157894736843
                                ],
                                "ticks": "outside",
                                "title": "Click to enter X axis title",
                                "domain": [
                                    0,
                                    0.95
                                ],
                                "showgrid": false,
                                "showline": true,
                                "tickfont": {
                                    "family": "Droid Serif, serif"
                                },
                                "autorange": false,
                                "tickprefix": "$"
                            },
                            "yaxis": {
                                "type": "category",
                                "range": [
                                    -0.5,
                                    49.5
                                ],
                                "showgrid": false,
                                "tickfont": {
                                    "size": 12,
                                    "family": "Droid Serif, serif"
                                },
                                "autorange": true
                            },
                            "height": 944,
                            "legend": {
                                "x": -0.06422018348623854,
                                "y": 1.195944713675848,
                                "font": {
                                    "family": "Droid Serif, serif"
                                },
                                "xanchor": "left",
                                "traceorder": "normal"
                            },
                            "margin": {
                                "b": 50,
                                "l": 100,
                                "r": 2,
                                "t": 170
                            },
                            "barmode": "stack",
                            "autosize": false,
                            "showlegend": true,
                            "annotations": [
                                {
                                    "x": -0.07503024498437344,
                                    "y": -0.0693882212383161,
                                    "font": {
                                        "size": 15
                                    },
                                    "text": "Current spending per pupil",
                                    "xref": "paper",
                                    "yref": "paper",
                                    "showarrow": false
                                }
                            ]
                        }
                    }
                ],
                "layout": {
                    "width": 648,
                    "xaxis": {
                        "type": "-",
                        "range": [
                            -144,
                            23543.157894736843
                        ],
                        "ticks": "outside",
                        "title": "Click to enter X axis title",
                        "domain": [
                            0,
                            0.95
                        ],
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "family": "Droid Serif, serif"
                        },
                        "autorange": false,
                        "tickprefix": "$"
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            49.5
                        ],
                        "showgrid": false,
                        "tickfont": {
                            "size": 12,
                            "family": "Droid Serif, serif"
                        },
                        "autorange": true
                    },
                    "height": 900,
                    "legend": {
                        "x": 0.49299842558073964,
                        "y": 0.492019625129576,
                        "font": {
                            "family": "Droid Serif, serif"
                        },
                        "xanchor": "left",
                        "traceorder": "normal"
                    },
                    "margin": {
                        "b": 59,
                        "l": 100,
                        "r": 2,
                        "t": 18
                    },
                    "barmode": "stack",
                    "autosize": false,
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.24148351648351649,
                            "y": -0.05615292712066905,
                            "font": {
                                "size": 15
                            },
                            "text": "Current spending per pupil",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ],
                    "breakpoints": [
                        {
                            "type": "width",
                            "frame": "workspace-breakpoint-0",
                            "range": [
                                0,
                                420
                            ]
                        }
                    ]
                }
            },
            "height": 900,
            "width": 648,
            "user": {
                "profile_url": "https://plotly.com/~governing",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2015-03-10 13:38:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "governing",
                "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": "2015-07-29T02:18:52.867798Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jackp/10033.embed",
            "fid": "jackp:10033",
            "filename": "Another dashboard example",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10033%2F9_J6U31KWT8ASHX2DH9ZDS5VTZ4TAOIV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10033%2F2_4WENWBXCT7KSFTWRP2GNNYK6XWY1IR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10033%2F8_VQB8L0WHTFWJABKDVG9JLP61Q9KXSB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10033%2F9_J6U31KWT8ASHX2DH9ZDS5VTZ4TAOIV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:10033",
                "plots": "https://api.plotly.com/v2/plots/jackp:10033",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Frequency vs Gaussian Fit",
            "views": 512477,
            "web_url": "https://plotly.com/~jackp/10033/frequency-vs-gaussian-fit/",
            "world_readable": true,
            "date_modified": "2015-07-29T17:22:17.404Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~wenliuwen1",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2023-03-10 13:19:33",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "wenliuwen1",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    },
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~jack_kim",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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": "2016-02-03 03:11:04",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "jack_kim",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 2
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jackp/10033/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [
                            "30",
                            "31",
                            "32",
                            "33",
                            "34",
                            "35",
                            "36",
                            "37",
                            "38",
                            "39",
                            "40",
                            "41",
                            "42",
                            "43",
                            "44",
                            "45",
                            "46",
                            "47",
                            "48",
                            "49",
                            "50",
                            "51",
                            "52",
                            "53",
                            "54",
                            "55",
                            "56",
                            "57",
                            "58",
                            "59",
                            "60",
                            "61",
                            "62",
                            "63",
                            "64",
                            "65",
                            "66",
                            "67",
                            "68",
                            "69",
                            "70",
                            "71",
                            "72",
                            "73",
                            "74",
                            "75",
                            "76",
                            "77",
                            "78",
                            "79",
                            "80",
                            "81",
                            "82",
                            "83",
                            "84",
                            "85",
                            "86",
                            "87",
                            "88",
                            "89",
                            "90",
                            "91"
                        ],
                        "y": [
                            "0",
                            "2",
                            "0",
                            "0",
                            "1",
                            "0",
                            "0",
                            "0",
                            "0",
                            "4",
                            "1",
                            "4",
                            "2",
                            "1",
                            "0",
                            "2",
                            "1",
                            "5",
                            "8",
                            "6",
                            "5",
                            "7",
                            "5",
                            "5",
                            "11",
                            "5",
                            "8",
                            "2",
                            "3",
                            "7",
                            "4",
                            "10",
                            "13",
                            "8",
                            "6",
                            "6",
                            "3",
                            "5",
                            "8",
                            "3",
                            "5",
                            "4",
                            "3",
                            "1",
                            "3",
                            "1",
                            "1",
                            "0",
                            "2",
                            "2",
                            "0",
                            "1",
                            "2",
                            "0",
                            "0",
                            "0",
                            "0",
                            "0",
                            "0",
                            "1",
                            "1",
                            "0"
                        ],
                        "uid": "68e03beb228e6e238c61f69d7d2d7fcb",
                        "name": "Frequency",
                        "type": "bar",
                        "xsrc": "Dreamshot:4133:1ea927",
                        "ysrc": "Dreamshot:4133:1e0796",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "color": "rgb(132, 202, 255)"
                        },
                        "error_x": {},
                        "error_y": {},
                        "textfont": {}
                    },
                    {
                        "x": [
                            30,
                            31.244897959183675,
                            32.48979591836735,
                            33.734693877551024,
                            34.97959183673469,
                            36.224489795918366,
                            37.46938775510204,
                            38.714285714285715,
                            39.95918367346939,
                            41.204081632653065,
                            42.44897959183673,
                            43.69387755102041,
                            44.93877551020408,
                            46.183673469387756,
                            47.42857142857143,
                            48.673469387755105,
                            49.91836734693877,
                            51.16326530612245,
                            52.40816326530612,
                            53.6530612244898,
                            54.89795918367347,
                            56.142857142857146,
                            57.38775510204081,
                            58.63265306122449,
                            59.87755102040816,
                            61.12244897959184,
                            62.36734693877551,
                            63.61224489795919,
                            64.85714285714286,
                            66.10204081632654,
                            67.34693877551021,
                            68.59183673469387,
                            69.83673469387755,
                            71.08163265306122,
                            72.3265306122449,
                            73.57142857142857,
                            74.81632653061224,
                            76.06122448979592,
                            77.3061224489796,
                            78.55102040816327,
                            79.79591836734694,
                            81.04081632653062,
                            82.28571428571429,
                            83.53061224489795,
                            84.77551020408163,
                            86.0204081632653,
                            87.26530612244898,
                            88.51020408163265,
                            89.75510204081633,
                            91
                        ],
                        "y": [
                            0.22769700795537956,
                            0.2833137880554925,
                            0.3569143150417924,
                            0.4526797283887296,
                            0.5751683394829001,
                            0.7291375363804123,
                            0.9192878086857197,
                            1.149928895294369,
                            1.4245771840619115,
                            1.7455042509641892,
                            2.1132677097176735,
                            2.5262658342630493,
                            2.980364946144067,
                            3.468651552358308,
                            3.981358210548434,
                            4.506002256673619,
                            5.027759938032915,
                            5.5300763086272156,
                            5.995485685127165,
                            6.40659160463597,
                            6.74713259906241,
                            7.0030441535870676,
                            7.163420733157968,
                            7.221286340913633,
                            7.174097777600003,
                            7.023930021460684,
                            6.777324902829398,
                            6.444818448499143,
                            6.040194473066329,
                            5.57953806906268,
                            5.080179425874732,
                            4.559624147155987,
                            4.0345608319598725,
                            3.5200215914887787,
                            3.0287490768830128,
                            2.570797901074472,
                            2.15337259635714,
                            1.7808816009561117,
                            1.455169533404919,
                            1.1758794621455158,
                            0.9408931966637984,
                            0.7468000667697907,
                            0.5893518022690539,
                            0.4638712183796291,
                            0.36559366977766905,
                            0.28993110659559684,
                            0.23265789568827067,
                            0.19002467354747538,
                            0.1588111358906145,
                            0.1363309739192806
                        ],
                        "fit": {
                            "rms": 1.9384003208015834,
                            "uid": "41e34d",
                            "corr": 0.7994697780400766,
                            "params": [
                                {
                                    "err": 0.6306527482142772,
                                    "hold": false,
                                    "name": "a",
                                    "value": 0.08710410992036459
                                },
                                {
                                    "err": 0.7265350865154562,
                                    "hold": false,
                                    "name": "h",
                                    "value": 7.134319382814495
                                },
                                {
                                    "err": 1.534489049743392,
                                    "hold": false,
                                    "name": "w",
                                    "value": 10.239741494677082
                                },
                                {
                                    "err": 0.9280162820261929,
                                    "hold": false,
                                    "name": "x0",
                                    "value": 58.69614675508463
                                }
                            ],
                            "parent": [
                                "68e03beb228e6e238c61f69d7d2d7fcb"
                            ],
                            "weight": "",
                            "fitname": "Frequency - fit 2",
                            "funcStr": "a + h*exp( -(x-x0)^2/(2*w^2) )",
                            "ninterp": "50",
                            "iterations": 1,
                            "inputxrange": [
                                "",
                                ""
                            ],
                            "outputxrange": [
                                "",
                                ""
                            ]
                        },
                        "uid": "41e34d",
                        "line": {
                            "color": "rgb(74, 134, 232)",
                            "width": 2
                        },
                        "name": "Gaussian Fit",
                        "type": "scatter",
                        "xsrc": "Dreamshot:4133:50a067",
                        "ysrc": "Dreamshot:4133:8f3557",
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_x": {},
                        "error_y": {},
                        "opacity": 1,
                        "textfont": {}
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "Raleway, sans-serif"
                    },
                    "smith": false,
                    "title": "",
                    "width": 887,
                    "xaxis": {
                        "type": "linear",
                        "dtick": 5,
                        "range": [
                            29.5,
                            91.5
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "nticks": 14,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "#eee",
                        "gridwidth": 1,
                        "linecolor": "#444",
                        "linewidth": 1,
                        "rangemode": "nonnegative",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "overlaying": false,
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 2,
                        "range": [
                            -0.05,
                            13.68421052631579
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": "Frequency",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "nticks": 0,
                        "ticklen": 5,
                        "position": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": false,
                        "gridcolor": "#eee",
                        "gridwidth": 1,
                        "linecolor": "#444",
                        "linewidth": 1,
                        "rangemode": "nonnegative",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "overlaying": false,
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "bargap": 0.2,
                    "boxgap": 0.3,
                    "height": 579,
                    "legend": {
                        "x": 0.034375,
                        "y": 0.9740740740740741,
                        "font": {
                            "size": 0,
                            "color": "",
                            "family": ""
                        },
                        "bgcolor": "rgba(255, 255, 255, 0)",
                        "xanchor": "left",
                        "yanchor": "top",
                        "traceorder": "normal",
                        "bordercolor": "rgba(68, 68, 68, 0)",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 20,
                        "l": 30,
                        "r": 10,
                        "t": 10,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "barmode": "group",
                    "boxmode": "overlay",
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "titlefont": {
                        "size": 0,
                        "color": "",
                        "family": ""
                    },
                    "separators": ".,",
                    "showlegend": false,
                    "bargroupgap": 0.05,
                    "boxgroupgap": 0.3,
                    "hidesources": false,
                    "plot_bgcolor": "rgba(217, 217, 217, 0.15)",
                    "paper_bgcolor": "rgb(250, 250, 250)"
                }
            },
            "height": 579,
            "width": 887,
            "user": {
                "profile_url": "https://plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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": "2015-07-28T23:16:57.314706Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jackp/10010.embed",
            "fid": "jackp:10010",
            "filename": "montreal-and-san-francisco-temperatures (copy)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10010%2F9_1PTWL99DSLANCYVFQTGMXGKSLVZEE3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10010%2F2_W74LY6ZOEV261L3LHNEO1P46VT7YNH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10010%2F8_7UAL58V82W8NXUHJBI2GAY4YO34W8Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10010%2F9_1PTWL99DSLANCYVFQTGMXGKSLVZEE3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:10010",
                "plots": "https://api.plotly.com/v2/plots/jackp:10010",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "SF (F)",
            "views": 511101,
            "web_url": "https://plotly.com/~jackp/10010/sf-f/",
            "world_readable": true,
            "date_modified": "2015-07-28T23:16:57.366Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jackp/10010/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2dca3b",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(255, 255, 255)",
                            "shape": "linear",
                            "width": 2
                        },
                        "mode": "markers",
                        "name": "SF (F)",
                        "type": "histogram2d",
                        "xsrc": "jackp:17686:786ee8",
                        "ysrc": "jackp:17686:ba4a30",
                        "zmax": 45,
                        "zmin": 0,
                        "xbins": {
                            "end": 1426568400000,
                            "size": 172800000,
                            "start": 1418619600000
                        },
                        "ybins": {
                            "end": 85,
                            "size": 1,
                            "start": 42
                        },
                        "zauto": false,
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "size": 4,
                            "color": "rgb(245, 245, 245)",
                            "symbol": "circle"
                        },
                        "nbinsx": 49,
                        "nbinsy": 58,
                        "error_x": {
                            "copy_ystyle": true
                        },
                        "error_y": {
                            "color": "rgb(255,65,54)",
                            "width": 1,
                            "thickness": 1
                        },
                        "opacity": 1,
                        "visible": true,
                        "zsmooth": false,
                        "autobinx": true,
                        "autobiny": true,
                        "colorbar": {
                            "title": ""
                        },
                        "contours": {
                            "end": 130.1,
                            "size": 10,
                            "start": 10,
                            "coloring": "fill",
                            "showlines": true
                        },
                        "showscale": true,
                        "colorscale": [
                            [
                                0,
                                "rgb(8, 29, 88)"
                            ],
                            [
                                0.125,
                                "rgb(37, 52, 148)"
                            ],
                            [
                                0.25,
                                "rgb(34, 94, 168)"
                            ],
                            [
                                0.375,
                                "rgb(29, 145, 192)"
                            ],
                            [
                                0.5,
                                "rgb(65, 182, 196)"
                            ],
                            [
                                0.625,
                                "rgb(127, 205, 187)"
                            ],
                            [
                                0.75,
                                "rgb(199, 233, 180)"
                            ],
                            [
                                0.875,
                                "rgb(237, 248, 217)"
                            ],
                            [
                                1,
                                "rgb(255, 255, 217)"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "Open Sans, sans-serif"
                    },
                    "smith": false,
                    "title": "",
                    "width": 1174,
                    "xaxis": {
                        "side": "bottom",
                        "type": "date",
                        "dtick": 1,
                        "range": [
                            1418619600000,
                            1426568400000
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "allticks",
                        "nticks": 0,
                        "ticklen": 5,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "black",
                            "family": "Open Sans, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "white",
                        "gridwidth": 1,
                        "linecolor": "rgb(34,34,34)",
                        "linewidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 14,
                            "color": "black",
                            "family": "Open Sans, sans-serif"
                        },
                        "tickformat": "",
                        "hoverformat": "",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1,
                        "range": [
                            42,
                            85
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "allticks",
                        "nticks": 0,
                        "ticklen": 5,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "black",
                            "family": "Open Sans, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "white",
                        "gridwidth": 1,
                        "linecolor": "rgb(34,34,34)",
                        "linewidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "tickcolor": "#444",
                        "tickwidth": 1,
                        "titlefont": {
                            "size": 14,
                            "color": "black",
                            "family": "Open Sans, sans-serif"
                        },
                        "showexponent": "all",
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "height": 984,
                    "legend": {
                        "x": 1,
                        "y": 1.02,
                        "font": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open sans\", verdana, arial, sans-serif"
                        },
                        "bgcolor": "rgba(255, 255, 255, 0.5)",
                        "xanchor": "left",
                        "yanchor": "auto",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 40,
                        "l": 30,
                        "r": 30,
                        "t": 30,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "x",
                    "titlefont": {
                        "size": 17,
                        "color": "#444",
                        "family": "\"Open sans\", verdana, arial, sans-serif"
                    },
                    "separators": ".,",
                    "showlegend": false,
                    "annotations": [],
                    "hidesources": false,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 984,
            "width": 1174,
            "user": {
                "profile_url": "https://plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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": "2015-07-29T06:27:06.426226Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jackp/10057.embed",
            "fid": "jackp:10057",
            "filename": "s3_life-gdp (copy)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10057%2F9_S1QN2RHW0FUPCBKERCPQCZ5QS0TUNX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10057%2F2_8MPD7LRZ6NEPM3EF4G2JDP9BN74RJQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10057%2F8_PIONO6OV7DY4040R7PWLMKRHWLDGHW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10057%2F9_S1QN2RHW0FUPCBKERCPQCZ5QS0TUNX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:10057",
                "plots": "https://api.plotly.com/v2/plots/jackp:10057",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Africa, Antarctica, Asia, Europe, North America, Oceania, South America",
            "views": 510705,
            "web_url": "https://plotly.com/~jackp/10057/africa-antarctica-asia-europe-north-america-oceania-south-america/",
            "world_readable": true,
            "date_modified": "2015-07-29T06:27:13.497Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~Oubliette87",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/52.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": "2016-08-09 22:27:29",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "Oubliette87",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 1
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jackp/10057/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9a25f6",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(4, 158, 215)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "Africa",
                        "type": "scatter",
                        "xsrc": "jackp:17687:fc1a0b",
                        "ysrc": "jackp:17687:f022de",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(4, 158, 215)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:152c49",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:ea9b38"
                    },
                    {
                        "uid": "1e1c30",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(114, 206, 243)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "Antarctica",
                        "type": "scatter",
                        "xsrc": "jackp:17687:5c614f",
                        "ysrc": "jackp:17687:e493f4",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(114, 206, 243)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:685b93",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:7fe184"
                    },
                    {
                        "uid": "94fd6f",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(2, 74, 97)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "Asia",
                        "type": "scatter",
                        "xsrc": "jackp:17687:b2a970",
                        "ysrc": "jackp:17687:796883",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(2, 74, 97)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:3c8117",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:26fcad"
                    },
                    {
                        "uid": "5a1005",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(171, 171, 173)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "Europe",
                        "type": "scatter",
                        "xsrc": "jackp:17687:1e10a4",
                        "ysrc": "jackp:17687:29880d",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(171, 171, 173)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:82669a",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:dc148f"
                    },
                    {
                        "uid": "768238",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(101, 147, 165)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "North America",
                        "type": "scatter",
                        "xsrc": "jackp:17687:174306",
                        "ysrc": "jackp:17687:902d6a",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(101, 147, 165)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:7422f2",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:5c517d"
                    },
                    {
                        "uid": "2337eb",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(0, 153, 145)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "Oceania",
                        "type": "scatter",
                        "xsrc": "jackp:17687:3a86bb",
                        "ysrc": "jackp:17687:0b8569",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(0, 153, 145)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:5f589b",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:5c6398"
                    },
                    {
                        "uid": "5646d7",
                        "fill": "none",
                        "line": {
                            "dash": "solid",
                            "color": "rgb(110, 188, 192)",
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "South America",
                        "type": "scatter",
                        "xsrc": "jackp:17687:4e604f",
                        "ysrc": "jackp:17687:23950e",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 0
                            },
                            "color": "rgb(110, 188, 192)",
                            "symbol": "dot",
                            "opacity": 0.6,
                            "sizeref": 127755.8,
                            "sizesrc": "jackp:17687:057f71",
                            "sizemode": "area"
                        },
                        "textsrc": "jackp:17687:179501"
                    }
                ],
                "layout": {
                    "font": {
                        "family": "\"Droid Sans\", sans-serif"
                    },
                    "title": "",
                    "width": 673,
                    "xaxis": {
                        "type": "log",
                        "range": [
                            2,
                            7.2
                        ],
                        "ticks": "",
                        "title": "",
                        "ticklen": 8,
                        "showgrid": false,
                        "tickfont": {
                            "size": 10,
                            "color": "black",
                            "family": "\"Verdana\", monospace"
                        },
                        "zeroline": false,
                        "gridcolor": "white",
                        "gridwidth": 1,
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 12,
                            "color": "black",
                            "family": "\"Verdana\", monospace"
                        }
                    },
                    "yaxis": {
                        "type": "log",
                        "range": [
                            1.5454751194917429,
                            1.945684695464204
                        ],
                        "ticks": "",
                        "title": "",
                        "ticklen": 8,
                        "showgrid": true,
                        "tickfont": {
                            "size": 10,
                            "color": "black",
                            "family": "\"Verdana\", monospace"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "white",
                        "gridwidth": 1,
                        "tickwidth": 1.5,
                        "titlefont": {
                            "size": 12,
                            "color": "black",
                            "family": "\"Verdana\", monospace"
                        }
                    },
                    "height": 560,
                    "margin": {
                        "b": 20,
                        "l": 20,
                        "r": 20,
                        "t": 10
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false,
                    "plot_bgcolor": "rgb(213, 226, 233)",
                    "paper_bgcolor": "rgb(213, 226, 233)"
                }
            },
            "height": 560,
            "width": 673,
            "user": {
                "profile_url": "https://plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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": "2015-07-29T16:31:49.509772Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jackp/10002.embed",
            "fid": "jackp:10002",
            "filename": "d3-cloropleth-map (copy)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10002%2F9_B0I1J3BCHARMG4SXJHUF8QXUHS80N9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10002%2F2_ZTB0SUQ13R46XM000RGTSYO1R3HQ9I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10002%2F8_0TFB33118HCLXTUJ7TIVTCP61J7JXY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10002%2F9_B0I1J3BCHARMG4SXJHUF8QXUHS80N9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:10002",
                "plots": "https://api.plotly.com/v2/plots/jackp:10002",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 505198,
            "web_url": "https://plotly.com/~jackp/10002/",
            "world_readable": true,
            "date_modified": "2015-07-29T16:31:49.544Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~jack_kim",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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": "2016-02-03 03:11:04",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "jack_kim",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    },
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~Oubliette87",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/52.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": "2016-08-09 22:27:29",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "Oubliette87",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 2
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jackp/10002/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9fd41c",
                        "type": "choropleth",
                        "zmax": 16472.88,
                        "zmin": 13.31,
                        "zsrc": "jackp:17685:f3b7a5",
                        "marker": {
                            "line": {
                                "color": "rgb(255,255,255)",
                                "width": 1
                            }
                        },
                        "textsrc": "jackp:17685:edf6b9",
                        "colorbar": {
                            "len": 0.5,
                            "xpad": 0,
                            "ypad": 0,
                            "title": "Millions USD",
                            "xanchor": "right",
                            "yanchor": "middle",
                            "thickness": 15,
                            "titleside": "top"
                        },
                        "showscale": true,
                        "colorscale": [
                            [
                                0,
                                "rgb(8, 29, 88)"
                            ],
                            [
                                0.125,
                                "rgb(37, 52, 148)"
                            ],
                            [
                                0.25,
                                "rgb(34, 94, 168)"
                            ],
                            [
                                0.375,
                                "rgb(29, 145, 192)"
                            ],
                            [
                                0.5,
                                "rgb(65, 182, 196)"
                            ],
                            [
                                0.625,
                                "rgb(127, 205, 187)"
                            ],
                            [
                                0.75,
                                "rgb(199, 233, 180)"
                            ],
                            [
                                0.875,
                                "rgb(237, 248, 217)"
                            ],
                            [
                                1,
                                "rgb(255, 255, 217)"
                            ]
                        ],
                        "locationmode": "USA-states",
                        "locationssrc": "jackp:17685:d1c4e5",
                        "reversescale": false,
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "lakecolor": "rgb(255, 255, 255)",
                        "showlakes": true,
                        "projection": {
                            "type": "albers usa"
                        },
                        "countrywidth": 0.1,
                        "subunitwidth": 0.1
                    },
                    "title": "",
                    "width": 869,
                    "height": 823,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true
                }
            },
            "height": 823,
            "width": 869,
            "user": {
                "profile_url": "https://plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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": "2015-07-29T15:57:49.639055Z",
            "comments": {
                "results": [
                    {
                        "cid": 7881,
                        "comment": "Great",
                        "commenter": {
                            "profile_url": "https://plotly.com/~adiltirmizi",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/J7FS230N63PBEJT7SGPM1TV5ZJTCWF.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2017-10-10 14:49:46",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "adiltirmizi",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        },
                        "ref_id": null,
                        "creation_time": "2019-10-16T13:06:30.886966Z"
                    }
                ],
                "count": 1
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jackp/10021.embed",
            "fid": "jackp:10021",
            "filename": "Western U.S. Electricity Usage, Super Bowl, 2012",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10021%2F9_6DVB2P9G53WAI5G6JLZXM4B9VGMUPZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10021%2F2_PUKI0L53SDK88T90HSWSIO9FVL7K5Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10021%2F8_DEKZ104RRW8Y6JS0UJZXLJO5ERMA3S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jackp%2F10021%2F9_6DVB2P9G53WAI5G6JLZXM4B9VGMUPZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jackp:10021",
                "plots": "https://api.plotly.com/v2/plots/jackp:10021",
                "parent": "https://api.plotly.com/v2/folders/home?user=jackp"
            },
            "owner": "jackp",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Electricity Usage, Electricity Usage, Electricity Usage, Superbowl, Superbowl",
            "views": 505141,
            "web_url": "https://plotly.com/~jackp/10021/electricity-usage-electricity-usage-electricity-usage-superbowl-superbowl/",
            "world_readable": true,
            "date_modified": "2015-07-29T15:57:49.666Z",
            "stars": {
                "results": [
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~wenliuwen1",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2023-03-10 13:19:33",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "wenliuwen1",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    },
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~OpenStat",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                            "bio": "",
                            "nickname": "",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2016-04-08 16:51:41",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "OpenStat",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    },
                    {
                        "creator": {
                            "profile_url": "https://plotly.com/~jleefremont",
                            "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                            "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                            "bio": "",
                            "nickname": "jeff",
                            "website": "",
                            "stream_tokens": null,
                            "feature_set_id": null,
                            "csrf_token": null,
                            "date_joined": "2016-10-17 23:43:32",
                            "mapbox_access_tokens": null,
                            "has_password": null,
                            "username": "jleefremont",
                            "email": null,
                            "is_active": null,
                            "readonly": null,
                            "is_dash_creator": null,
                            "dash_created_count": null,
                            "is_chart_creator": null,
                            "charts_created_count": null
                        }
                    }
                ],
                "count": 3
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jackp/10021/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [
                            9.850911974623315,
                            10.114512291831879,
                            10.380015860428232,
                            10.63187946074544,
                            10.859318001586043,
                            11.150515463917525,
                            11.374781919111815,
                            11.647264076130055,
                            11.895955590800952,
                            12.146550356859635,
                            12.413957176843773,
                            12.666455194290245,
                            12.916415543219665,
                            13.19270420301348,
                            13.444567803330688,
                            13.709436954797779,
                            13.960666137985726,
                            14.208088818398096,
                            14.472957969865185,
                            14.717208564631246,
                            14.95828707375099,
                            15.218715305313244,
                            15.461697065820776
                        ],
                        "y": [
                            1.4769230769230788,
                            1.0461538461538478,
                            0.8000000000000007,
                            1.2307692307692317,
                            1.2923076923076948,
                            1.5384615384615383,
                            1.2923076923076948,
                            1.7230769230769258,
                            1.8461538461538485,
                            2.153846153846155,
                            2.092307692307692,
                            2.584615384615386,
                            2.8307692307692314,
                            3.6307692307692303,
                            4.061538461538463,
                            3.7538461538461547,
                            4.123076923076923,
                            4.123076923076923,
                            3.815384615384616,
                            3.5076923076923094,
                            2.8923076923076927,
                            2.153846153846155,
                            1.7230769230769258
                        ],
                        "uid": "fb95f1",
                        "name": "Electricity Usage",
                        "type": "bar",
                        "xsrc": "Dreamshot:3789:257d85",
                        "ysrc": "Dreamshot:3789:9432e2",
                        "marker": {
                            "color": "rgb(7, 55, 99)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "showlegend": false
                    },
                    {
                        "x": [
                            "15.691356066613798",
                            "15.94480570975416",
                            "16.18905630452022",
                            "16.421887390959554",
                            "16.68104678826328",
                            "16.901189532117364",
                            "17.136558287073747",
                            "17.4071371927042",
                            "17.663441712926247",
                            "17.91340206185567",
                            "18.17827121332276",
                            "18.42061855670103",
                            "18.682950039651068",
                            "18.940523394131638",
                            "19.21617763679619"
                        ],
                        "y": [
                            "-0.12307692307692264",
                            "-1.415384615384614",
                            "-1.7230769230769205",
                            "-3.1384615384615344",
                            "-3.9999999999999964",
                            "-6.646153846153844",
                            "-7.815384615384609",
                            "-7.569230769230767",
                            "-6.707692307692302",
                            "-6.46153846153846",
                            "-6.7692307692307665",
                            "-7.261538461538457",
                            "-7.815384615384609",
                            "-6.830769230769224",
                            "-6.092307692307688"
                        ],
                        "uid": "cc4466",
                        "name": "Electricity Usage",
                        "type": "bar",
                        "xsrc": "Dreamshot:3789:9d8b36",
                        "ysrc": "Dreamshot:3789:3a792c",
                        "marker": {
                            "color": "rgb(74, 134, 232)"
                        },
                        "autobinx": true,
                        "autobiny": true,
                        "showlegend": false
                    },
                    {
                        "x": [
                            "19.4680412371134",
                            "19.721173671689133",
                            "19.981284694686757",
                            "20.25503568596352",
                            "20.526883425852496",
                            "20.776843774781916",
                            "21.026804123711337",
                            "21.276764472640757",
                            "21.546074544012686",
                            "21.787787470261694",
                            "22.032038065027756",
                            "22.29944488501189",
                            "22.543695479777952",
                            "22.78540840602696",
                            "23.05218080888184",
                            "23.29960348929421",
                            "23.550832672482155",
                            "23.841395717684374"
                        ],
                        "y": [
                            "-5.661538461538459",
                            "-5.107692307692304",
                            "-3.876923076923074",
                            "-3.3230769230769184",
                            "-2.9538461538461505",
                            "-2.707692307692305",
                            "-2.46153846153846",
                            "-2.215384615384611",
                            "-2.09230769230769",
                            "-2.646153846153844",
                            "-2.9538461538461505",
                            "-3.0153846153846118",
                            "-3.3230769230769184",
                            "-3.876923076923074",
                            "-3.9999999999999964",
                            "-3.9999999999999964",
                            "-3.6307692307692285",
                            "-3.446153846153841"
                        ],
                        "uid": "03cb3c",
                        "name": "Electricity Usage",
                        "type": "bar",
                        "xsrc": "Dreamshot:3789:74f832",
                        "ysrc": "Dreamshot:3789:2e50c5",
                        "marker": {
                            "color": "rgb(7, 55, 99)"
                        },
                        "autobinx": true,
                        "autobiny": true
                    },
                    {
                        "x": [
                            "15.691356066613798",
                            "15.691356066613798"
                        ],
                        "y": [
                            "8",
                            "-8"
                        ],
                        "uid": "f11280",
                        "fill": "none",
                        "line": {
                            "color": "rgba(214, 39, 40, 0)"
                        },
                        "mode": "lines",
                        "name": "Superbowl",
                        "type": "scatter",
                        "xsrc": "Dreamshot:3789:0badde",
                        "ysrc": "Dreamshot:3789:26d93f",
                        "showlegend": false
                    },
                    {
                        "x": [
                            "19.21617763679619",
                            "19.21617763679619"
                        ],
                        "y": [
                            "8",
                            "-8"
                        ],
                        "uid": "6b1c5a",
                        "fill": "tonextx",
                        "mode": "none",
                        "name": "Superbowl",
                        "type": "scatter",
                        "xsrc": "Dreamshot:3789:20d114",
                        "ysrc": "Dreamshot:3789:26d93f",
                        "fillcolor": "rgba(217, 217, 217, 0.4)"
                    }
                ],
                "layout": {
                    "title": "",
                    "width": 1304,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            9.740840602696274,
                            24
                        ],
                        "title": "",
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -8.88888888888889,
                            8.88888888888889
                        ],
                        "title": "",
                        "autorange": true
                    },
                    "height": 1022,
                    "legend": {
                        "x": 0.740625,
                        "y": 0.9119047619047619,
                        "traceorder": "normal",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 30,
                        "l": 30,
                        "r": 30,
                        "t": 20
                    },
                    "autosize": true,
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 17.516538461538463,
                            "y": 5.121693121693122,
                            "font": {
                                "size": 16,
                                "color": "rgb(74, 134, 232)"
                            },
                            "text": "3:30 to 7:00 p.m.",
                            "showarrow": false
                        }
                    ],
                    "hidesources": true
                }
            },
            "height": 1022,
            "width": 1304,
            "user": {
                "profile_url": "https://plotly.com/~jackp",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/NRIGSXBYZT3V46K5Y56OXF8F4QRONJ.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "😎 🌴 🍹",
                "nickname": "c e o @ plotly",
                "website": "https://github.com/jackparmer",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2012-09-28 19:38:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jackp",
                "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": "2017-07-07T15:39:49.189883Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~kweatherston/52.embed",
            "fid": "kweatherston:52",
            "filename": "CampBrain",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kweatherston%2F52%2F9_HASKC6KLMMB4ZPYBIM8DOQEL8E5DBH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kweatherston%2F52%2F2_9778ACKK0FIF6NBC7JTNW2IM82NGE1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kweatherston%2F52%2F8_R5CMN7LVZHJF593F0450L8Y49CZ8RN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kweatherston%2F52%2F9_HASKC6KLMMB4ZPYBIM8DOQEL8E5DBH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kweatherston:52",
                "plots": "https://api.plotly.com/v2/plots/kweatherston:52",
                "parent": "https://api.plotly.com/v2/folders/home?user=kweatherston"
            },
            "owner": "kweatherston",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "CampBrain Transactions/Day (last update: 2017-07-07 08:39:00)",
            "views": 499544,
            "web_url": "https://plotly.com/~kweatherston/52/campbrain-transactionsday-last-update-2017-07-07-083900/",
            "world_readable": true,
            "date_modified": "2017-07-07T15:39:49.678Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~kweatherston/52/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "approved",
                        "type": "scatter",
                        "xsrc": "kweatherston:4815:1df501",
                        "ysrc": "kweatherston:4815:6de671"
                    },
                    {
                        "name": "declined",
                        "type": "scatter",
                        "xsrc": "kweatherston:4815:1df501",
                        "ysrc": "kweatherston:4815:2a1a95"
                    }
                ],
                "layout": {
                    "title": "CampBrain Transactions/Day (last update: 2017-07-07 08:39:00)",
                    "barmode": "stack"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~kweatherston",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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": "2017-05-10 19:15:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kweatherston",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}