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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIwJTNBMDAlM0E1Ny4xMTA5MjYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMCUzQTEwJTNBMjMuMzg1NzQwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T20:10:23.385740Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hpm7/20.embed",
            "fid": "hpm7:20",
            "filename": "r-y_std",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hpm7/20/9_ERJ82JZBQBR78EJJ51N7A92WEHR7RY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hpm7/20/2_93FY73JJ1BTJ8RX1LZP55EVF9E21JN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hpm7/20/8_T4ZM0BCHWL2UPOKQESX7CXEPQGXC72.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hpm7/20/9_ERJ82JZBQBR78EJJ51N7A92WEHR7RY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hpm7:20",
                "plots": "https://api.plotly.com/v2/plots/hpm7:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=hpm7"
            },
            "owner": "hpm7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hpm7/20/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:19:24.293Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hpm7/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "hpm7:19:2da13b",
                        "ysrc": "hpm7:19:0a333c",
                        "zsrc": "hpm7:19:0c1d52",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgba(31,119,180,1)",
                            "fillcolor": "rgba(31,119,180,1)"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": "Gestational Age"
                        },
                        "yaxis": {
                            "title": "Birth Weight"
                        },
                        "zaxis": {
                            "title": "y_std"
                        }
                    },
                    "xaxis": {
                        "type": "category",
                        "domain": [
                            0,
                            1
                        ],
                        "categoryorder": "array",
                        "categoryarraysrc": "hpm7:19:e410d8"
                    },
                    "yaxis": {
                        "type": "category",
                        "domain": [
                            0,
                            1
                        ],
                        "categoryorder": "array",
                        "categoryarraysrc": "hpm7:19:5821d1"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hpm7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.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-05 07:41:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hpm7",
                "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-20T20:10:05.737099Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mccountystat/23.embed",
            "fid": "mccountystat:23",
            "filename": "% MFD",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mccountystat/23/9_YQFQC7EKYWTN54VSHZX8GFPC0R9T6X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mccountystat/23/2_GB5QA0LSHG98ANG8YJX4RLJ1XC5QW0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/23/8_5FKWKERX6IDVON94MY17SSG5OS1OC9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mccountystat/23/9_YQFQC7EKYWTN54VSHZX8GFPC0R9T6X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mccountystat:23",
                "plots": "https://api.plotly.com/v2/plots/mccountystat:23",
                "parent": "https://api.plotly.com/v2/folders/mccountystat:7"
            },
            "owner": "mccountystat",
            "parent": 7,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 815,
            "web_url": "https://chart-studio.plotly.com/~mccountystat/23/",
            "world_readable": true,
            "date_modified": "2019-08-06T14:12:42.286Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mccountystat/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 3
                        },
                        "mode": "markers+lines",
                        "name": "% of County Contract Dollars",
                        "type": "scatter",
                        "xsrc": "mccountystat:18:282005",
                        "ysrc": "mccountystat:18:624b49",
                        "marker": {
                            "size": 7
                        },
                        "visible": true,
                        "transforms": [
                            {
                                "type": "filter",
                                "value": "Minority, female, disabled (MFD)",
                                "targetsrc": "mccountystat:18:5109c4"
                            },
                            {
                                "type": "filter",
                                "value": [
                                    "2012",
                                    "2017"
                                ],
                                "operation": "[]",
                                "targetsrc": "mccountystat:18:282005"
                            }
                        ],
                        "connectgaps": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "color": "rgb(0, 0, 0)",
                        "family": "Overpass"
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 14
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2011.7070950676832,
                            2017.2929049323168
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "family": "Roboto"
                            },
                            "text": "<b>Year</b>"
                        },
                        "nticks": 7,
                        "ticklen": -1,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 17,
                            "color": "rgb(92, 94, 105)",
                            "family": "Roboto"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": -1,
                        "tickformat": "",
                        "showexponent": "none",
                        "separatethousands": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            51.178061532274285
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "family": "Roboto"
                            },
                            "text": "<b>% of County Contracts ($)</b>"
                        },
                        "nticks": -1,
                        "ticklen": -1,
                        "tickfont": {
                            "size": 17,
                            "color": "rgb(66, 68, 71)",
                            "family": "Roboto"
                        },
                        "autorange": false,
                        "tickwidth": -1,
                        "fixedrange": true,
                        "ticksuffix": "%"
                    },
                    "legend": {
                        "x": 0.7597387803904176,
                        "y": 0.2454127356749495,
                        "font": {
                            "size": 16,
                            "family": "Roboto"
                        },
                        "xanchor": "auto",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 20,
                        "t": 20
                    },
                    "autosize": true,
                    "colorway": [
                        "#3366cc",
                        "#dc3912",
                        "#ff9900",
                        "#109618",
                        "#990099",
                        "#0099c6",
                        "#dd4477",
                        "#66aa00",
                        "#b82e2e",
                        "#316395"
                    ],
                    "dragmode": "orbit",
                    "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+select",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#0508b8"
                            ],
                            [
                                0.08333333333333333,
                                "#1910d8"
                            ],
                            [
                                0.16666666666666666,
                                "#3c19f0"
                            ],
                            [
                                0.25,
                                "#6b1cfb"
                            ],
                            [
                                0.3333333333333333,
                                "#981cfd"
                            ],
                            [
                                0.4166666666666667,
                                "#bf1cfd"
                            ],
                            [
                                0.5,
                                "#dd2bfd"
                            ],
                            [
                                0.5833333333333334,
                                "#f246fe"
                            ],
                            [
                                0.6666666666666666,
                                "#fc67fd"
                            ],
                            [
                                0.75,
                                "#fe88fc"
                            ],
                            [
                                0.8333333333333334,
                                "#fea5fd"
                            ],
                            [
                                0.9166666666666666,
                                "#febefe"
                            ],
                            [
                                1,
                                "#fec3fe"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 11,
                            "color": "#000",
                            "family": "Roboto"
                        },
                        "bgcolor": "#FFF"
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mccountystat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-06-15 16:16:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mccountystat",
                "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-20T20:09:52.038131Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hpm7/18.embed",
            "fid": "hpm7:18",
            "filename": "r-std_err",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hpm7/18/9_INQ7IGGN8VJW9BNSU4KWYXOJTKF9WW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hpm7/18/2_EM4MV8XP1YS7PTR3GRGO5NCUVJN8M1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hpm7/18/8_3JZWL9S2NGRDYUAGX2VGQMHG04WKQY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hpm7/18/9_INQ7IGGN8VJW9BNSU4KWYXOJTKF9WW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hpm7:18",
                "plots": "https://api.plotly.com/v2/plots/hpm7:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=hpm7"
            },
            "owner": "hpm7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hpm7/18/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:09:52.055Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hpm7/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "hpm7:17:b2975a",
                        "ysrc": "hpm7:17:42699f",
                        "zsrc": "hpm7:17:f178e8",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgba(31,119,180,1)",
                            "fillcolor": "rgba(31,119,180,1)"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": "Weight"
                        },
                        "yaxis": {
                            "title": "Gross horsepower"
                        },
                        "zaxis": {
                            "title": "1/4 mile time"
                        }
                    },
                    "xaxis": {
                        "type": "category",
                        "domain": [
                            0,
                            1
                        ],
                        "categoryorder": "array",
                        "categoryarraysrc": "hpm7:17:0fa41c"
                    },
                    "yaxis": {
                        "type": "category",
                        "domain": [
                            0,
                            1
                        ],
                        "categoryorder": "array",
                        "categoryarraysrc": "hpm7:17:9a3013"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hpm7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.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-05 07:41:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hpm7",
                "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-20T20:09:36.035819Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cmehta/1.embed",
            "fid": "cmehta:1",
            "filename": "concentric circles digits",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cmehta/1/9_8L32L9U44A7P5XINLORF2QVHWZP5D8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cmehta/1/2_S8ALZQM1LD03U649DFU9KPY33BK09S.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cmehta/1/8_KAG47DOC849Z3E6AWWTRZC29EGJ4M1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cmehta/1/9_8L32L9U44A7P5XINLORF2QVHWZP5D8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cmehta:1",
                "plots": "https://api.plotly.com/v2/plots/cmehta:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cmehta"
            },
            "owner": "cmehta",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cmehta/1/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:13:47.414Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cmehta/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "contour",
                        "xsrc": "cmehta:3:0ccd18,15162d,f3eb0c,907658,a7ee94,db7440,f38b08,5f81d3,ecc5b1,0ddc9b,8398e5,d481cc,bc5356,0a4dac,4f9a44,d513da,f31956,182cc6,934a29,009b2d*",
                        "ysrc": "cmehta:3:0ccd18,15162d,f3eb0c,907658,a7ee94,db7440,f38b08,5f81d3,ecc5b1,0ddc9b,8398e5,d481cc,bc5356,0a4dac,4f9a44,d513da,f31956,182cc6,934a29,009b2d*",
                        "zsrc": "cmehta:3:0ccd18,15162d,f3eb0c,907658,a7ee94,db7440,f38b08,5f81d3,ecc5b1,0ddc9b,8398e5,d481cc,bc5356,0a4dac,4f9a44,d513da,f31956,182cc6,934a29,009b2d",
                        "contours": {
                            "end": 6.5,
                            "size": 0.5,
                            "start": 0.5
                        },
                        "autocontour": true,
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            0,
                            18
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "multicategory",
                        "range": [
                            0,
                            14
                        ],
                        "autorange": false
                    },
                    "autosize": true,
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cmehta",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 20:00:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cmehta",
                "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-20T20:09:07.893415Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/24.embed",
            "fid": "i.f.student:24",
            "filename": "life-expectancy-per-GDP-2007",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/24/9_I7B90MHOUIJUWXPKAI9LMYXPMQ07FZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/24/2_T8SQDR5NHI8H8X7M3ZOAOU50SPUSAH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/24/8_EMKIBFAWSY0LJIV94I7TDIQBCJGEKS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/24/9_I7B90MHOUIJUWXPKAI9LMYXPMQ07FZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:24",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Criticality versus Vulnerability for all Modes of Transport by road segment",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/24/criticality-versus-vulnerability-for-all-modes-of-transport-by-road-segment/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:15:34.079Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~i.f.student/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "578f5fe7-86c4-48d9-a71c-e9aec7e9b2d1",
                        "mode": "markers",
                        "name": "Heavy Truck",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 0.07205231037489102,
                            "sizesrc": "i.f.student:25:aed7fc",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "63b04fe0-06a5-4827-9f67-f2f40b8457f4",
                        "mode": "markers",
                        "name": "Medium Truck",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 29.877900000069626,
                            "sizesrc": "i.f.student:25:891b55",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "75b8da20-ef44-4611-905e-7b9242ad7c46",
                        "mode": "markers",
                        "name": "Small Truck",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 33.692100000078526,
                            "sizesrc": "i.f.student:25:6bbda6",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "6e80ef33-01c1-45da-88d5-906f03855a47",
                        "mode": "markers",
                        "name": "Large Bus",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 0.7549158864159633,
                            "sizesrc": "i.f.student:25:2a3c3e",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "af7292a2-186a-4344-8c2f-6602d279bdbf",
                        "mode": "markers",
                        "name": "Medium Bus",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 0.25632099496594585,
                            "sizesrc": "i.f.student:25:79349b",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "a4bff005-a6a8-43a2-b3c1-cbb74ee3882c",
                        "mode": "markers",
                        "name": "Micro Bus",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 29.242200000068156,
                            "sizesrc": "i.f.student:25:1ae67e",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "586fbfac-ac64-4fe3-bd99-2a535ea4cf59",
                        "mode": "markers",
                        "name": "Utility",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 12.07830000002815,
                            "sizesrc": "i.f.student:25:10ee12",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "4c69cec2-3a00-43b2-9c53-545e5648d6f1",
                        "mode": "markers",
                        "name": "Car",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 26.063700000060745,
                            "sizesrc": "i.f.student:25:ab773f",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "8b220f4c-354f-4267-af47-641824c73dee",
                        "mode": "markers",
                        "name": "Auto Rickshaw",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 617.2647000014387,
                            "sizesrc": "i.f.student:25:eb931c",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "5d1e1254-df94-4b77-a94a-36e1c5c41cd3",
                        "mode": "markers",
                        "name": "Motor Cycle",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 482.49630000112467,
                            "sizesrc": "i.f.student:25:fb4700",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "82d34d52-6294-460d-94c0-8dc16aa0db1d",
                        "mode": "markers",
                        "name": "Bi-Cycle",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 364.89180000085037,
                            "sizesrc": "i.f.student:25:6b2c8c",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "0865983e-60d7-4161-9432-3dbd17671121",
                        "mode": "markers",
                        "name": "Cycle Rickshaw",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 480.5892000011201,
                            "sizesrc": "i.f.student:25:477974",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "3305af0f-ca7d-4955-9d44-1840fd3000e5",
                        "mode": "markers",
                        "name": "Cart",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 3.1785000000074084,
                            "sizesrc": "i.f.student:25:a39d3e",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "c5659ed0-0855-4810-a43f-4a9090f977ae",
                        "mode": "markers",
                        "name": "Motorized Total",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 1230.7152000028682,
                            "sizesrc": "i.f.student:25:95ce76",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "cbf26636-092d-4cc0-96a8-144bd9630290",
                        "mode": "markers",
                        "name": "Non Motorized Total",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 848.6595000019779,
                            "sizesrc": "i.f.student:25:0f4c36",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    },
                    {
                        "uid": "1f20b913-bacb-49c3-9c45-9938cc0cff2a",
                        "mode": "markers",
                        "name": "Total_Traffic",
                        "type": "scatter",
                        "xsrc": "i.f.student:25:c24551",
                        "ysrc": "i.f.student:25:f45238",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "symbol": "circle",
                            "sizeref": 2079.3747000048465,
                            "sizesrc": "i.f.student:25:8a636b",
                            "sizemode": "area"
                        },
                        "textsrc": "i.f.student:25:3aa8f2"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Criticality versus Vulnerability for all Modes of Transport by road segment"
                    },
                    "xaxis": {
                        "range": [
                            0,
                            1
                        ],
                        "title": {
                            "text": "Criticality"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "range": [
                            0,
                            1
                        ],
                        "title": {
                            "text": "Vulnerability"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 1.12,
                            "y": 1.05,
                            "text": "Modes of transport",
                            "xref": "paper",
                            "yref": "paper",
                            "align": "right",
                            "valign": "top",
                            "xanchor": "center",
                            "yanchor": "top",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(243, 243, 243)",
                    "paper_bgcolor": "rgb(243, 243, 243)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~i.f.student",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 16:46:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "i.f.student",
                "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-20T20:04:43.520523Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dracco25/0.embed",
            "fid": "dracco25:0",
            "filename": "gantt-group-tasks-together",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dracco25/0/9_DWU8CLL3D2V97GZ827J1FYCG55SLQ6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dracco25/0/2_4NBZYEW3MQMML0345Q9FXJ86F4NYR5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dracco25/0/8_T7DPRDX7N1LALA1DL5HEMB08ZTV4S5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dracco25/0/9_DWU8CLL3D2V97GZ827J1FYCG55SLQ6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dracco25:0",
                "plots": "https://api.plotly.com/v2/plots/dracco25:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=dracco25"
            },
            "owner": "dracco25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Gantt Chart",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~dracco25/0/gantt-chart/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:36:55.107Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dracco25/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "41e23b6f-2c8e-4425-a4da-cc01aba28cde",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:c953b9",
                        "ysrc": "dracco25:1:4cc165",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "385b26c8-d58c-4b5a-80a6-0a15713f4921",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:f6f50c",
                        "ysrc": "dracco25:1:8b487a",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b1973955-076f-44d7-9770-22c6e2a521c1",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:2b9b83",
                        "ysrc": "dracco25:1:093360",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "afcf565c-f5f9-4e7d-a771-a1e745295526",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:b16f10",
                        "ysrc": "dracco25:1:191a79",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "999196e5-c6d0-4f25-8c22-d330e3d1a8dc",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:23e8ce",
                        "ysrc": "dracco25:1:36e83d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d9d89b41-a748-4e1a-bb0d-2fc4058dda18",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:a8648d",
                        "ysrc": "dracco25:1:16882d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "6528a411-03c6-4279-88cb-4db438afc02a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "dracco25:1:9e98c3",
                        "ysrc": "dracco25:1:5b5857",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d35d6cd7-c968-4ad4-9946-77f0e9baf437",
                        "name": "Critical",
                        "type": "scatter",
                        "xsrc": "dracco25:1:cd958b",
                        "ysrc": "dracco25:1:5b5857",
                        "marker": {
                            "size": 1,
                            "color": "rgb(0, 255, 100)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "5999a669-e9a6-45f1-abd0-399125bbf509",
                        "name": "NotCritical",
                        "type": "scatter",
                        "xsrc": "dracco25:1:cd958b",
                        "ysrc": "dracco25:1:16882d",
                        "marker": {
                            "size": 1,
                            "color": "rgb(220, 0, 0)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Gantt Chart"
                    },
                    "width": 900,
                    "xaxis": {
                        "type": "date",
                        "showgrid": false,
                        "zeroline": false,
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "day",
                                    "count": 7,
                                    "label": "1w",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            8
                        ],
                        "showgrid": false,
                        "ticktext": [
                            "G",
                            "F",
                            "E",
                            "D",
                            "C",
                            "B",
                            "A"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 600,
                    "shapes": [
                        {
                            "x0": "2019-03-20",
                            "x1": "2019-03-24",
                            "y0": 5.8,
                            "y1": 6.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(220, 0, 0)"
                        },
                        {
                            "x0": "2019-03-20",
                            "x1": "2019-03-26",
                            "y0": 4.8,
                            "y1": 5.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2019-03-26",
                            "x1": "2019-03-30",
                            "y0": 3.8,
                            "y1": 4.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2019-03-24",
                            "x1": "2019-04-05",
                            "y0": 2.8,
                            "y1": 3.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(220, 0, 0)"
                        },
                        {
                            "x0": "2019-03-30",
                            "x1": "2019-04-06",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2019-03-26",
                            "x1": "2019-04-04",
                            "y0": 0.8,
                            "y1": 1.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(220, 0, 0)"
                        },
                        {
                            "x0": "2019-04-06",
                            "x1": "2019-04-11",
                            "y0": -0.2,
                            "y1": 0.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dracco25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.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-20 20:00:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dracco25",
                "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-20T20:03:41.621925Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iarbel/0.embed",
            "fid": "iarbel:0",
            "filename": "simple-3d-scatter",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iarbel/0/9_5YJO6I3YLL5NTMTHDS8SRLQCIDDRU3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iarbel/0/2_T38NUHM9B8Z7KOH21RXY1A8NZVXWWY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iarbel/0/8_J4UH39BIXHJO42DQMN0U8JRCK5J9H3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iarbel/0/9_5YJO6I3YLL5NTMTHDS8SRLQCIDDRU3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iarbel:0",
                "plots": "https://api.plotly.com/v2/plots/iarbel:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=iarbel"
            },
            "owner": "iarbel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~iarbel/0/",
            "world_readable": true,
            "date_modified": "2019-03-21T13:47:35.544Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iarbel/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "799486d2-4c84-4816-8fee-c647f10a90d4",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "iarbel:1:29a5be",
                        "ysrc": "iarbel:1:044f03",
                        "zsrc": "iarbel:1:a9f87d",
                        "marker": {
                            "line": {
                                "color": "rgba(217, 217, 217, 0.14)",
                                "width": 0.5
                            },
                            "size": 5,
                            "opacity": 0.8,
                            "colorsrc": "iarbel:1:e6d495"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "zaxis": {
                            "range": [
                                -2,
                                2
                            ]
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iarbel",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-01-03 13:27:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iarbel",
                "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-20T20:02:44.992135Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~domludera/19.embed",
            "fid": "domludera:19",
            "filename": "Timmies vs Starbucks",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/domludera/19/9_9Z7GZZ6OJPERS0WV2LVD060DZ4VNZA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/domludera/19/2_34Q4IVPHFOAQIW2AB38CFG0I11PR3F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/domludera/19/8_1NGHOLBIU4EWJFA8ROCC0VH325YL24.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/domludera/19/9_9Z7GZZ6OJPERS0WV2LVD060DZ4VNZA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/domludera:19",
                "plots": "https://api.plotly.com/v2/plots/domludera:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=domludera"
            },
            "owner": "domludera",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~domludera/19/",
            "world_readable": true,
            "date_modified": "2019-03-29T19:04:28.925Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~domludera/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "35eeab43-865a-481c-9e12-5d2cd7b348d9",
                        "type": "table",
                        "cells": {
                            "valuessrc": "domludera:20:-f3a448"
                        },
                        "header": {
                            "valuessrc": "domludera:20:f3a448"
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~domludera",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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": "2018-07-29 21:03:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "domludera",
                "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-20T20:01:58.239694Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chipray/0.embed",
            "fid": "chipray:0",
            "filename": "IoT Predictive Maintenance Demo",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/chipray/0/9_4GYDO99TORYUBKDTM8AP9E4HRAH1VD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/chipray/0/2_S3WHI42VRYG96UU4LZ0DTAG3VS6A11.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/chipray/0/8_K4ATBGW1YS7TUTA7WQA9SJXO8OHJ5W.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/chipray/0/9_4GYDO99TORYUBKDTM8AP9E4HRAH1VD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chipray:0",
                "plots": "https://api.plotly.com/v2/plots/chipray:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=chipray"
            },
            "owner": "chipray",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Stream from Device 1",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~chipray/0/stream-from-device-1/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:05:12.348Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chipray/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x": [],
                        "y": [],
                        "uid": "44b30a29-f6ae-4d34-aea8-fc8b8561c4ee",
                        "line": {
                            "color": "rgb(22, 96, 167)",
                            "width": 4
                        },
                        "mode": "lines",
                        "name": "Sensor",
                        "type": "scatter",
                        "stream": {
                            "fid": 0,
                            "head": 0,
                            "token": "z8xjzdlhzc",
                            "maxpoints": 60
                        }
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "e4a3465b-4d0f-4aea-8452-116871429113",
                        "mode": "markers",
                        "name": "Prediction",
                        "type": "scatter",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 0, 0)"
                        },
                        "stream": {
                            "fid": 0,
                            "head": 0,
                            "token": "pbj53bq2p5",
                            "maxpoints": 60
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 30,
                        "color": "white",
                        "family": "Roboto, monospace"
                    },
                    "title": "Stream from Device 1",
                    "xaxis": {
                        "title": "Time Period",
                        "domain": [
                            0,
                            1.0
                        ],
                        "tickfont": {
                            "size": 16,
                            "color": "white",
                            "family": "Roboto, monospace"
                        },
                        "titlefont": {
                            "size": 18,
                            "color": "white",
                            "family": "Roboto, monospace"
                        }
                    },
                    "yaxis": {
                        "title": "Measurement",
                        "domain": [
                            0,
                            1.0
                        ],
                        "tickfont": {
                            "size": 16,
                            "color": "white",
                            "family": "Roboto, monospace"
                        },
                        "titlefont": {
                            "size": 18,
                            "color": "white",
                            "family": "Roboto, monospace"
                        }
                    },
                    "images": [
                        {
                            "x": 0.389,
                            "y": 1.03,
                            "xref": "paper",
                            "yref": "paper",
                            "sizex": 0.1,
                            "sizey": 0.1,
                            "source": "/home/mapr/Lab9/mapr_logo.png",
                            "xanchor": "right",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 0.8,
                            "y": 1.03,
                            "xref": "paper",
                            "yref": "paper",
                            "sizex": 0.1,
                            "sizey": 0.1,
                            "source": "/home/mapr/Lab9/mapr_logo.png",
                            "xanchor": "right",
                            "yanchor": "bottom"
                        }
                    ],
                    "plot_bgcolor": "rgba(8,8,8,1)",
                    "paper_bgcolor": "rgba(8,8,8,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chipray",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.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-20 18:52:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chipray",
                "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-20T20:00:57.110926Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~salshehhi4/6.embed",
            "fid": "salshehhi4:6",
            "filename": "scatter1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/salshehhi4/6/9_54A1Y88YOXQJHOZ0QY568PGZH35AJF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/salshehhi4/6/2_8R4DDELE5IFJ71JMVWPCKWWLQJHV0P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/salshehhi4/6/8_ESHKH7C8S8WLJ348Q0TBIHR995T7TZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/salshehhi4/6/9_54A1Y88YOXQJHOZ0QY568PGZH35AJF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/salshehhi4:6",
                "plots": "https://api.plotly.com/v2/plots/salshehhi4:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=salshehhi4"
            },
            "owner": "salshehhi4",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~salshehhi4/6/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:00:59.774Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~salshehhi4/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d3bca4ee-6c55-45fc-9c89-519f4998a667",
                        "mode": "markers",
                        "type": "scatter",
                        "ysrc": "salshehhi4:7:30a7c1",
                        "marker": {
                            "size": 8
                        }
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~salshehhi4",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 19:44:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "salshehhi4",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}