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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE3JTNBNTAlM0E1Mi44OTI2NDElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNyUzQTU3JTNBMzUuOTkzMDE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T17:57:35.993019Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67120.embed",
            "fid": "amper:67120",
            "filename": "06-15-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67120/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67120/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67120/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67120/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67120",
                "plots": "https://api.plotly.com/v2/plots/amper:67120",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-15-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67120/_06-15-19-ds-1640-alg-5421-param-1248-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:57:37.187Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67120/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "eebaf952-caa4-4998-b8af-9ac70b872d5e",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67121:663f5b",
                        "ysrc": "amper:67121:a80eac",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "4836d3e2-9332-4839-a0be-3f6e54e5424c",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67121:663f5b",
                        "ysrc": "amper:67121:7acee9",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "d963fa97-336b-4376-8379-e9bc43fd256f",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67121:663f5b",
                        "ysrc": "amper:67121:aaf0a8",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    }
                ],
                "layout": {
                    "title": "06-15-19_ds-1640_alg-5421_param-1248_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-06-17T17:57:08.110822Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67118.embed",
            "fid": "amper:67118",
            "filename": "06-14-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67118/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67118/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67118/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67118/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67118",
                "plots": "https://api.plotly.com/v2/plots/amper:67118",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-14-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67118/_06-14-19-ds-1640-alg-5421-param-1248-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:57:09.391Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67118/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "86226f74-19a2-4372-827f-984f8873afd1",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67119:abaf24",
                        "ysrc": "amper:67119:6b756c",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "825e154a-bb34-4133-8eb8-d2fff0c7c7c6",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67119:abaf24",
                        "ysrc": "amper:67119:e77809",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "1b818e6a-0384-46ba-906f-429d7b060608",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67119:abaf24",
                        "ysrc": "amper:67119:d11407",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "d02dabc1-9fe3-4418-a1b1-1da0afbbcfdc",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67119:abaf24",
                        "ysrc": "amper:67119:080f9f",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-14-19_ds-1640_alg-5421_param-1248_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-06-17T17:56:32.461221Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sally97/16.embed",
            "fid": "sally97:16",
            "filename": "binning function",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sally97:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sally97:16/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sally97/16/8_AUMS7CFT1TYV02BFIKLKVLZZ9KDJT5.png",
                "list-thumb": "https://api.plotly.com/v2/files/sally97:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sally97:16",
                "plots": "https://api.plotly.com/v2/plots/sally97:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=sally97"
            },
            "owner": "sally97",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "cattle vs RU_3",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sally97/16/cattle-vs-ru-3/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:56:33.063Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sally97/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96eb3d2d-9b61-4a46-822f-7a8bab8c5ea8",
                        "name": "cattle",
                        "type": "histogram",
                        "xsrc": "sally97:17:c0a06a",
                        "ysrc": "sally97:17:c57a91",
                        "histfunc": "count"
                    },
                    {
                        "uid": "cdd2f383-7064-453a-8f72-0cc4a69bd424",
                        "name": "RU_3",
                        "type": "histogram",
                        "xsrc": "sally97:17:c0a06a",
                        "ysrc": "sally97:17:c57a91",
                        "histfunc": "sum"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sally97",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-04 10:19:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sally97",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:56:24.213444Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bwjustus/58.embed",
            "fid": "bwjustus:58",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bwjustus:58/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bwjustus/58/2_KN68HDMTDA9BDKU58JS3KLSXHT6ED7.png",
                "block-thumb": "https://api.plotly.com/v2/files/bwjustus:58/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bwjustus:58/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bwjustus:58",
                "plots": "https://api.plotly.com/v2/plots/bwjustus:58",
                "parent": "https://api.plotly.com/v2/folders/home?user=bwjustus"
            },
            "owner": "bwjustus",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~bwjustus/58/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:56:24.733Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bwjustus/58/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3170a396-f9b6-4ac4-bc1c-c3349e9aebf2",
                        "type": "scatter",
                        "xsrc": "bwjustus:59:78422a",
                        "ysrc": "bwjustus:59:192089"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bwjustus",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-12 23:20:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bwjustus",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:56:03.052281Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bcowden/18.embed",
            "fid": "bcowden:18",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bcowden:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bcowden:18/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/bcowden:18/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bcowden:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bcowden:18",
                "plots": "https://api.plotly.com/v2/plots/bcowden:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=bcowden"
            },
            "owner": "bcowden",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Understanding Modes, Lacing Value Relationship",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bcowden/18/understanding-modes-lacing-value-relationship/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:56:03.795Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bcowden/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "49c7e43d-6c53-4cee-8b26-9271e3a60469",
                        "mode": "markers",
                        "name": "2000",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(0.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "7dee9e16-0b9e-4c8a-8b84-7d1477415dfb",
                        "mode": "markers",
                        "name": "2001",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(6.923076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "51590fcf-c382-45f6-87f2-31c63c0c2d79",
                        "mode": "markers",
                        "name": "2002",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(13.846153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "1a8c0f48-5969-4d2b-a753-6a9e6cec2b71",
                        "mode": "markers",
                        "name": "2003",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(20.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "436f5ca5-b273-46b3-a665-f189c58b00bd",
                        "mode": "markers",
                        "name": "2004",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(27.692307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "66171c9e-20f9-41cf-a22e-b145e8ebd963",
                        "mode": "markers",
                        "name": "2005",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(34.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "0109af0c-b1df-4276-8f17-9735e1c7bde9",
                        "mode": "markers",
                        "name": "2006",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(41.53846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "bedffb65-db36-49a2-a6a1-8ec0bad8b675",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(48.46153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "4f1fa419-5a3f-4823-9ace-c9e44019cf66",
                        "mode": "markers",
                        "name": "2008",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(55.38461538461539,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "2708af72-ae2b-4c56-acf2-0f0e3d438531",
                        "mode": "markers",
                        "name": "2009",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(62.30769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "fa238ce6-928f-4597-b1b2-f8e550d3f84d",
                        "mode": "markers",
                        "name": "2010",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(69.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "3c0d2e4a-dd69-4ae9-b314-3f18c8d48fa7",
                        "mode": "markers",
                        "name": "2011",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(76.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "834aa848-2631-4988-b9bf-ed5b40faa4fa",
                        "mode": "markers",
                        "name": "2012",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(83.07692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "079362d3-9d27-49a0-be5e-e9c04f3c54ab",
                        "mode": "markers",
                        "name": "2013",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(90.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "885a6638-2a3f-411f-9e1a-a08595fa2773",
                        "mode": "markers",
                        "name": "2014",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(96.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "0fdb9bfc-6a06-45ab-ae0a-4ab2c75734d9",
                        "mode": "markers",
                        "name": "2015",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(103.84615384615385,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "63032938-cda0-4fc9-8dec-589772309b82",
                        "mode": "markers",
                        "name": "2016",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(110.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "39b69101-bdd5-4238-b6f8-4a19dbb943e9",
                        "mode": "markers",
                        "name": "2017",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(117.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "a36ff702-bf8e-471b-9fc4-43ff5078e125",
                        "mode": "markers",
                        "name": "2018",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(124.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "2d5922fa-9dcd-4307-b323-866f28299f77",
                        "mode": "markers",
                        "name": "2019",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(131.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "48f56693-5d71-428e-bd91-ba3b975cab20",
                        "mode": "markers",
                        "name": "2020",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(138.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "7e647b4c-c7ad-45ef-8531-1d1192661779",
                        "mode": "markers",
                        "name": "2021",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(145.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "b659962a-32aa-4b42-9ec3-fe04435c617f",
                        "mode": "markers",
                        "name": "2022",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(152.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "fa0adc18-b972-4fac-898b-362e3867d5b2",
                        "mode": "markers",
                        "name": "2023",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(159.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "9527a665-2399-44db-a8a1-0b813a7cb9bf",
                        "mode": "markers",
                        "name": "2024",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(166.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "9e389789-d409-4078-814c-f4ac5735df0f",
                        "mode": "markers",
                        "name": "2025",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(173.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "4e34aaaa-7f82-4729-98f3-bd35006c9dde",
                        "mode": "markers",
                        "name": "2026",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(180.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "2c630191-b31c-4833-8bfa-2d67d16700fd",
                        "mode": "markers",
                        "name": "2027",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(186.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "6023b4d7-f58e-44be-94c9-04288e3bc2c9",
                        "mode": "markers",
                        "name": "2028",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(193.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "e1bdd89b-92a5-4da0-b8c9-43f5c14dc684",
                        "mode": "markers",
                        "name": "2029",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(200.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "77236f76-d125-4958-80a1-c588b60fb278",
                        "mode": "markers",
                        "name": "2030",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(207.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "b64b1f6a-b8ad-4736-9201-07ccbd47eab3",
                        "mode": "markers",
                        "name": "2031",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(214.6153846153846,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "e1ca5b11-bffc-431a-b1a1-7afcc807549c",
                        "mode": "markers",
                        "name": "2032",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(221.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "89ae4dd5-fd53-4c74-836f-7601fb29154c",
                        "mode": "markers",
                        "name": "2033",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(228.46153846153848,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "ff84e4c9-7f84-47cf-85a4-07e229db5156",
                        "mode": "markers",
                        "name": "2034",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(235.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "1347a818-0d76-4ef6-a6da-24fedd792f9f",
                        "mode": "markers",
                        "name": "2035",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(242.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "cfbc180b-bfd6-475a-a7a4-5d802fdae830",
                        "mode": "markers",
                        "name": "2036",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(249.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "7fa93e25-dbb5-4bff-a575-053c4231cac5",
                        "mode": "markers",
                        "name": "2037",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(256.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "b12105c3-068d-4285-a62d-d3e55ce75e6f",
                        "mode": "markers",
                        "name": "2038",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(263.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "1de9d116-0e0a-4632-909d-625e36bb5e79",
                        "mode": "markers",
                        "name": "2039",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(270.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "8e30b5d0-6c1d-4bb8-ad28-a80266d80c96",
                        "mode": "markers",
                        "name": "2040",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(276.9230769230769,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "0a43b617-7e30-4ef3-a157-24e8ab4ee1c5",
                        "mode": "markers",
                        "name": "2041",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(283.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "492b4693-2bd8-46f2-b1bb-7c61e15451ab",
                        "mode": "markers",
                        "name": "2042",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(290.7692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "a89117da-5383-426f-9afb-bad599af057e",
                        "mode": "markers",
                        "name": "2043",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(297.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "1da5f242-f41e-434f-83b5-02119583885c",
                        "mode": "markers",
                        "name": "2044",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(304.61538461538464,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "54366b85-bdbb-4274-806e-84c8b769b2c1",
                        "mode": "markers",
                        "name": "2045",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(311.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "34ea9a09-3a50-4f42-bf0f-4e3f5022b2b5",
                        "mode": "markers",
                        "name": "2046",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(318.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "f58b3d3e-9ca5-410a-a922-881f30ee5466",
                        "mode": "markers",
                        "name": "2047",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(325.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "0572ad83-e836-4c68-aaee-1708f9c4bc3c",
                        "mode": "markers",
                        "name": "2048",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(332.3076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "512c7e5d-a280-42d7-88d8-f625603d93c5",
                        "mode": "markers",
                        "name": "2049",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(339.2307692307692,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "2986a9de-0cce-4a29-8dc5-d6ca25c0213c",
                        "mode": "markers",
                        "name": "2050",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(346.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "c9cd2370-d2b5-41a0-9cbd-72f6b4b78aeb",
                        "mode": "markers",
                        "name": "2051",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(353.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    },
                    {
                        "uid": "161235e9-4058-42e2-bd0d-85557466337e",
                        "mode": "markers",
                        "name": "2052",
                        "type": "scatter",
                        "xsrc": "bcowden:19:5204fe",
                        "ysrc": "bcowden:19:f22dfc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(360.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:19:dda273"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Understanding Modes, Lacing Value Relationship"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Lacing Value Left"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "Lacing Value Right"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bcowden",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 20:28:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bcowden",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:53:55.960608Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marques.luancelso/0.embed",
            "fid": "marques.luancelso:0",
            "filename": "3d-scatter-colorscale",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/marques.luancelso:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/marques.luancelso:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/marques.luancelso:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/marques.luancelso:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marques.luancelso:0",
                "plots": "https://api.plotly.com/v2/plots/marques.luancelso:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=marques.luancelso"
            },
            "owner": "marques.luancelso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~marques.luancelso/0/",
            "world_readable": true,
            "date_modified": "2020-01-05T16:28:38.444Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marques.luancelso/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "11351542-73b0-4ce0-84f1-315a1f275acb",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "marques.luancelso:1:74b761",
                        "ysrc": "marques.luancelso:1:a53c1b",
                        "zsrc": "marques.luancelso:1:13e1ff",
                        "marker": {
                            "cmax": 0.5,
                            "cmin": -0.5,
                            "size": 7,
                            "opacity": 0.0,
                            "colorbar": {
                                "len": 0.78,
                                "title": {
                                    "text": "Potencial (mV)"
                                },
                                "thickness": 40
                            },
                            "colorsrc": "marques.luancelso:1:835ab3",
                            "showscale": true,
                            "colorscale": "Reds",
                            "reversescale": false
                        }
                    },
                    {
                        "uid": "64cf90d3-df97-4dc0-9962-083305fc80c6",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "marques.luancelso:1:9dd5b5",
                        "ysrc": "marques.luancelso:1:e2405c",
                        "zsrc": "marques.luancelso:1:8cb6d8",
                        "marker": {
                            "cmax": 0.0,
                            "cmin": -10.0,
                            "size": 8,
                            "opacity": 1.0,
                            "colorsrc": "marques.luancelso:1:835ab3",
                            "showscale": false,
                            "colorscale": "Reds",
                            "reversescale": true
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 15,
                        "color": "#7f7f7f",
                        "family": "Courier New, monospace"
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "t": 0
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~marques.luancelso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 17:42:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marques.luancelso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:53:28.442142Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bcowden/16.embed",
            "fid": "bcowden:16",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bcowden:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bcowden:16/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/bcowden:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bcowden:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bcowden:16",
                "plots": "https://api.plotly.com/v2/plots/bcowden:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=bcowden"
            },
            "owner": "bcowden",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Understanding Modes, Lacing Value Relationship",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bcowden/16/understanding-modes-lacing-value-relationship/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:53:29.191Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bcowden/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1005f74f-5b48-4608-ab08-c18c0fa017e2",
                        "mode": "markers",
                        "name": "2000",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(0.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "8587530a-2515-4108-9010-62b1cfc08a67",
                        "mode": "markers",
                        "name": "2001",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(6.923076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "3f2f7189-4d00-4674-9709-850d11fb9917",
                        "mode": "markers",
                        "name": "2002",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(13.846153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "d0ba8af0-06f1-4ac5-ae27-82bfb483c8c9",
                        "mode": "markers",
                        "name": "2003",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(20.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "25517912-f973-47f0-897c-80843f66a809",
                        "mode": "markers",
                        "name": "2004",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(27.692307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "ab51c80c-ba29-4211-b5db-894f647796e9",
                        "mode": "markers",
                        "name": "2005",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(34.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "d1207afa-d166-4932-9c01-6a023a2a0891",
                        "mode": "markers",
                        "name": "2006",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(41.53846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "38d3208d-d8f4-44cc-aad9-e6ded4dcdb1b",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(48.46153846153847,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "c6a68374-7f09-43e7-b4d7-e909d079ee44",
                        "mode": "markers",
                        "name": "2008",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(55.38461538461539,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "7a98db57-2e4e-41c6-9809-4935c699d9c6",
                        "mode": "markers",
                        "name": "2009",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(62.30769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "ada6c68b-4b4e-4718-ae92-694a241e2cd6",
                        "mode": "markers",
                        "name": "2010",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(69.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "c83f1697-2dc1-478b-84e4-d88c49e82943",
                        "mode": "markers",
                        "name": "2011",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(76.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "f1cec465-9318-437c-af36-5a64f13aaed3",
                        "mode": "markers",
                        "name": "2012",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(83.07692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "7d635bcd-a96a-463c-a168-16221883a890",
                        "mode": "markers",
                        "name": "2013",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(90.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "2107e4d8-8b5c-4f97-af54-3f5dcf27e94f",
                        "mode": "markers",
                        "name": "2014",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(96.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "57800c58-26da-4d28-accc-875d52134d97",
                        "mode": "markers",
                        "name": "2015",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(103.84615384615385,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "d56ec7d2-51fd-40d3-a92b-e4fa80f71631",
                        "mode": "markers",
                        "name": "2016",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(110.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "bc9f5c72-7dc0-451e-8a2d-780ac620a9d0",
                        "mode": "markers",
                        "name": "2017",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(117.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "143e5c6b-2b1e-453b-95f6-9266e9a29055",
                        "mode": "markers",
                        "name": "2018",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(124.61538461538461,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "b2cb2969-8349-4902-b190-f90bcd5bae24",
                        "mode": "markers",
                        "name": "2019",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(131.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "d322b762-a1f4-4de5-bdaf-80aa929f25ee",
                        "mode": "markers",
                        "name": "2020",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(138.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "c408f610-ac88-4095-866d-148553cdb379",
                        "mode": "markers",
                        "name": "2021",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(145.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "3af02069-e22b-4fa7-87e6-cf0148f9418a",
                        "mode": "markers",
                        "name": "2022",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(152.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "8ce28c93-7838-448e-b7b0-75b7b941dcb5",
                        "mode": "markers",
                        "name": "2023",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(159.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "a9cc414e-967a-415e-9a87-c07339f31355",
                        "mode": "markers",
                        "name": "2024",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(166.15384615384616,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "0eeb1c4d-7ecc-4318-9065-55770d929bfe",
                        "mode": "markers",
                        "name": "2025",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(173.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "3d5b9742-a278-40e5-935c-558e83d9cfd0",
                        "mode": "markers",
                        "name": "2026",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(180.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "30c23611-3b9e-4ee5-a6ce-d00fbb6623c0",
                        "mode": "markers",
                        "name": "2027",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(186.92307692307693,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "0e038f3f-8dc3-4a92-8f06-378db7d749e0",
                        "mode": "markers",
                        "name": "2028",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(193.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "01fa6475-017c-4ee2-8de4-fe55e21917a7",
                        "mode": "markers",
                        "name": "2029",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(200.76923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "2f3234da-23b5-49d7-946d-c5887d01c5f0",
                        "mode": "markers",
                        "name": "2030",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(207.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "a612348a-f7c7-45d1-8e48-5a2dad35964f",
                        "mode": "markers",
                        "name": "2031",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(214.6153846153846,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "6980ed15-6958-48f5-944e-42c3c0f7d268",
                        "mode": "markers",
                        "name": "2032",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(221.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "df23c4e0-be71-425c-af7c-1e97539007d5",
                        "mode": "markers",
                        "name": "2033",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(228.46153846153848,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "c3738fd0-1e4a-49ae-b89c-e123b9b2c390",
                        "mode": "markers",
                        "name": "2034",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(235.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "15565925-2f82-4f3a-98c9-7eb7b52bb046",
                        "mode": "markers",
                        "name": "2035",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(242.30769230769232,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "2e82d2a5-c073-4cf9-9885-cd643ce86fe1",
                        "mode": "markers",
                        "name": "2036",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(249.23076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "8ca6f0de-6e95-4596-b03e-6671dca4cc11",
                        "mode": "markers",
                        "name": "2037",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(256.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "27f208a0-591e-4803-9678-9c4b619fbf90",
                        "mode": "markers",
                        "name": "2038",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(263.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "c0888480-b30d-4e68-abd2-18bc4459b135",
                        "mode": "markers",
                        "name": "2039",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(270.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "9c632fe2-e496-4b1c-a0eb-28e50e6d3e1c",
                        "mode": "markers",
                        "name": "2040",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(276.9230769230769,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "193d0d21-8a2f-40bb-a495-437a9007cef4",
                        "mode": "markers",
                        "name": "2041",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(283.84615384615387,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "e55275b7-06fd-4981-a760-59123d6c0403",
                        "mode": "markers",
                        "name": "2042",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(290.7692307692308,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "8d69094c-431f-4764-ad5f-e52d156625e2",
                        "mode": "markers",
                        "name": "2043",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(297.6923076923077,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "07e795d9-dbe4-44f6-b587-25d48f0667a8",
                        "mode": "markers",
                        "name": "2044",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(304.61538461538464,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "bfe0234c-7359-44ae-a367-aef53147e4ea",
                        "mode": "markers",
                        "name": "2045",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(311.53846153846155,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "24555db6-70ba-41a1-b6b5-e9178e225348",
                        "mode": "markers",
                        "name": "2046",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(318.46153846153845,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "f692b96f-bed4-4bb7-a213-05384a5b9e01",
                        "mode": "markers",
                        "name": "2047",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(325.3846153846154,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "334a0741-d275-469b-b30a-096ab7247a9c",
                        "mode": "markers",
                        "name": "2048",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(332.3076923076923,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "a4c30fc2-895f-4046-a7e1-84bf0ca5d727",
                        "mode": "markers",
                        "name": "2049",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(339.2307692307692,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "44791c9c-aa63-407f-9a86-4adcb57f3459",
                        "mode": "markers",
                        "name": "2050",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(346.1538461538462,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "3c06ee1b-ced2-4ae8-97a1-e7481d9ddc70",
                        "mode": "markers",
                        "name": "2051",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(353.0769230769231,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    },
                    {
                        "uid": "8a7df506-8b25-4213-b8cd-b42c6dd2e18f",
                        "mode": "markers",
                        "name": "2052",
                        "type": "scatter",
                        "xsrc": "bcowden:17:ca5636",
                        "ysrc": "bcowden:17:562c5f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 14,
                            "color": "hsl(360.0,50%,50%)",
                            "opacity": 0.3
                        },
                        "textsrc": "bcowden:17:9a1119"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Understanding Modes, Lacing Value Relationship"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Lacing Value Left"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "Lacing Value Right"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bcowden",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 20:28:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bcowden",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:51:29.096715Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67116.embed",
            "fid": "amper:67116",
            "filename": "06-05-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67116/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67116/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67116/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67116/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67116",
                "plots": "https://api.plotly.com/v2/plots/amper:67116",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-05-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67116/_06-05-19-ds-1640-alg-5421-param-1248-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:51:30.577Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67116/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f315d088-85fd-4559-85ea-49f3c7bd22b1",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67117:9fbe61",
                        "ysrc": "amper:67117:6ca1c4",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "6892e942-cb2b-4d5e-b45b-45d3688f4678",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:67117:9fbe61",
                        "ysrc": "amper:67117:ca7bff",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "d341c710-cc11-4194-bd7c-7bd819ea1927",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67117:9fbe61",
                        "ysrc": "amper:67117:8c8945",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "1e533fb2-eed9-4e9c-99ef-cbb388b6d856",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67117:9fbe61",
                        "ysrc": "amper:67117:f47ddb",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-05-19_ds-1640_alg-5421_param-1248_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-06-17T17:50:54.606580Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nprithviraj24/32.embed",
            "fid": "nprithviraj24:32",
            "filename": "plot from API (15)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nprithviraj24:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nprithviraj24:32/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/nprithviraj24:32/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/nprithviraj24:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nprithviraj24:32",
                "plots": "https://api.plotly.com/v2/plots/nprithviraj24:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=nprithviraj24"
            },
            "owner": "nprithviraj24",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nprithviraj24/32/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:50:55.115Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nprithviraj24/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5a4a5c9a-ba44-412a-a15f-df91488ccc1c",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "nprithviraj24:33:014284",
                        "ysrc": "nprithviraj24:33:0b7ce6",
                        "zsrc": "nprithviraj24:33:abcc43"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nprithviraj24",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 14:15:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nprithviraj24",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T17:50:52.892641Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67114.embed",
            "fid": "amper:67114",
            "filename": "06-04-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67114/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67114/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67114/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67114/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67114",
                "plots": "https://api.plotly.com/v2/plots/amper:67114",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-04-19_ds-1640_alg-5421_param-1248_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67114/_06-04-19-ds-1640-alg-5421-param-1248-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:50:54.191Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67114/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f441d6af-6820-4236-949b-151227b139c0",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:67115:b8a5dd",
                        "ysrc": "amper:67115:9a3339",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "8f8b7e9e-ed95-46ef-af42-1aba1b9f9072",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:67115:b8a5dd",
                        "ysrc": "amper:67115:d5fb54",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-04-19_ds-1640_alg-5421_param-1248_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
            }
        }
    ]
}