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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAwJTNBMjQlM0ExMC42NTU2NTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMCUzQTMyJTNBNDkuNDMwMDA1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T00:32:49.430005Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jcloo/8.embed",
            "fid": "jcloo:8",
            "filename": "d3-bubble-map-populations",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jcloo:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jcloo:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jcloo:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jcloo:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jcloo:8",
                "plots": "https://api.plotly.com/v2/plots/jcloo:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=jcloo"
            },
            "owner": "jcloo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "2013-2018 US Number of Gun Violence Incidents<br>(Click legend of mean incomes to toggle traces)",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~jcloo/8/_2013-2018-us-number-of-gun-violence-incidents-click-legend-of-mean-incomes-to-to/",
            "world_readable": true,
            "date_modified": "2019-03-21T21:22:38.398Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jcloo/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e150eff7-2ff4-406e-acb7-43321ff7bf78",
                        "name": "0 - 10000",
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(181,0,0)",
                            "sizesrc": "jcloo:9:1b02cf",
                            "sizemode": "area"
                        },
                        "textsrc": "jcloo:9:ffe55e",
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "dbef48c7-018e-4a96-b002-f2c486083cdc",
                        "name": "10001 - 20000",
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(217,52,52)",
                            "sizesrc": "jcloo:9:9dd768",
                            "sizemode": "area"
                        },
                        "textsrc": "jcloo:9:fa311d",
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "e1b07a76-5a32-4219-9a7b-17bce6706514",
                        "name": "20001 - 30000",
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(229,82,23)",
                            "sizesrc": "jcloo:9:078188",
                            "sizemode": "area"
                        },
                        "textsrc": "jcloo:9:5fc65e",
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "685e78c9-8fb0-4b12-aae6-a554ef601cb6",
                        "name": "30001 - 60000",
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(224,99,56)",
                            "sizesrc": "jcloo:9:e84f1d",
                            "sizemode": "area"
                        },
                        "textsrc": "jcloo:9:2d25b6",
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "b52ed81c-3c76-4e01-8b4a-acf87b462462",
                        "name": "60001 - 90000",
                        "text": [],
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "size": [],
                            "color": "rgb(243,172,31)",
                            "sizemode": "area"
                        },
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "b9a61eba-9525-4a8e-a39c-ede871ca0023",
                        "name": "90001 - 120000",
                        "text": [],
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "size": [],
                            "color": "rgb(249,230,3)",
                            "sizemode": "area"
                        },
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "fadd4b83-b91a-4b74-adaa-d2d718077323",
                        "name": "120001 - 180000",
                        "text": [],
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "size": [],
                            "color": "rgb(255,239,125)",
                            "sizemode": "area"
                        },
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "5c369df9-6d6f-42c6-b012-5815e2e5a28a",
                        "name": "180001 - 240000",
                        "text": [],
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "size": [],
                            "color": "rgb(83,173,61)",
                            "sizemode": "area"
                        },
                        "locationmode": "USA-states"
                    },
                    {
                        "uid": "e6161180-0ce3-4b6a-8eac-b60da992812a",
                        "name": "240001 - 245000",
                        "text": [],
                        "type": "scattergeo",
                        "latsrc": "jcloo:9:0e8cb5",
                        "lonsrc": "jcloo:9:6bdfb9",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "size": [],
                            "color": "rgb(224,244,195)",
                            "sizemode": "area"
                        },
                        "locationmode": "USA-states"
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "showland": true,
                        "landcolor": "rgb(217, 217, 217)",
                        "projection": {
                            "type": "albers usa"
                        },
                        "countrycolor": "rgb(255, 255, 255)",
                        "countrywidth": 1,
                        "subunitcolor": "rgb(255, 255, 255)",
                        "subunitwidth": 1
                    },
                    "title": {
                        "text": "2013-2018 US Number of Gun Violence Incidents<br>(Click legend of mean incomes to toggle traces)"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jcloo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/96.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-10 21:33:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jcloo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:32:04.360610Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ryriddle/9.embed",
            "fid": "ryriddle:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ryriddle/9/9_EXLD1IUXQ0H2B3H265D9N3ZAOV81YW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ryriddle/9/2_XDJIZVLAHG4XTF0E1T52XMOUG961MV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ryriddle/9/8_7KRCQBRT9U90XM807C8HM8729H05CJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ryriddle/9/9_EXLD1IUXQ0H2B3H265D9N3ZAOV81YW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ryriddle:9",
                "plots": "https://api.plotly.com/v2/plots/ryriddle:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=ryriddle"
            },
            "owner": "ryriddle",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~ryriddle/9/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:32:04.375Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ryriddle/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7fcdaf",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ryriddle:8:f790d2",
                        "ysrc": "ryriddle:8:97b69d"
                    },
                    {
                        "uid": "58add0",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "7fcdaf",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.00016388715927183233,
                                        "value": 0.0020932194453230153
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.0003310119439045618,
                                        "value": 0.0017802558965170033
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "The Relationship Between Angular Acceleration and Torque "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.43154929577464785,
                            3.248450704225352
                        ],
                        "title": {
                            "text": "Angular Acceleration (rad/s<sup>2</sup>)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.002564039408866995,
                            0.009435960591133004
                        ],
                        "title": {
                            "text": "Torque (Nm)"
                        },
                        "autorange": true
                    },
                    "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/~ryriddle",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-01-19 21:17:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ryriddle",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:25:48.793081Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BenjaBi/22.embed",
            "fid": "BenjaBi:22",
            "filename": "angled-text-bar",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/22/9_CBLA9VEE0CTNBVXBHWG4Y6A344NVN5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/22/2_0XQGG479DD3QJNP3QETRH2XHJK49TA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/22/8_DLPJBDYW8OB4THJH36V618B6NY3DI6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/22/9_CBLA9VEE0CTNBVXBHWG4Y6A344NVN5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BenjaBi:22",
                "plots": "https://api.plotly.com/v2/plots/BenjaBi:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=BenjaBi"
            },
            "owner": "BenjaBi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Ventas Japon vs Ventas NA",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~BenjaBi/22/ventas-japon-vs-ventas-na/",
            "world_readable": true,
            "date_modified": "2019-03-22T22:27:35.450Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BenjaBi/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ebbea6a9-e299-4af5-bcfd-44fd87d1ac07",
                        "name": "Ventas Japon",
                        "type": "bar",
                        "xsrc": "BenjaBi:23:1d3bf9",
                        "ysrc": "BenjaBi:23:b34ad8"
                    },
                    {
                        "uid": "a7715a16-e91f-4cb2-a124-566ba7069afe",
                        "name": "Ventas NA",
                        "type": "bar",
                        "xsrc": "BenjaBi:23:1d3bf9",
                        "ysrc": "BenjaBi:23:92fd15"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "tickangle": -45
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~BenjaBi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-03 05:10:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BenjaBi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:25:02.592103Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/83.embed",
            "fid": "PiotrBenedysiuk:83",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/83/9_BXSDRLSS3ELISYJ4QNJ60VKOBDUOFA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/83/2_MX9YGBMCD31RQED8S7LOMXE4XL2LLY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/83/8_VVVN3ECBAHB3Y1WZEKZD6AAS0EP4D7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/83/9_BXSDRLSS3ELISYJ4QNJ60VKOBDUOFA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PiotrBenedysiuk:83",
                "plots": "https://api.plotly.com/v2/plots/PiotrBenedysiuk:83",
                "parent": "https://api.plotly.com/v2/folders/home?user=PiotrBenedysiuk"
            },
            "owner": "PiotrBenedysiuk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/83/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:25:03.145Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/83/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3ceb1897-ef8e-4180-9a12-e27d1ea2d1b8",
                        "line": {
                            "color": "rgb(0,150,0)"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:ad3e4a",
                        "ysrc": "PiotrBenedysiuk:84:5797dc",
                        "showlegend": false
                    },
                    {
                        "uid": "3dfda605-84d3-4616-b6ea-15c4dde2f5d6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:eae150",
                        "ysrc": "PiotrBenedysiuk:84:cd1301",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "58f40b6c-52f1-473b-906f-e3ea29f7f8cf",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:883293",
                        "ysrc": "PiotrBenedysiuk:84:d5e287",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "914fd6b6-3b22-40d1-b3f3-ee7ce1cdbbaa",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:a7cd6c",
                        "ysrc": "PiotrBenedysiuk:84:d5e287",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "a089f579-1244-4e68-853c-41fde8e7ba91",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:a7cd6c",
                        "ysrc": "PiotrBenedysiuk:84:3bf2f6",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "159dc78e-9249-4c63-829a-57317867a4ba",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:883293",
                        "ysrc": "PiotrBenedysiuk:84:3bf2f6",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "7805d127-2d31-46c3-8ed3-f6a650c15eab",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:84:eae150",
                        "ysrc": "PiotrBenedysiuk:84:66a1b6",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f479b40f-514a-443f-8da3-f2f43855d9c3",
                        "type": "heatmap",
                        "xsrc": "PiotrBenedysiuk:84:b39100",
                        "ysrc": "PiotrBenedysiuk:84:de2915",
                        "zsrc": "PiotrBenedysiuk:84:158abd,13495e,b748ca,83fc98,ab5fa1,facaa0,f27267,700141,dca273,43c9c1,946050,7001eb,2aec91,48668a,762966",
                        "colorscale": "RdBu"
                    }
                ],
                "layout": {
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2018-07-31 12:12:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PiotrBenedysiuk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:52.681709Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~martijnvanvlie/42.embed",
            "fid": "martijnvanvlie:42",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/42/9_HYA0AZT73IV1J5HXOXMF3XGP6SBFLG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/42/2_E8S147RUU0QAK528KTRM7VA7F0UEUK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/42/8_SSZKKIT89IFTC7Q2JFO71SFUV1E681.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/42/9_HYA0AZT73IV1J5HXOXMF3XGP6SBFLG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/martijnvanvlie:42",
                "plots": "https://api.plotly.com/v2/plots/martijnvanvlie:42",
                "parent": "https://api.plotly.com/v2/folders/home?user=martijnvanvlie"
            },
            "owner": "martijnvanvlie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Segment score of top 10 road segments",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~martijnvanvlie/42/segment-score-of-top-10-road-segments/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:53.123Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~martijnvanvlie/42/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7962a344-1fe9-48df-b9fb-eac3c313da46",
                        "mode": "markers",
                        "name": "Absolute",
                        "type": "scatter",
                        "xsrc": "martijnvanvlie:43:5ba014",
                        "ysrc": "martijnvanvlie:43:e00ad4",
                        "marker": {
                            "line": {
                                "color": "rgb(255,127,14)",
                                "width": 10
                            }
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Segment score of top 10 road segments"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Road label"
                        }
                    },
                    "yaxis": {
                        "range": [
                            0,
                            0.2
                        ],
                        "title": {
                            "text": "Segment score"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~martijnvanvlie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.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": "2018-10-23 11:49:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "martijnvanvlie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:37.396243Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~martijnvanvlie/40.embed",
            "fid": "martijnvanvlie:40",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/40/9_L6ZAA99MLOSY3IONCCCZ0TC1Z7XLWJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/40/2_W6P10XBTCLF786U24VBKYB7EJDG6TI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/40/8_JO4Z7CQX8MOBYXDVPB0ELUSG6SBSGX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/martijnvanvlie/40/9_L6ZAA99MLOSY3IONCCCZ0TC1Z7XLWJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/martijnvanvlie:40",
                "plots": "https://api.plotly.com/v2/plots/martijnvanvlie:40",
                "parent": "https://api.plotly.com/v2/folders/home?user=martijnvanvlie"
            },
            "owner": "martijnvanvlie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Top 10 road segments based on Criticalility and Vulnerability",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~martijnvanvlie/40/top-10-road-segments-based-on-criticalility-and-vulnerability/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:37.898Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~martijnvanvlie/40/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "022d2b00-aa4b-48ac-8845-874e0824cd32",
                        "mode": "markers",
                        "name": "R roads",
                        "type": "scatter",
                        "xsrc": "martijnvanvlie:41:98e348",
                        "ysrc": "martijnvanvlie:41:2b55a9",
                        "marker": {
                            "size": 12,
                            "color": "rgb(255,127,14)"
                        }
                    },
                    {
                        "uid": "b22a2040-22e6-4343-b6f4-5ba6429d8147",
                        "mode": "markers",
                        "name": "N roads",
                        "type": "scatter",
                        "xsrc": "martijnvanvlie:41:1668c2",
                        "ysrc": "martijnvanvlie:41:ec3c87",
                        "marker": {
                            "size": 12,
                            "color": "rgb(31,119,180)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Top 10 road segments based on Criticalility and Vulnerability"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Criticality (normalised)"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Vulnerability (normalised)"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~martijnvanvlie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/50.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": "2018-10-23 11:49:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "martijnvanvlie",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:36.324215Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/81.embed",
            "fid": "PiotrBenedysiuk:81",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/PiotrBenedysiuk:81/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/81/2_8OSVFO9VRKNZG4EFWRNY8YY1BHXC60.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/81/8_FDUCQGQK0P3CAUMPOELIK8VXVRXQ86.png",
                "list-thumb": "https://api.plotly.com/v2/files/PiotrBenedysiuk:81/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PiotrBenedysiuk:81",
                "plots": "https://api.plotly.com/v2/plots/PiotrBenedysiuk:81",
                "parent": "https://api.plotly.com/v2/folders/home?user=PiotrBenedysiuk"
            },
            "owner": "PiotrBenedysiuk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/81/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:36.827Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/81/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "55c3e949-7321-4e3d-a334-018c0df1dfe6",
                        "line": {
                            "color": "rgb(0,200,0)"
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:c2890d",
                        "ysrc": "PiotrBenedysiuk:82:7a2cc4",
                        "showlegend": false
                    },
                    {
                        "uid": "8f974b29-27ae-466c-b0cc-749506837d24",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:b5ee5f",
                        "ysrc": "PiotrBenedysiuk:82:2d29fd",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "3480b1e2-7c37-43eb-8f2e-7f34d1aa60ac",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:5b54bc",
                        "ysrc": "PiotrBenedysiuk:82:576a5e",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "e6d32955-6c2a-410a-ac32-3191fad3f9b3",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:ab1f66",
                        "ysrc": "PiotrBenedysiuk:82:576a5e",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "13aba9b1-2f5f-408d-84ed-8925ccbd20a6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:ab1f66",
                        "ysrc": "PiotrBenedysiuk:82:e49878",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "628894df-26c5-406c-93ec-d649089d4709",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:5b54bc",
                        "ysrc": "PiotrBenedysiuk:82:e49878",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "4513835a-e102-4cce-83f9-507d234712a6",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:82:b5ee5f",
                        "ysrc": "PiotrBenedysiuk:82:3c6381",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "285b22c9-38c9-4f4e-94e2-321b75733e90",
                        "type": "heatmap",
                        "xsrc": "PiotrBenedysiuk:82:7b01b4",
                        "ysrc": "PiotrBenedysiuk:82:128db3",
                        "zsrc": "PiotrBenedysiuk:82:90042b,855194,a7f2b1,91a023,db0a7e,a2b4d2,266210,1dc1fb,dfda06,86c9e9,23633e,439935,6a082a,740268,c6f306",
                        "colorscale": "RdBu"
                    }
                ],
                "layout": {
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2018-07-31 12:12:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PiotrBenedysiuk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:19.087673Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/79.embed",
            "fid": "PiotrBenedysiuk:79",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/79/9_OX56LUX3MC78F9E4UYQE5OL7FM3JLL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/79/2_N9YB1097Y64ROY3E86JOPJEZGS0ZVP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/79/8_B1V215QSIW6OIZ733ERUUI140P255F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/79/9_OX56LUX3MC78F9E4UYQE5OL7FM3JLL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PiotrBenedysiuk:79",
                "plots": "https://api.plotly.com/v2/plots/PiotrBenedysiuk:79",
                "parent": "https://api.plotly.com/v2/folders/home?user=PiotrBenedysiuk"
            },
            "owner": "PiotrBenedysiuk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/79/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:19.620Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/79/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4ed81996-4eee-41d2-a6b1-382678f6039a",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:93eb24",
                        "ysrc": "PiotrBenedysiuk:80:9b052b",
                        "showlegend": false
                    },
                    {
                        "uid": "595472a0-1284-48c4-a0bb-4201c8f54951",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:e1fc3c",
                        "ysrc": "PiotrBenedysiuk:80:d66925",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "25a35ede-603d-44e3-bcfb-36d586f3cb85",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:e7f056",
                        "ysrc": "PiotrBenedysiuk:80:35f9b3",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f9dd7944-a9bb-41ab-b79b-e5952e3aca5c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:de418c",
                        "ysrc": "PiotrBenedysiuk:80:35f9b3",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "21d133af-d20e-4a13-aca2-ee8b8cc5b78f",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:de418c",
                        "ysrc": "PiotrBenedysiuk:80:e885c3",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f9cfd324-010e-4b3d-9cd2-6007c65b2ffb",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:e7f056",
                        "ysrc": "PiotrBenedysiuk:80:e885c3",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "22f0bdaa-e757-4fef-9704-893eea54870c",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:80:e1fc3c",
                        "ysrc": "PiotrBenedysiuk:80:12a556",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "df8109b3-fff3-4490-9748-d43965da4a85",
                        "type": "heatmap",
                        "xsrc": "PiotrBenedysiuk:80:065cf4",
                        "ysrc": "PiotrBenedysiuk:80:68e5a1",
                        "zsrc": "PiotrBenedysiuk:80:340f1b,74fee2,825427,892d85,1c16ad,72dee2,d9703d,bb88f1,604595,672283,0196a0,6da210,1acc36,6b8a33,d7c817",
                        "colorscale": "Reds"
                    }
                ],
                "layout": {
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2018-07-31 12:12:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PiotrBenedysiuk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:15.795271Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kgtruska/8.embed",
            "fid": "kgtruska:8",
            "filename": "Plot 8",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kgtruska/8/9_ZL9G6ZKM3JOR5OYLRFBP3AEZ72FM42.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kgtruska/8/2_LXBMN0E1I5ETCYAZ5FVDPBTZ57G9D6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kgtruska/8/8_YYB4LCKET3IYA66OIKAY9K7EYB7P81.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kgtruska/8/9_ZL9G6ZKM3JOR5OYLRFBP3AEZ72FM42.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kgtruska:8",
                "plots": "https://api.plotly.com/v2/plots/kgtruska:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=kgtruska"
            },
            "owner": "kgtruska",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~kgtruska/8/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:15.811Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kgtruska/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "6c3810",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "kgtruska:7:ec33ec",
                        "ysrc": "kgtruska:7:fa5aef"
                    },
                    {
                        "uid": "ce82c4",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "6c3810",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.533174648385821,
                                        "value": 12.518461021746702
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.037713538809793015,
                                        "value": 0.4071857392997543
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "How Angular Acceleration affects Torque "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.006184805130735075,
                            0.12541519486926492
                        ],
                        "title": {
                            "text": "Angular Acceleration (rad/s2)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.36090161290322575,
                            1.9844983870967743
                        ],
                        "title": {
                            "text": "Torque (Nm)"
                        },
                        "autorange": true
                    },
                    "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/~kgtruska",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-01 00:40:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kgtruska",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-21T00:24:10.655651Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/77.embed",
            "fid": "PiotrBenedysiuk:77",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/77/9_AWTXHYSZEOFEH6BZUNF04WB6E1UYSG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/77/2_F2SFKY5MMBBI0AVKUW1CXKPK5KE54A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/77/8_MSCC7YEDSX4ESXJ1K3SQ0ZBVTMMKL0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PiotrBenedysiuk/77/9_AWTXHYSZEOFEH6BZUNF04WB6E1UYSG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PiotrBenedysiuk:77",
                "plots": "https://api.plotly.com/v2/plots/PiotrBenedysiuk:77",
                "parent": "https://api.plotly.com/v2/folders/home?user=PiotrBenedysiuk"
            },
            "owner": "PiotrBenedysiuk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/77/",
            "world_readable": true,
            "date_modified": "2019-03-21T00:24:11.212Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk/77/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "75ba6dff-ba59-482b-bf38-fc540901873a",
                        "type": "heatmap",
                        "xsrc": "PiotrBenedysiuk:78:b2d605",
                        "ysrc": "PiotrBenedysiuk:78:20549b",
                        "zsrc": "PiotrBenedysiuk:78:96aa22,cf7ade,a418b3,528f2a,d14a1d,b53e7d,e77db3,4ca685,02cc26,929376,2824dd,e0facb,4ddc38,49fc30,8812af",
                        "colorscale": "RdBu"
                    },
                    {
                        "uid": "3459d35b-a4db-41c6-9637-95b7b3f5bf76",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:df6a70",
                        "ysrc": "PiotrBenedysiuk:78:d37200",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "8b13fa3e-0e9d-4cae-9acf-0c1b9eeb058e",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:d2dc0e",
                        "ysrc": "PiotrBenedysiuk:78:73e6de",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "741000b8-41f9-4bc0-a428-15b6f1a5bed5",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:a2ee4e",
                        "ysrc": "PiotrBenedysiuk:78:73e6de",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "800b9a8b-ef55-4403-af78-7975fae93e45",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:a2ee4e",
                        "ysrc": "PiotrBenedysiuk:78:196b0c",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "051741c3-67d2-4d51-bb9c-f143dd2704b7",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:d2dc0e",
                        "ysrc": "PiotrBenedysiuk:78:196b0c",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b753f8c8-4828-4f3f-828b-486cffe78128",
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "PiotrBenedysiuk:78:df6a70",
                        "ysrc": "PiotrBenedysiuk:78:94855e",
                        "marker": {
                            "color": "red"
                        },
                        "showlegend": false
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PiotrBenedysiuk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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": "2018-07-31 12:12:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PiotrBenedysiuk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}