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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE3JTNBMTklM0EzMy43ODQxNDQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNyUzQTIyJTNBMjcuNjY4Mjg1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T17:22:27.668285Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~neujeffski/3.embed",
            "fid": "neujeffski:3",
            "filename": "Plotly Playground 2019-06-17 19:22:26",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/neujeffski:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/neujeffski:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/neujeffski:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/neujeffski:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/neujeffski:3",
                "plots": "https://api.plotly.com/v2/plots/neujeffski:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=neujeffski"
            },
            "owner": "neujeffski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#151516'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~neujeffski/3/font-color-151516/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:22:28.175Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~neujeffski/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9be4b5b5-296d-4cb5-bf54-51299ad1bb95",
                        "line": {
                            "width": 1.3
                        },
                        "name": "A",
                        "type": "box",
                        "ysrc": "neujeffski:4:47de25",
                        "marker": {
                            "color": "rgba(226, 74, 51, 1.0)"
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "1d714468-854d-4b62-ae57-55c91a9a9c6f",
                        "line": {
                            "width": 1.3
                        },
                        "name": "B",
                        "type": "box",
                        "ysrc": "neujeffski:4:e74771",
                        "marker": {
                            "color": "rgba(62, 111, 176, 1.0)"
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "8d742323-d810-450d-8565-0f602aa5bc8b",
                        "line": {
                            "width": 1.3
                        },
                        "name": "C",
                        "type": "box",
                        "ysrc": "neujeffski:4:a9be08",
                        "marker": {
                            "color": "rgba(132, 118, 202, 1.0)"
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "b7bcd05b-00c3-4129-9c53-3217bd97dce6",
                        "line": {
                            "width": 1.3
                        },
                        "name": "D",
                        "type": "box",
                        "ysrc": "neujeffski:4:2a8793",
                        "marker": {
                            "color": "rgba(101, 101, 101, 1.0)"
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "45b3e054-d324-4aa0-a0eb-372c43a0ffe2",
                        "line": {
                            "width": 1.3
                        },
                        "name": "E",
                        "type": "box",
                        "ysrc": "neujeffski:4:e6fdaf",
                        "marker": {
                            "color": "rgba(251, 193, 94, 1.0)"
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#151516"
                        }
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#666666"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#666666"
                        },
                        "gridcolor": "#F6F6F6",
                        "zerolinecolor": "#F6F6F6"
                    },
                    "legend": {
                        "font": {
                            "color": "#666666"
                        },
                        "bgcolor": "#FFFFFF"
                    },
                    "plot_bgcolor": "#E5E5E5",
                    "paper_bgcolor": "#FFFFFF"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~neujeffski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:57:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "neujeffski",
                "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:22:18.251585Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jazzonline/2.embed",
            "fid": "jazzonline:2",
            "filename": "grouped-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jazzonline:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jazzonline/2/2_BPD9UIPKZZIR6BQOY6BZ46Y5GVLRF4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jazzonline/2/8_G3114D3E341ELWCS44CE6NJHWFVJYY.png",
                "list-thumb": "https://api.plotly.com/v2/files/jazzonline:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jazzonline:2",
                "plots": "https://api.plotly.com/v2/plots/jazzonline:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=jazzonline"
            },
            "owner": "jazzonline",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "female vs male",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jazzonline/2/female-vs-male/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:00:42.667Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jazzonline/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "929e1de3-d693-48b4-82d3-e8119b8ed363",
                        "name": "female",
                        "type": "bar",
                        "xsrc": "jazzonline:3:077087",
                        "ysrc": "jazzonline:3:6fcc92"
                    },
                    {
                        "uid": "ffdde24b-3e18-48fb-8605-e5a785529a24",
                        "name": "male",
                        "type": "bar",
                        "xsrc": "jazzonline:3:077087",
                        "ysrc": "jazzonline:3:ad0834"
                    }
                ],
                "layout": {
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jazzonline",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-17 17:17:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jazzonline",
                "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:21:54.153134Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fkhan/250.embed",
            "fid": "fkhan:250",
            "filename": "Dose Modulation Histogram",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fkhan/250/9_MT3TDLTRMXXLMNSMST523X854E05R0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fkhan/250/2_6YDBYNHLOHVNBYWH12J1P62Q7PK0FN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fkhan/250/8_6SFIPYYA8CX2VYQF9LMR4DQU57ENM4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fkhan/250/9_MT3TDLTRMXXLMNSMST523X854E05R0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fkhan:250",
                "plots": "https://api.plotly.com/v2/plots/fkhan:250",
                "parent": "https://api.plotly.com/v2/folders/home?user=fkhan"
            },
            "owner": "fkhan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Dose Modulation Histogram",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~fkhan/250/dose-modulation-histogram/",
            "world_readable": true,
            "date_modified": "2019-06-19T02:13:16.413Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fkhan/250/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ea4a3ece-5211-466f-89a7-0ecdacdae24f",
                        "name": "Beam Dose_p03",
                        "type": "histogram",
                        "xsrc": "fkhan:251:ca073b",
                        "xbins": {
                            "end": 225.017,
                            "size": 6.081512497297298,
                            "start": 0.0010376
                        },
                        "opacity": 0.75,
                        "histnorm": ""
                    },
                    {
                        "uid": "83dcbb90-b81f-4fee-865d-4fa6d6327bc7",
                        "name": "Beam Dose_p01",
                        "type": "histogram",
                        "xsrc": "fkhan:251:bb3f9c",
                        "xbins": {
                            "end": 227.109,
                            "size": 5.046279373333333,
                            "start": 0.0264282
                        },
                        "opacity": 0.75,
                        "histnorm": ""
                    },
                    {
                        "uid": "eefac963-ca00-490d-950d-e7957cbc71a0",
                        "name": "Beam Dose_p02",
                        "type": "histogram",
                        "xsrc": "fkhan:251:227a08",
                        "xbins": {
                            "end": 232.162,
                            "size": 3.3646578209855074,
                            "start": 0.000610352
                        },
                        "opacity": 0.75,
                        "histnorm": ""
                    },
                    {
                        "uid": "14911254-fbc9-4143-8fb2-824001c4761e",
                        "name": "Total Dose",
                        "type": "histogram",
                        "xsrc": "fkhan:251:25a8f1",
                        "xbins": {
                            "end": 179.442,
                            "size": 2.3610275493421056,
                            "start": 0.00390625
                        },
                        "opacity": 1,
                        "histnorm": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 50,
                            "color": "black",
                            "family": "Times New Roman"
                        },
                        "text": "Dose Modulation Histogram"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.0006103520000109164,
                            232.16200000000026
                        ],
                        "title": {
                            "font": {
                                "size": 35
                            },
                            "text": "Dose Difference Between Neighboring Voxels (cGy)"
                        },
                        "tickfont": {
                            "size": 30,
                            "color": "black",
                            "family": "Times New Roman"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            625.2631578947369
                        ],
                        "title": {
                            "font": {
                                "size": 35
                            },
                            "text": "Number of Occurrences"
                        },
                        "tickfont": {
                            "size": 30,
                            "color": "black",
                            "family": "Times New Roman"
                        },
                        "autorange": true,
                        "rangemode": "tozero",
                        "tickwidth": 1,
                        "automargin": true
                    },
                    "height": 800,
                    "barmode": "overlay",
                    "autosize": true
                }
            },
            "height": 800,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fkhan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-09-25 22:20:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fkhan",
                "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:21:41.071969Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bmtxzg064982/0.embed",
            "fid": "bmtxzg064982:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bmtxzg064982:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bmtxzg064982:0/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bmtxzg064982/0/8_7LVWMPUT39Z6MTSIO6W86LJIYE6RES.png",
                "list-thumb": "https://api.plotly.com/v2/files/bmtxzg064982:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bmtxzg064982:0",
                "plots": "https://api.plotly.com/v2/plots/bmtxzg064982:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=bmtxzg064982"
            },
            "owner": "bmtxzg064982",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Scatterplot Matrix",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~bmtxzg064982/0/scatterplot-matrix/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:21:41.660Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bmtxzg064982/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d3cd3ce6-eb0a-4744-a36e-962b277cc4d9",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "578ee0ee-9ca0-4253-95d6-36a4e2c39a6d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3c6b7119-e867-4fc7-9fb0-8cb2e4dc5a33",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "1b729d8a-5412-47d3-9c63-f07bbe52bc4d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d3788c8c-e097-4c77-8779-1ffa031e7d62",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "9df05b8d-cf80-4f98-97bf-4f837438c579",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "a7dda77b-b18d-4404-97ba-b61896c3b3e5",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:94cacd",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "759b8196-2d05-4f7e-bedd-174ced1ae6f1",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "75ec2238-ea64-4c94-829e-69f0a67a21c6",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3df3ea65-eee3-4eab-b3a1-863fd3bf48e8",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "1988e974-e1a3-44c3-add1-c41593d78b59",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "32da107a-e446-49e1-8f65-f3e353301c73",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "36d04434-eb1d-4b43-96ba-46f6687769c1",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "555bc4c5-afe8-48db-babf-dbd339923494",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:5c423f",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "cc384ba1-fe64-4816-b053-4058e0e1f9ff",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "822a54aa-ea1c-46bd-bbc5-11bb0474862c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "819dcda7-9429-4d9c-ab69-632a3bead697",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x17",
                        "yaxis": "y17",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b7e19277-1960-4347-81c4-e516b1a8fd61",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x18",
                        "yaxis": "y18",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4ce02533-8f0c-4952-9886-b74314d6ace9",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x19",
                        "yaxis": "y19",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "312b8e30-00ea-4502-bb31-e687c437e55d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x20",
                        "yaxis": "y20",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4756fa34-e04e-4591-ab93-46614b14f978",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:f4cc46",
                        "xaxis": "x21",
                        "yaxis": "y21",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "8f4ac908-0123-4e94-8a57-759f958726d0",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x22",
                        "yaxis": "y22",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "756af986-cc0b-442a-ac27-2c9c898e63a5",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x23",
                        "yaxis": "y23",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "32ab84e4-4853-447e-b3e1-3b8173112174",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x24",
                        "yaxis": "y24",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "da39f26c-016f-460d-b324-916fc36d725e",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x25",
                        "yaxis": "y25",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "a85fff35-af8a-4c7f-b452-88ee6ce460ea",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x26",
                        "yaxis": "y26",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d508e36c-ef40-41f1-8c84-85de2a1c753c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x27",
                        "yaxis": "y27",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "df8d2469-6535-44f1-9084-4d6dd5ed51cd",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:dbc789",
                        "xaxis": "x28",
                        "yaxis": "y28",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "14cfe73c-a19d-4641-be83-57bf803884fb",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x29",
                        "yaxis": "y29",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "843ecea4-1416-48d5-abdb-1918b3880ca0",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x30",
                        "yaxis": "y30",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "bda9370c-380f-44df-96a5-211655944d9f",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x31",
                        "yaxis": "y31",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "074d0768-e4d2-430c-840b-bcbbbdd59393",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x32",
                        "yaxis": "y32",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ed6d1eab-9787-4953-9725-86e74b3d2796",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x33",
                        "yaxis": "y33",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c5735b0d-f809-44cd-b188-b810fc13fa11",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x34",
                        "yaxis": "y34",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "941a4644-67d3-47da-bcca-312dbcf827b9",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:82adb3",
                        "xaxis": "x35",
                        "yaxis": "y35",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "8f13d64d-873c-4a59-a5b4-9b09508e1d1a",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x36",
                        "yaxis": "y36",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ad34c616-7243-41e4-bac2-95653acc9a2b",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x37",
                        "yaxis": "y37",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "daa3cc5b-892f-4ffb-a0fd-a4768f15a9f3",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x38",
                        "yaxis": "y38",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3075364a-0eef-4bc2-86c7-297de14cad2f",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x39",
                        "yaxis": "y39",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "5172f176-2fc1-44c6-9afa-4e52b7059ed1",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x40",
                        "yaxis": "y40",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3e270af1-855b-4dd8-890d-148fd12a2663",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x41",
                        "yaxis": "y41",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "2136d1b4-337d-47cb-a225-934fdade0994",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:f3a935",
                        "xaxis": "x42",
                        "yaxis": "y42",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "8f792651-f1f4-425e-b01d-b3b761135da4",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:ec116a",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x43",
                        "yaxis": "y43",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "48861434-5070-47b3-abd6-9ba2fcba618d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:98d5f0",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x44",
                        "yaxis": "y44",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "26a3b07b-c995-44fc-9424-5a6f72989076",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:e4e538",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x45",
                        "yaxis": "y45",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f451d50f-5413-45ab-a111-7ee19328457f",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:972cb3",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x46",
                        "yaxis": "y46",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4a53bff1-cce6-4b13-8bda-39455bb4e77c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:546549",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x47",
                        "yaxis": "y47",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "95ec5b38-67d4-446d-893f-69e0436308b4",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:375150",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x48",
                        "yaxis": "y48",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "29abff7b-e79c-4bdc-aced-14d2b35c900b",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "bmtxzg064982:1:5f5959",
                        "ysrc": "bmtxzg064982:1:9e1eba",
                        "xaxis": "x49",
                        "yaxis": "y49",
                        "marker": {
                            "size": 6
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Scatterplot Matrix"
                    },
                    "width": 200,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "PassengerId"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "height": 200,
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis9": {
                        "anchor": "y9",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.8938775510204082,
                            1.0
                        ]
                    },
                    "yaxis8": {
                        "title": {
                            "text": "Survived"
                        },
                        "anchor": "x8",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis9": {
                        "anchor": "x9",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "xaxis10": {
                        "anchor": "y10",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis11": {
                        "anchor": "y11",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis12": {
                        "anchor": "y12",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis13": {
                        "anchor": "y13",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis14": {
                        "anchor": "y14",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis15": {
                        "anchor": "y15",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis16": {
                        "anchor": "y16",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis17": {
                        "anchor": "y17",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis18": {
                        "anchor": "y18",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis19": {
                        "anchor": "y19",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis20": {
                        "anchor": "y20",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis21": {
                        "anchor": "y21",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis22": {
                        "anchor": "y22",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis23": {
                        "anchor": "y23",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis24": {
                        "anchor": "y24",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis25": {
                        "anchor": "y25",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis26": {
                        "anchor": "y26",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis27": {
                        "anchor": "y27",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis28": {
                        "anchor": "y28",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis29": {
                        "anchor": "y29",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis30": {
                        "anchor": "y30",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis31": {
                        "anchor": "y31",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis32": {
                        "anchor": "y32",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis33": {
                        "anchor": "y33",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis34": {
                        "anchor": "y34",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis35": {
                        "anchor": "y35",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis36": {
                        "anchor": "y36",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis37": {
                        "anchor": "y37",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis38": {
                        "anchor": "y38",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis39": {
                        "anchor": "y39",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis40": {
                        "anchor": "y40",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis41": {
                        "anchor": "y41",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis42": {
                        "anchor": "y42",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "xaxis43": {
                        "title": {
                            "text": "PassengerId"
                        },
                        "anchor": "y43",
                        "domain": [
                            0.0,
                            0.1183673469387755
                        ]
                    },
                    "xaxis44": {
                        "title": {
                            "text": "Survived"
                        },
                        "anchor": "y44",
                        "domain": [
                            0.14693877551020407,
                            0.26530612244897955
                        ]
                    },
                    "xaxis45": {
                        "title": {
                            "text": "Pclass"
                        },
                        "anchor": "y45",
                        "domain": [
                            0.29387755102040813,
                            0.4122448979591836
                        ]
                    },
                    "xaxis46": {
                        "title": {
                            "text": "Age"
                        },
                        "anchor": "y46",
                        "domain": [
                            0.4408163265306122,
                            0.5591836734693877
                        ]
                    },
                    "xaxis47": {
                        "title": {
                            "text": "SibSp"
                        },
                        "anchor": "y47",
                        "domain": [
                            0.5877551020408163,
                            0.7061224489795918
                        ]
                    },
                    "xaxis48": {
                        "title": {
                            "text": "Parch"
                        },
                        "anchor": "y48",
                        "domain": [
                            0.7346938775510204,
                            0.8530612244897959
                        ]
                    },
                    "xaxis49": {
                        "title": {
                            "text": "Fare"
                        },
                        "anchor": "y49",
                        "domain": [
                            0.8816326530612244,
                            0.9999999999999999
                        ]
                    },
                    "yaxis10": {
                        "anchor": "x10",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis11": {
                        "anchor": "x11",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis12": {
                        "anchor": "x12",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis13": {
                        "anchor": "x13",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis14": {
                        "anchor": "x14",
                        "domain": [
                            0.7448979591836735,
                            0.8510204081632654
                        ]
                    },
                    "yaxis15": {
                        "title": {
                            "text": "Pclass"
                        },
                        "anchor": "x15",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis16": {
                        "anchor": "x16",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis17": {
                        "anchor": "x17",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis18": {
                        "anchor": "x18",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis19": {
                        "anchor": "x19",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis20": {
                        "anchor": "x20",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis21": {
                        "anchor": "x21",
                        "domain": [
                            0.5959183673469388,
                            0.7020408163265307
                        ]
                    },
                    "yaxis22": {
                        "title": {
                            "text": "Age"
                        },
                        "anchor": "x22",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis23": {
                        "anchor": "x23",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis24": {
                        "anchor": "x24",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis25": {
                        "anchor": "x25",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis26": {
                        "anchor": "x26",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis27": {
                        "anchor": "x27",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis28": {
                        "anchor": "x28",
                        "domain": [
                            0.4469387755102041,
                            0.553061224489796
                        ]
                    },
                    "yaxis29": {
                        "title": {
                            "text": "SibSp"
                        },
                        "anchor": "x29",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis30": {
                        "anchor": "x30",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis31": {
                        "anchor": "x31",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis32": {
                        "anchor": "x32",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis33": {
                        "anchor": "x33",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis34": {
                        "anchor": "x34",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis35": {
                        "anchor": "x35",
                        "domain": [
                            0.2979591836734694,
                            0.40408163265306124
                        ]
                    },
                    "yaxis36": {
                        "title": {
                            "text": "Parch"
                        },
                        "anchor": "x36",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis37": {
                        "anchor": "x37",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis38": {
                        "anchor": "x38",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis39": {
                        "anchor": "x39",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis40": {
                        "anchor": "x40",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis41": {
                        "anchor": "x41",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis42": {
                        "anchor": "x42",
                        "domain": [
                            0.1489795918367347,
                            0.25510204081632654
                        ]
                    },
                    "yaxis43": {
                        "title": {
                            "text": "Fare"
                        },
                        "anchor": "x43",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis44": {
                        "anchor": "x44",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis45": {
                        "anchor": "x45",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis46": {
                        "anchor": "x46",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis47": {
                        "anchor": "x47",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis48": {
                        "anchor": "x48",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "yaxis49": {
                        "anchor": "x49",
                        "domain": [
                            0.0,
                            0.10612244897959185
                        ]
                    },
                    "showlegend": true
                }
            },
            "height": 200,
            "width": 200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bmtxzg064982",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 17:13:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bmtxzg064982",
                "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:21:33.778289Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cwalton2/3.embed",
            "fid": "cwalton2:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cwalton2:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cwalton2:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/cwalton2:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cwalton2:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cwalton2:3",
                "plots": "https://api.plotly.com/v2/plots/cwalton2:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=cwalton2"
            },
            "owner": "cwalton2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cwalton2/3/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:21:33.793Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cwalton2/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cwalton2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:35:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cwalton2",
                "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:21:27.224649Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jazzonline/0.embed",
            "fid": "jazzonline:0",
            "filename": "basic-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jazzonline:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jazzonline:0/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jazzonline/0/8_O220ATOO63OC2A2AEZGQ19E8S0EU5F.png",
                "list-thumb": "https://api.plotly.com/v2/files/jazzonline:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jazzonline:0",
                "plots": "https://api.plotly.com/v2/plots/jazzonline:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=jazzonline"
            },
            "owner": "jazzonline",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jazzonline/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:21:27.715Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jazzonline/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7344fdb6-8302-40ba-be0d-3439d19d7eb8",
                        "type": "bar",
                        "xsrc": "jazzonline:1:40607a",
                        "ysrc": "jazzonline:1:c9d23f"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jazzonline",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-17 17:17:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jazzonline",
                "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:21:14.458178Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cwalton2/2.embed",
            "fid": "cwalton2:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cwalton2:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cwalton2:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/cwalton2:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cwalton2:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cwalton2:2",
                "plots": "https://api.plotly.com/v2/plots/cwalton2:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=cwalton2"
            },
            "owner": "cwalton2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cwalton2/2/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:21:14.477Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cwalton2/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cwalton2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:35:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cwalton2",
                "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:20:52.520264Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cwalton2/1.embed",
            "fid": "cwalton2:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cwalton2:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cwalton2:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/cwalton2:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cwalton2:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cwalton2:1",
                "plots": "https://api.plotly.com/v2/plots/cwalton2:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cwalton2"
            },
            "owner": "cwalton2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cwalton2/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:20:52.534Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cwalton2/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cwalton2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 16:35:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cwalton2",
                "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:20:22.197322Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/67106.embed",
            "fid": "amper:67106",
            "filename": "06-16-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amper:67106/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amper:67106/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/amper:67106/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/amper:67106/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:67106",
                "plots": "https://api.plotly.com/v2/plots/amper:67106",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "06-16-19_ds-1641_alg-5421_param-1249_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/67106/_06-16-19-ds-1641-alg-5421-param-1249-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:20:23.584Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/67106/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d9045bdc-03cf-4557-bc43-e0adfd9cba94",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:67107:0945d6",
                        "ysrc": "amper:67107:176417",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    }
                ],
                "layout": {
                    "title": "06-16-19_ds-1641_alg-5421_param-1249_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:19:33.784144Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~srt7/34.embed",
            "fid": "srt7:34",
            "filename": "Corrosion1560791969.64209",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/srt7/34/9_1SHTD426KW2PNYQGBTTISRBS86TB62.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/srt7/34/2_DWEHQCJF639UASXLE1DGXCX64UTU4Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/srt7/34/8_Z7DT5BJA014V5OQ3KOXJKSJWT1Z92T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/srt7/34/9_1SHTD426KW2PNYQGBTTISRBS86TB62.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/srt7:34",
                "plots": "https://api.plotly.com/v2/plots/srt7:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=srt7"
            },
            "owner": "srt7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~srt7/34/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:19:33.796Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~srt7/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "mode": "lines",
                        "name": "Corrosion",
                        "type": "scatter",
                        "xsrc": "srt7:33:96bc32",
                        "ysrc": "srt7:33:83e5ae",
                        "fillcolor": "rgba(255, 255, 255, 255)"
                    }
                ],
                "frames": [
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:96bc32",
                                "ysrc": "srt7:33:83e5ae"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:cc742e",
                                "ysrc": "srt7:33:ad69d6"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:b7b07f",
                                "ysrc": "srt7:33:d71a31"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:4611df",
                                "ysrc": "srt7:33:541e29"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:47238b",
                                "ysrc": "srt7:33:1d2504"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:a05db4",
                                "ysrc": "srt7:33:0f8e58"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:d75de3",
                                "ysrc": "srt7:33:ce1dd6"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:ce47d1",
                                "ysrc": "srt7:33:23ef40"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:3998c1",
                                "ysrc": "srt7:33:4448d8"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:124c0d",
                                "ysrc": "srt7:33:680d45"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:65adc7",
                                "ysrc": "srt7:33:461786"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:879d7e",
                                "ysrc": "srt7:33:87817b"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:326c92",
                                "ysrc": "srt7:33:9bb87f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:fd067c",
                                "ysrc": "srt7:33:d96e51"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:4e664d",
                                "ysrc": "srt7:33:49ff4f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:15cc06",
                                "ysrc": "srt7:33:d77d18"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:2d8298",
                                "ysrc": "srt7:33:2f7038"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:d856b9",
                                "ysrc": "srt7:33:2592e1"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:98ba60",
                                "ysrc": "srt7:33:3c0573"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:fc2ce1",
                                "ysrc": "srt7:33:584847"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:ee1d95",
                                "ysrc": "srt7:33:06ad9a"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:a84e2f",
                                "ysrc": "srt7:33:6a3fdf"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:16a7e4",
                                "ysrc": "srt7:33:42af89"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:055111",
                                "ysrc": "srt7:33:5e75eb"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:20317c",
                                "ysrc": "srt7:33:a5836d"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:ddca5d",
                                "ysrc": "srt7:33:401504"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:ea8624",
                                "ysrc": "srt7:33:e6c594"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:81c23a",
                                "ysrc": "srt7:33:70753b"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:869ca2",
                                "ysrc": "srt7:33:34f70f"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    },
                    {
                        "data": [
                            {
                                "xsrc": "srt7:33:f25620",
                                "ysrc": "srt7:33:4c72d7"
                            }
                        ],
                        "traces": [
                            0
                        ]
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Balto"
                    },
                    "title": "Corrosion",
                    "width": 800,
                    "xaxis": {
                        "range": [
                            0,
                            40
                        ],
                        "title": "Age",
                        "mirror": true,
                        "nticks": 12,
                        "ticklen": 4,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            1500
                        ],
                        "title": "Average corrosion hours",
                        "mirror": true,
                        "ticklen": 4,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 400,
                    "autosize": false,
                    "showlegend": false,
                    "updatemenus": "auto"
                }
            },
            "height": 400,
            "width": 800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~srt7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-16 07:53:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "srt7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}