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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIyJTNBMTMlM0E1NS42ODAzNTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMiUzQTE3JTNBNTcuNTg1ODkzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T22:17:57.585893Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61545.embed",
            "fid": "amper:61545",
            "filename": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c3_resolution-LOW",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:61545/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:61545/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:61545/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:61545/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61545",
                "plots": "https://api.plotly.com/v2/plots/amper:61545",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c3_resolution-LOW",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61545/raw-amps-03-20-19-ds-key-3f710000cb4a002c0047600f45164e45-c3-resolution-low/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:17:58.603Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61545/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines+markers",
                        "name": "raw_amps",
                        "type": "scattergl",
                        "xsrc": "amper:61546:8929c1",
                        "ysrc": "amper:61546:3b8981"
                    }
                ],
                "layout": {
                    "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c3_resolution-LOW"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:17:50.385246Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61543.embed",
            "fid": "amper:61543",
            "filename": "03-20-19_ds-1556_alg-5421_param-1211_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:61543/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:61543/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:61543/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:61543/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61543",
                "plots": "https://api.plotly.com/v2/plots/amper:61543",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "03-20-19_ds-1556_alg-5421_param-1211_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61543/_03-20-19-ds-1556-alg-5421-param-1211-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:17:51.624Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61543/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "273a14ee-6122-401f-a7d5-9a2dfbc22a16",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:61544:22a076",
                        "ysrc": "amper:61544:6b4639",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "9c3c6ca3-b0eb-4b23-9c02-86976eccbb85",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:61544:22a076",
                        "ysrc": "amper:61544:dd93bf",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "825db609-1ebc-4227-9608-e475a9a7bdce",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:61544:22a076",
                        "ysrc": "amper:61544:850b1c",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    }
                ],
                "layout": {
                    "title": "03-20-19_ds-1556_alg-5421_param-1211_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:16:54.807010Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~smileandsaydl/341.embed",
            "fid": "smileandsaydl:341",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/smileandsaydl:341/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/smileandsaydl:341/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/smileandsaydl/341/8_IY55CSS0LBTV5S800Q7DG9SOMEFPKG.png",
                "list-thumb": "https://api.plotly.com/v2/files/smileandsaydl:341/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/smileandsaydl:341",
                "plots": "https://api.plotly.com/v2/plots/smileandsaydl:341",
                "parent": "https://api.plotly.com/v2/folders/home?user=smileandsaydl"
            },
            "owner": "smileandsaydl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Log-marginal-likelihood",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~smileandsaydl/341/log-marginal-likelihood/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:16:55.382Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~smileandsaydl/341/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cfc7ead0-4b5d-11e9-b064-408d5c757ebb",
                        "type": "heatmap",
                        "xsrc": "smileandsaydl:342:d9362d",
                        "ysrc": "smileandsaydl:342:c6a77d",
                        "zsrc": "smileandsaydl:342:-d9362d,c6a77d,d7b7db,889452,f1d0d1,b2862a",
                        "colorscale": "Jet"
                    },
                    {
                        "uid": "cfc7ead1-4b5d-11e9-a282-408d5c757ebb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:342:d7b7db",
                        "ysrc": "smileandsaydl:342:889452",
                        "marker": {
                            "color": "black"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "cfc7ead2-4b5d-11e9-8c86-408d5c757ebb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:342:f1d0d1",
                        "ysrc": "smileandsaydl:342:b2862a",
                        "marker": {
                            "color": "black"
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": "Log-marginal-likelihood",
                    "xaxis": {
                        "type": "log",
                        "title": "Magnitude"
                    },
                    "yaxis": {
                        "type": "log",
                        "title": "Length-scale"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~smileandsaydl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-24 14:45:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "smileandsaydl",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:16:36.422972Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~smileandsaydl/339.embed",
            "fid": "smileandsaydl:339",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/smileandsaydl:339/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/smileandsaydl:339/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/smileandsaydl/339/8_YQ0QVZTV1WBII4ED9M149KY8WJFDJC.png",
                "list-thumb": "https://api.plotly.com/v2/files/smileandsaydl:339/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/smileandsaydl:339",
                "plots": "https://api.plotly.com/v2/plots/smileandsaydl:339",
                "parent": "https://api.plotly.com/v2/folders/home?user=smileandsaydl"
            },
            "owner": "smileandsaydl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Class 1 probability vs Feature",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~smileandsaydl/339/class-1-probability-vs-feature/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:16:36.949Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~smileandsaydl/339/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c12b399e-4b5d-11e9-ad36-408d5c757ebb",
                        "mode": "markers",
                        "name": "Train data",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:340:a86c08",
                        "ysrc": "smileandsaydl:340:80446f",
                        "marker": {
                            "color": "black"
                        }
                    },
                    {
                        "uid": "c12b399f-4b5d-11e9-b20f-408d5c757ebb",
                        "mode": "markers",
                        "name": "Test data",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:340:a0b33d",
                        "ysrc": "smileandsaydl:340:8c59bc",
                        "marker": {
                            "color": "green"
                        }
                    },
                    {
                        "uid": "c12b39a0-4b5d-11e9-a20d-408d5c757ebb",
                        "line": {
                            "color": "red"
                        },
                        "mode": "lines",
                        "name": "Initial kernel: 1**2 * RBF(length_scale=1)",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:340:defe5f",
                        "ysrc": "smileandsaydl:340:094c3c"
                    },
                    {
                        "uid": "c12b60b0-4b5d-11e9-88c4-408d5c757ebb",
                        "line": {
                            "color": "blue"
                        },
                        "mode": "lines",
                        "name": "Optimized kernel: 66.3**2 * RBF(length_scale=1.33)",
                        "type": "scatter",
                        "xsrc": "smileandsaydl:340:defe5f",
                        "ysrc": "smileandsaydl:340:cb4013"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": "Feature"
                    },
                    "yaxis": {
                        "title": "Class 1 probability"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~smileandsaydl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-24 14:45:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "smileandsaydl",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:16:29.117777Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61541.embed",
            "fid": "amper:61541",
            "filename": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c2_resolution-LOW",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:61541/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:61541/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:61541/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:61541/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61541",
                "plots": "https://api.plotly.com/v2/plots/amper:61541",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c2_resolution-LOW",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61541/raw-amps-03-20-19-ds-key-3f710000cb4a002c0047600f45164e45-c2-resolution-low/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:56:13.021Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61541/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines+markers",
                        "name": "raw_amps",
                        "type": "scattergl",
                        "xsrc": "amper:61542:b36560",
                        "ysrc": "amper:61542:864813"
                    }
                ],
                "layout": {
                    "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c2_resolution-LOW"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:15:36.651584Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~madelineahamilton/6.embed",
            "fid": "madelineahamilton:6",
            "filename": "simple-3d-scatter",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/madelineahamilton:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/madelineahamilton/6/2_YET2ET9H67DIQV1AJLD9RZT1HZGN9B.png",
                "block-thumb": "https://api.plotly.com/v2/files/madelineahamilton:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/madelineahamilton:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/madelineahamilton:6",
                "plots": "https://api.plotly.com/v2/plots/madelineahamilton:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=madelineahamilton"
            },
            "owner": "madelineahamilton",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 54,
            "web_url": "https://chart-studio.plotly.com/~madelineahamilton/6/",
            "world_readable": true,
            "date_modified": "2019-05-09T03:19:34.965Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~madelineahamilton/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "madelineahamilton:7:0142c6",
                        "ysrc": "madelineahamilton:7:a4946f",
                        "zsrc": "madelineahamilton:7:5df92b",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 1,
                            "opacity": 0.8
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "madelineahamilton:7:5dbc31",
                        "ysrc": "madelineahamilton:7:e7f2e5",
                        "zsrc": "madelineahamilton:7:908965",
                        "marker": {
                            "line": {
                                "color": "rgb(204, 204, 204)",
                                "width": 1
                            },
                            "size": 2,
                            "color": "g",
                            "symbol": "circle",
                            "opacity": 0.9
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "madelineahamilton:7:5dbc31",
                        "ysrc": "madelineahamilton:7:e7f2e5",
                        "zsrc": "madelineahamilton:7:908965",
                        "marker": {
                            "line": {
                                "color": "rgb(204, 204, 204)",
                                "width": 1
                            },
                            "size": 2,
                            "color": "r",
                            "symbol": "circle",
                            "opacity": 0.9
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "madelineahamilton:7:5dbc31",
                        "ysrc": "madelineahamilton:7:e7f2e5",
                        "zsrc": "madelineahamilton:7:908965",
                        "marker": {
                            "line": {
                                "color": "rgb(204, 204, 204)",
                                "width": 1
                            },
                            "size": 2,
                            "color": "y",
                            "symbol": "circle",
                            "opacity": 0.9
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "madelineahamilton:7:5dbc31",
                        "ysrc": "madelineahamilton:7:e7f2e5",
                        "zsrc": "madelineahamilton:7:908965",
                        "marker": {
                            "line": {
                                "color": "rgb(204, 204, 204)",
                                "width": 1
                            },
                            "size": 2,
                            "color": "k",
                            "symbol": "circle",
                            "opacity": 0.9
                        }
                    }
                ],
                "layout": {
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~madelineahamilton",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-01-02 20:03:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "madelineahamilton",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:14:38.540432Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~prattitl/156.embed",
            "fid": "prattitl:156",
            "filename": "1in Cork Panel",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/prattitl:156/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/prattitl/156/2_AUFWOGGSQPZ4T6BW9YVBULXPMZ6EJV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/prattitl/156/8_00AGHPSY5U654ZAU1FYT7AW3ZBUE74.png",
                "list-thumb": "https://api.plotly.com/v2/files/prattitl:156/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/prattitl:156",
                "plots": "https://api.plotly.com/v2/plots/prattitl:156",
                "parent": "https://api.plotly.com/v2/folders/prattitl:151"
            },
            "owner": "prattitl",
            "parent": 151,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<b>SPL(dB)</b> vs <b>Frequency(Hz)</b>",
            "views": 492,
            "web_url": "https://chart-studio.plotly.com/~prattitl/156/spldb-vs-frequencyhz/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:14:39.044Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~prattitl/156/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b3ed1dcc-ff24-4435-b853-3fed9b4990d0",
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(0,0,0)",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "1_cork",
                        "type": "scatter",
                        "xsrc": "prattitl:157:db51b1",
                        "ysrc": "prattitl:157:1df9f7"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "type": "log",
                        "title": {
                            "text": "<b>Frequency(Hz)</b>"
                        },
                        "showgrid": true,
                        "showline": true,
                        "autorange": true,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "range": [
                            -20,
                            30
                        ],
                        "title": {
                            "text": "<b>SPL(dB)</b>"
                        },
                        "showgrid": true,
                        "showline": false,
                        "zeroline": false,
                        "showticklabels": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 20,
                        "t": 50,
                        "autoexpand": false
                    },
                    "shapes": [
                        {
                            "x0": 125,
                            "x1": 4000,
                            "y0": 24,
                            "y1": 27,
                            "line": {
                                "color": "rgba(0,0,0,0)",
                                "width": 0
                            },
                            "type": "rect",
                            "fillcolor": "rgba(0, 0, 0, 0.05)"
                        },
                        {
                            "x0": 20,
                            "x1": 500,
                            "y0": 27,
                            "y1": 30,
                            "line": {
                                "color": "rgba(0, 0, 0, 0.1)",
                                "width": 0
                            },
                            "type": "rect",
                            "fillcolor": "rgba(0, 0, 0, 0.05)"
                        },
                        {
                            "x0": 2000,
                            "x1": 20000,
                            "y0": 27,
                            "y1": 30,
                            "line": {
                                "color": "rgba(0, 0, 0, 0.1)",
                                "width": 0
                            },
                            "type": "rect",
                            "fillcolor": "rgba(0, 0, 0, 0.05)"
                        }
                    ],
                    "autosize": true,
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.52,
                            "y": 0.89,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Droid Sans"
                            },
                            "text": "Human Voice Frequency Range",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.25,
                            "y": 0.95,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Droid Sans"
                            },
                            "text": "low Frequency Range",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.825,
                            "y": 0.95,
                            "font": {
                                "size": 10,
                                "color": "rgb(0,0,0)",
                                "family": "Droid Sans"
                            },
                            "text": "high Frequency Range",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.06,
                            "y": -0.09,
                            "font": {
                                "size": 8,
                                "color": "rgb(0,0,0)",
                                "family": "Droid Sans"
                            },
                            "text": "Source Recording by Pratt ITL",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 1.01,
                            "font": {
                                "size": 14,
                                "color": "rgb(0,0,0)",
                                "family": "Droid Sans"
                            },
                            "text": "1\" Cork Panel",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~prattitl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/LYXVOQZL4YZ970MCGV564W96RE2T47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-04 21:12:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "prattitl",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:14:35.906310Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61539.embed",
            "fid": "amper:61539",
            "filename": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c1_resolution-LOW",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:61539/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:61539/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:61539/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:61539/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61539",
                "plots": "https://api.plotly.com/v2/plots/amper:61539",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c1_resolution-LOW",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61539/raw-amps-03-20-19-ds-key-3f710000cb4a002c0047600f45164e45-c1-resolution-low/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:14:36.704Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61539/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines+markers",
                        "name": "raw_amps",
                        "type": "scattergl",
                        "xsrc": "amper:61540:f047d5",
                        "ysrc": "amper:61540:8b807c"
                    }
                ],
                "layout": {
                    "title": "raw_amps_03-20-19_ds_key-3f710000cb4a002c0047600f45164e45_c1_resolution-LOW"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:13:57.224525Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xpedro/8.embed",
            "fid": "xpedro:8",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/xpedro:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/xpedro:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/xpedro:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/xpedro:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xpedro:8",
                "plots": "https://api.plotly.com/v2/plots/xpedro:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=xpedro"
            },
            "owner": "xpedro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Total Revenue by Traffic Source<br>(day of week)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~xpedro/8/total-revenue-by-traffic-source-day-of-week/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:13:57.634Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xpedro/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "bea493b5-54ec-4100-9379-302268cdbc17",
                        "type": "heatmap",
                        "xsrc": "xpedro:9:6117dd",
                        "ysrc": "xpedro:9:41411e",
                        "zsrc": "xpedro:9:abd23b,899f25,da8703,8bad39,1cfdcb,bee19a,7c6d31",
                        "colorscale": "Reds"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Total Revenue by Traffic Source<br>(day of week)"
                    },
                    "margin": {
                        "l": 150
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xpedro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-03 03:04:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xpedro",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T22:13:55.680351Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61537.embed",
            "fid": "amper:61537",
            "filename": "03-20-19_ds-1553_alg-5421_param-1208_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:61537/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:61537/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:61537/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:61537/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61537",
                "plots": "https://api.plotly.com/v2/plots/amper:61537",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "03-20-19_ds-1553_alg-5421_param-1208_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61537/_03-20-19-ds-1553-alg-5421-param-1208-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:13:56.618Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61537/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f418ebcf-29d7-43c0-9762-a911468c7fa3",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:61538:bb5988",
                        "ysrc": "amper:61538:b0325b",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "6173e4ff-d1ca-4caf-84f0-11f1a952485e",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:61538:bb5988",
                        "ysrc": "amper:61538:c334fd",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    }
                ],
                "layout": {
                    "title": "03-20-19_ds-1553_alg-5421_param-1208_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}