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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAwJTNBNTYlM0E0Ny45Mjk1NzUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMSUzQTA2JTNBMjQuNzkyNjk1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T01:06:24.792695Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~p1089178/14.embed",
            "fid": "p1089178:14",
            "filename": "mpl-multiple-bar",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/p1089178/14/9_VTD8B7C4DR3OGCJ40K1Q1SC4PM3OAF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/p1089178/14/2_0TV2OX9L4XVAK77P9UZD4H97IRMCEI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/p1089178/14/8_X9ISD46OJOCMBB1TWD1ZM3WP5HPCUF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/p1089178/14/9_VTD8B7C4DR3OGCJ40K1Q1SC4PM3OAF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/p1089178:14",
                "plots": "https://api.plotly.com/v2/plots/p1089178:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=p1089178"
            },
            "owner": "p1089178",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~p1089178/14/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:06:25.257Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~p1089178/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a551fc98-55fd-408f-b1f5-6fa3727607c0",
                        "type": "bar",
                        "xsrc": "p1089178:15:2ab847",
                        "ysrc": "p1089178:15:bcb60e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#0000FF"
                        },
                        "opacity": 1,
                        "orientation": "v"
                    },
                    {
                        "uid": "11709d70-4cf2-4dc3-9514-868b1be1d951",
                        "type": "bar",
                        "xsrc": "p1089178:15:d9182e",
                        "ysrc": "p1089178:15:33c961",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#007F00"
                        },
                        "opacity": 1,
                        "orientation": "v"
                    },
                    {
                        "uid": "2a1d2edf-f5da-4e87-b4f7-9ec7cfc89969",
                        "type": "bar",
                        "xsrc": "p1089178:15:b27130",
                        "ysrc": "p1089178:15:f0e53f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "width": 1.0
                            },
                            "color": "#FF0000"
                        },
                        "opacity": 1,
                        "orientation": "v"
                    }
                ],
                "layout": {
                    "width": 640,
                    "xaxis": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "2011-01-03 13:40:48",
                            "2011-01-06 10:19:12"
                        ],
                        "ticks": "inside",
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.0,
                            13.65
                        ],
                        "ticks": "inside",
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 8,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "bargap": 0.8000000000465661,
                    "height": 480,
                    "margin": {
                        "b": 52,
                        "l": 80,
                        "r": 63,
                        "t": 57,
                        "pad": 0
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 480,
            "width": 640,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~p1089178",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-03 00:02:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "p1089178",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T01:04:20.420887Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pkumar7/6.embed",
            "fid": "pkumar7:6",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pkumar7:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pkumar7:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pkumar7:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pkumar7:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pkumar7:6",
                "plots": "https://api.plotly.com/v2/plots/pkumar7:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=pkumar7"
            },
            "owner": "pkumar7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs AESTTime",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~pkumar7/6/observed-vs-aesttime/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:04:21.081Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pkumar7/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "88e49f7d-5191-4aef-9aa1-11b8ae7524d9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:7:5f6403",
                        "ysrc": "pkumar7:7:3d46fd",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "121b8c3f-6067-4b83-b92d-53325ee94cef",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:7:5f6403",
                        "ysrc": "pkumar7:7:3d46fd",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "7f638965-6dc8-4e18-8935-c8f6926c8f34",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:7:5f6403",
                        "ysrc": "pkumar7:7:5654ef",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "8a0cd3f6-220f-437f-a204-cdd5c92ede3a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:7:5f6403",
                        "ysrc": "pkumar7:7:5654ef",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Observed"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8206368513569607,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 288,
                    "margin": {
                        "b": 53,
                        "l": 62,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Trend"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5470912342379738,
                            0.726454382881013
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Seasonal"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.2735456171189869,
                            0.45290876576202616
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Residual"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.17936314864303926
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pkumar7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:47:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pkumar7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T01:02:55.560187Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pkumar7/4.embed",
            "fid": "pkumar7:4",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pkumar7:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pkumar7:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pkumar7:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pkumar7:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pkumar7:4",
                "plots": "https://api.plotly.com/v2/plots/pkumar7:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=pkumar7"
            },
            "owner": "pkumar7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs AESTTime",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~pkumar7/4/observed-vs-aesttime/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:02:56.207Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pkumar7/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7a3516ba-8e04-469e-9c0a-fe3d34c2f1ef",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:5:830dc7",
                        "ysrc": "pkumar7:5:21491f",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "6f6474bf-d09e-4da2-a77c-654952bdb1ca",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:5:830dc7",
                        "ysrc": "pkumar7:5:21491f",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "30d3f7f6-c8ee-4c92-ad60-7a6898893ac7",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:5:830dc7",
                        "ysrc": "pkumar7:5:a7089d",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "78c45b38-0b55-4570-8792-2809dbbdab3f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:5:830dc7",
                        "ysrc": "pkumar7:5:a7089d",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Observed"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8206368513569607,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 288,
                    "margin": {
                        "b": 53,
                        "l": 62,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Trend"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5470912342379738,
                            0.726454382881013
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Seasonal"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.2735456171189869,
                            0.45290876576202616
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Residual"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.17936314864303926
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pkumar7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:47:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pkumar7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T01:01:49.856195Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jbechtel/8.embed",
            "fid": "jbechtel:8",
            "filename": "points_map",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jbechtel/8/9_A44D7LRNNYQQ11IIR41TVWJK9S47AO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jbechtel/8/2_L09KR9750OGIXO6K2YCMOB3WWCYIER.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jbechtel/8/8_VGJQXC5ZZOROXIYKOBPCTGW4GEKB2D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jbechtel/8/9_A44D7LRNNYQQ11IIR41TVWJK9S47AO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jbechtel:8",
                "plots": "https://api.plotly.com/v2/plots/jbechtel:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=jbechtel"
            },
            "owner": "jbechtel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "All Corn Field",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~jbechtel/8/all-corn-field/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:02:40.838Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jbechtel/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9a624684-19f9-46a0-b200-b6b683a07f3d",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "jbechtel:9:b9ed07",
                        "lonsrc": "jbechtel:9:146657",
                        "marker": {
                            "size": 5,
                            "color": "rgb(0,116,217)"
                        },
                        "textsrc": "jbechtel:9:abbece"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "All Corn Field"
                    },
                    "mapbox": {
                        "zoom": 3,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 38,
                            "lon": -94
                        },
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1IjoiamJlY2h0ZWwiLCJhIjoiY2p0OG55b3lhMDA3ZjQ0bzhxNzdoejM1cCJ9.YKsO15wqvTlptNSBN8jyOg"
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jbechtel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 13:26:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jbechtel",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T01:01:00.783571Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shrinivas777/339.embed",
            "fid": "shrinivas777:339",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/339/9_EIVW86XCEEPU93HQDNB3TIU2CMSUYR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/339/2_K68CR25AZLBDS8IJQUTIVZC7JZ7HI3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/339/8_K7CAR7XPVZ99XV1IOBUI97RYYO8P13.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shrinivas777/339/9_EIVW86XCEEPU93HQDNB3TIU2CMSUYR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shrinivas777:339",
                "plots": "https://api.plotly.com/v2/plots/shrinivas777:339",
                "parent": "https://api.plotly.com/v2/folders/home?user=shrinivas777"
            },
            "owner": "shrinivas777",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "embarked=C|sex=female|survived=0.0, embarked=C|sex=female|survived=1.0, embarked=C|sex=male|survived=0.0, embarked=C|sex=male|survived=1.0, embarked=Q|sex=female|survived=0.0, embarked=Q|sex=female|survived=1.0, embarked=Q|sex=male|survived=0.0, embarked=Q|sex=male|survived=1.0, embarked=S|sex=female|survived=0.0, embarked=S|sex=female|survived=1.0, embarked=S|sex=male|survived=0.0, embarked=S|sex=male|survived=1.0",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~shrinivas777/339/embarkedcsexfemalesurvived00-embarkedcsexfemalesurvived10-embarkedcsexmalesurviv/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:01:01.258Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shrinivas777/339/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7aeb8cfd-af43-4e40-801b-f0b6f50399ae",
                        "name": "embarked=C|sex=female|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:2da7c6",
                        "marker": {
                            "color": "rgb(0, 0, 0)"
                        }
                    },
                    {
                        "uid": "677bff6f-5381-4546-b4ba-cda7874a2115",
                        "name": "embarked=C|sex=female|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:5c5523",
                        "marker": {
                            "color": "rgb(0, 0, 256)"
                        }
                    },
                    {
                        "uid": "e7490498-38d3-4f28-8ada-a01c0265c03e",
                        "name": "embarked=C|sex=male|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:6517c2",
                        "marker": {
                            "color": "rgb(0, 256, 0)"
                        }
                    },
                    {
                        "uid": "a2ed08e8-ee0a-4ac1-9224-d93c6d720a37",
                        "name": "embarked=C|sex=male|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:13d81a",
                        "marker": {
                            "color": "rgb(0, 256, 256)"
                        }
                    },
                    {
                        "uid": "e973cff1-877b-4c7b-bdd6-1738633e8349",
                        "name": "embarked=Q|sex=female|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:4f8f19",
                        "marker": {
                            "color": "rgb(128, 0, 0)"
                        }
                    },
                    {
                        "uid": "d10d81c1-f24d-4d3e-a2a1-211a802336c4",
                        "name": "embarked=Q|sex=female|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:7c9ccb",
                        "marker": {
                            "color": "rgb(128, 0, 256)"
                        }
                    },
                    {
                        "uid": "78ffb646-ec62-4f1f-9652-38b33189adbd",
                        "name": "embarked=Q|sex=male|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:e9a5d6",
                        "marker": {
                            "color": "rgb(128, 256, 0)"
                        }
                    },
                    {
                        "uid": "cc495c16-3f41-4331-8b09-c1ee23888db7",
                        "name": "embarked=Q|sex=male|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:f95442",
                        "marker": {
                            "color": "rgb(128, 256, 256)"
                        }
                    },
                    {
                        "uid": "5e9387ea-9e14-4ace-8cc0-2b5240a5e390",
                        "name": "embarked=S|sex=female|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:c505f6",
                        "marker": {
                            "color": "rgb(256, 0, 0)"
                        }
                    },
                    {
                        "uid": "c91aa654-87c5-48cf-865f-931df725d1bf",
                        "name": "embarked=S|sex=female|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:5c75e7",
                        "marker": {
                            "color": "rgb(256, 0, 256)"
                        }
                    },
                    {
                        "uid": "04b149c9-c9f7-46dc-8ad3-96120d4c7dbd",
                        "name": "embarked=S|sex=male|survived=0.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:25ee75",
                        "marker": {
                            "color": "rgb(256, 256, 0)"
                        }
                    },
                    {
                        "uid": "8f818f22-16a1-46c0-b47e-df2cf67881b9",
                        "name": "embarked=S|sex=male|survived=1.0",
                        "type": "box",
                        "ysrc": "shrinivas777:340:0136f4",
                        "marker": {
                            "color": "rgb(254, 0, 255)"
                        }
                    }
                ],
                "layout": {
                    "legend": {
                        "orientation": "h"
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shrinivas777",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 22:29:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shrinivas777",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:59:39.135675Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pkumar7/2.embed",
            "fid": "pkumar7:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pkumar7:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pkumar7:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pkumar7:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pkumar7:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pkumar7:2",
                "plots": "https://api.plotly.com/v2/plots/pkumar7:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=pkumar7"
            },
            "owner": "pkumar7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs AESTTime",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~pkumar7/2/observed-vs-aesttime/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:59:39.839Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pkumar7/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3f80a08c-8087-45fd-ad25-e89fafef4ba2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:3:fc5626",
                        "ysrc": "pkumar7:3:d272f9",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "5b3162ae-39f0-4db4-9fb4-30d242491906",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:3:fc5626",
                        "ysrc": "pkumar7:3:d272f9",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "8472712f-2468-48b5-830b-b78d60bda5a7",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:3:fc5626",
                        "ysrc": "pkumar7:3:c72114",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "0e22d909-96a9-4ab5-bde4-19e60db036de",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:3:fc5626",
                        "ysrc": "pkumar7:3:c72114",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Observed"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8206368513569607,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 288,
                    "margin": {
                        "b": 53,
                        "l": 62,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Trend"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5470912342379738,
                            0.726454382881013
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Seasonal"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.2735456171189869,
                            0.45290876576202616
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.05500000000000001,
                            0.05500000000000001
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Residual"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.17936314864303926
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pkumar7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:47:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pkumar7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:58:35.607023Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~CalebJClark00/1.embed",
            "fid": "CalebJClark00:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/CalebJClark00/1/9_U2KKJDMWT228SZTQ3IBKIL8WUGWUSB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/CalebJClark00/1/2_BPZE1XCU7W8S3MOK0W7SXB43AHXF1M.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/CalebJClark00/1/8_PSS6OYWU3TUE4OBAR14AK4QGEXE5TF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/CalebJClark00/1/9_U2KKJDMWT228SZTQ3IBKIL8WUGWUSB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/CalebJClark00:1",
                "plots": "https://api.plotly.com/v2/plots/CalebJClark00:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=CalebJClark00"
            },
            "owner": "CalebJClark00",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~CalebJClark00/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:13:53.582Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~CalebJClark00/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5d06b7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "CalebJClark00:0:935121",
                        "ysrc": "CalebJClark00:0:05fb0e",
                        "selectedpoints": []
                    },
                    {
                        "uid": "4f07bf",
                        "transforms": [
                            {
                                "rms": 1.1108748737794372,
                                "type": "fit",
                                "xmid": 7.400000000000005,
                                "ymid": 7.526189129955418,
                                "inputUid": "5d06b7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.006085432668894345,
                                        "value": 0.27057959973530465
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.03152452023871482,
                                        "value": 3.9672346258431648
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.9431505809313286,
                                "fitfunction": "m*x + b",
                                "inputxrange": [
                                    0.1,
                                    8
                                ],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ],
                        "selectedpoints": []
                    },
                    {
                        "uid": "523407",
                        "transforms": [
                            {
                                "rms": 1.7763568394002505e-15,
                                "type": "fit",
                                "xmid": 7.400000000000005,
                                "ymid": 2.0811111111111344,
                                "inputUid": "5d06b7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 5.5825509642009255e-15,
                                        "value": 2.8222222222222175
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 5.486294386438788e-14,
                                        "value": -18.80333333333329
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 1,
                                "fitfunction": "m*x + b",
                                "inputxrange": [
                                    9.5,
                                    10.5
                                ],
                                "outputxrange": [
                                    8,
                                    12
                                ],
                                "interpolation": 50
                            }
                        ],
                        "selectedpoints": []
                    },
                    {
                        "uid": "22422c",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "5d06b7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.02384844115974563,
                                        "value": 0.1359404662467054
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.31304769634774066,
                                        "value": 10.458646062720424
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [
                                    11.5,
                                    14.5
                                ],
                                "outputxrange": [
                                    9,
                                    15
                                ],
                                "interpolation": 50
                            }
                        ],
                        "selectedpoints": []
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.28,
                        "text": "Titration of an unknown weak acid with a strong base"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            14.999999999999961
                        ],
                        "title": {
                            "text": "mL NaOH"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            3.005370370370371,
                            15.697962962962958
                        ],
                        "title": {
                            "text": "pH"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~CalebJClark00",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:58:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "CalebJClark00",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:57:57.761679Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pkumar7/0.embed",
            "fid": "pkumar7:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pkumar7:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pkumar7:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pkumar7:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pkumar7:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pkumar7:0",
                "plots": "https://api.plotly.com/v2/plots/pkumar7:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=pkumar7"
            },
            "owner": "pkumar7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs AESTTime",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~pkumar7/0/observed-vs-aesttime/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:57:58.644Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pkumar7/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5e6bce9c-d4e4-4ccb-a8fb-34140dd281b9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:1:df87ce",
                        "ysrc": "pkumar7:1:9d707e",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "91ae8395-04ba-4820-9553-9e9109ca588a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:1:df87ce",
                        "ysrc": "pkumar7:1:9d707e",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "57731407-5dbd-4383-99db-fbfce7af8614",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:1:df87ce",
                        "ysrc": "pkumar7:1:41403a",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "2d36600e-5178-4056-b06f-1a2ba327a4bf",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "pkumar7:1:df87ce",
                        "ysrc": "pkumar7:1:41403a",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Observed"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8206368513569607,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 288,
                    "margin": {
                        "b": 53,
                        "l": 54,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            25087321.5,
                            25665448.5
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "AESTTime"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 15,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.974,
                            635.746
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Trend"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5470912342379738,
                            0.726454382881013
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.945,
                            1.0550000000000002
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Seasonal"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.2735456171189869,
                            0.45290876576202616
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.945,
                            1.0550000000000002
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Residual"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.17936314864303926
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pkumar7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:47:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pkumar7",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:57:29.016853Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sytelus/1.embed",
            "fid": "sytelus:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sytelus/1/9_ZVONOXAWNCZ5C7TMVLGZNWCKB0K73C.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sytelus/1/2_FRQ9LWRHP4RD7EGKOT8DPS4YCD0ZQE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sytelus/1/8_L8W5YQ7UICD41URHBHWCTXXPQ4UGJH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sytelus/1/9_ZVONOXAWNCZ5C7TMVLGZNWCKB0K73C.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sytelus:1",
                "plots": "https://api.plotly.com/v2/plots/sytelus:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sytelus"
            },
            "owner": "sytelus",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~sytelus/1/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:57:29.031Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sytelus/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "04017458-4b64-11e9-9407-5065f32d5635",
                        "line": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "mode": "markers+text",
                        "type": "scatter3d",
                        "xsrc": "sytelus:0:d0535a",
                        "ysrc": "sytelus:0:6e0caf",
                        "zsrc": "sytelus:0:3677ad",
                        "marker": {
                            "cmax": 9,
                            "cmin": 0,
                            "size": 6,
                            "cauto": true,
                            "opacity": 0.8,
                            "colorsrc": "sytelus:0:a48246",
                            "showscale": false,
                            "colorscale": "Jet"
                        },
                        "textsrc": "sytelus:0:b2e835",
                        "hoverinfo": "text"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "zaxis": {
                            "type": "linear",
                            "ticks": "inside",
                            "showgrid": true,
                            "showline": true,
                            "showticklabels": true
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 0.14879393733565893,
                                "y": 0.048981606535323303,
                                "z": 0.10948337991092601
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.9787264039647416,
                            "y": 1.0671265621681056,
                            "z": 0.9574646861186673
                        }
                    },
                    "xaxis": {
                        "ticks": "inside",
                        "showgrid": true,
                        "showline": true,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "color": "rgb(31, 119, 180)"
                            }
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "linecolor": "rgb(31, 119, 180)",
                        "showticklabels": true
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "showlegend": false,
                    "hoverdistance": 1
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sytelus",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 00:56:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sytelus",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:56:47.929575Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~valenvb/26.embed",
            "fid": "valenvb:26",
            "filename": "HIGH_BET",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/valenvb/26/9_BC9KZJ9CTGTHC7T0EPDK29LALPFN78.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/valenvb/26/2_KTHSBK9OX8YNWQUWT05H3TOPO3PEN0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/26/8_I7LJPKW36T0VSWEATACTJ028XWMKJV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/valenvb/26/9_BC9KZJ9CTGTHC7T0EPDK29LALPFN78.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/valenvb:26",
                "plots": "https://api.plotly.com/v2/plots/valenvb:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=valenvb"
            },
            "owner": "valenvb",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "HIGH_BET",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~valenvb/26/high-bet/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:56:48.393Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~valenvb/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "HIGH_BET",
                        "type": "scatter",
                        "xsrc": "valenvb:27:b1b1ba",
                        "ysrc": "valenvb:27:521415"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~valenvb",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.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-03-19 16:15:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "valenvb",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}