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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzEzJTNBMTglM0ExMy40ODY5ODclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxMyUzQTIyJTNBMzcuODIwNTM4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T13:22:37.820538Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nrxdirk/63.embed",
            "fid": "nrxdirk:63",
            "filename": "numpy-arange-to-meshgrid",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nrxdirk/63/9_SZLVWA5XFZBU49LOREQTCX5TE4KG42.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nrxdirk:63/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nrxdirk/63/8_SY6O8FCBVCNMOCAXOVU96E3VGWVCGH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nrxdirk/63/9_SZLVWA5XFZBU49LOREQTCX5TE4KG42.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nrxdirk:63",
                "plots": "https://api.plotly.com/v2/plots/nrxdirk:63",
                "parent": "https://api.plotly.com/v2/folders/home?user=nrxdirk"
            },
            "owner": "nrxdirk",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Wireframe with Meshgrid",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nrxdirk/63/wireframe-with-meshgrid/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:22:38.793Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nrxdirk/63/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f8145474-9102-11e9-aab3-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:2f0525",
                        "zsrc": "nrxdirk:64:681138"
                    },
                    {
                        "uid": "f8145475-9102-11e9-82e8-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:9a0c54",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f8145476-9102-11e9-bb26-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:5fbe1d",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f8145477-9102-11e9-b86c-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:252a1c",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f8145478-9102-11e9-a106-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:3250e5",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f8145479-9102-11e9-ade9-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:a3c787",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f814547a-9102-11e9-bd17-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:589ad4",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f814547b-9102-11e9-806f-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:2f46d4",
                        "zsrc": "nrxdirk:64:a5e97d"
                    },
                    {
                        "uid": "f814547c-9102-11e9-b335-9eb6d0f8dfdf",
                        "line": {
                            "color": "#0066FF",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "nrxdirk:64:54028c",
                        "ysrc": "nrxdirk:64:b94d2d",
                        "zsrc": "nrxdirk:64:a5e97d"
                    }
                ],
                "layout": {
                    "title": "Wireframe with Meshgrid",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nrxdirk",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-07-13 12:27:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nrxdirk",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:21:24.825496Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yaodehaung/5.embed",
            "fid": "yaodehaung:5",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yaodehaung:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yaodehaung:5/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/yaodehaung:5/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/yaodehaung:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yaodehaung:5",
                "plots": "https://api.plotly.com/v2/plots/yaodehaung:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=yaodehaung"
            },
            "owner": "yaodehaung",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~yaodehaung/5/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:28:25.926Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yaodehaung/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2b5a5169-248e-4a28-8313-fe4a44855ea3",
                        "type": "scatter",
                        "xsrc": "yaodehaung:6:cdeca9",
                        "ysrc": "yaodehaung:6:6f5b12"
                    },
                    {
                        "uid": "cfe4a871-aa51-4410-8eb9-b8bac0cfb19c",
                        "type": "scatter",
                        "xsrc": "yaodehaung:6:cdeca9",
                        "ysrc": "yaodehaung:6:2973ae"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yaodehaung",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 12:43:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yaodehaung",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:20:39.269580Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sainitishyarraguntla/18.embed",
            "fid": "sainitishyarraguntla:18",
            "filename": "LATV",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sainitishyarraguntla/18/9_LTA2OVS4UHL1IMGLSN2Z6DD3EMA1VH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sainitishyarraguntla/18/2_UU87AINTZZFQKR1XR30W7IE49BFB1Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sainitishyarraguntla/18/8_ZEDAN867ZDVD2OSB89QIRC1D7ZHJ8D.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sainitishyarraguntla/18/9_LTA2OVS4UHL1IMGLSN2Z6DD3EMA1VH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sainitishyarraguntla:18",
                "plots": "https://api.plotly.com/v2/plots/sainitishyarraguntla:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=sainitishyarraguntla"
            },
            "owner": "sainitishyarraguntla",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Hour-Wise(LATV)",
            "views": 39,
            "web_url": "https://chart-studio.plotly.com/~sainitishyarraguntla/18/hour-wiselatv/",
            "world_readable": true,
            "date_modified": "2019-06-18T09:51:03.943Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sainitishyarraguntla/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "06d78220-872a-4d70-abab-b0c8fd17deb5",
                        "name": "LATV",
                        "type": "scatter",
                        "xsrc": "sainitishyarraguntla:19:b5b0be",
                        "ysrc": "sainitishyarraguntla:19:e2f352",
                        "connectgaps": true
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Hour-Wise(LATV)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sainitishyarraguntla",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-12-30 08:21:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sainitishyarraguntla",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:19:58.188565Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Wifkan/35.embed",
            "fid": "Wifkan:35",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Wifkan:35/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Wifkan/35/2_O16JNWGP239S0MLY7RP3NA86MPJ1YA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Wifkan/35/8_951F22RBYWHOXH9LD12WEOPC2JGMDE.png",
                "list-thumb": "https://api.plotly.com/v2/files/Wifkan:35/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Wifkan:35",
                "plots": "https://api.plotly.com/v2/plots/Wifkan:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=Wifkan"
            },
            "owner": "Wifkan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~Wifkan/35/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:19:58.643Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Wifkan/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cef7f64a-ccf1-4139-bce0-81ff76548b34",
                        "type": "mesh3d",
                        "xsrc": "Wifkan:36:053aae",
                        "ysrc": "Wifkan:36:fb1a89",
                        "zsrc": "Wifkan:36:8a8329",
                        "opacity": 0.9,
                        "colorbar": {
                            "title": {
                                "text": "VMG"
                            }
                        },
                        "alphahull": -1,
                        "showscale": true,
                        "colorscale": "Viridis"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Wifkan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-02-08 18:35:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Wifkan",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:19:29.079206Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cedricvanheck/0.embed",
            "fid": "cedricvanheck:0",
            "filename": "d3-bubble-map-populations",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cedricvanheck/0/9_0O79X9E4FMHC39WIMSM3FFDZ6AV2U0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cedricvanheck/0/2_BUU3VMI9AORRQM0VG4O4YZRH4WBBSK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cedricvanheck/0/8_Z7N7ZDZS8F49HEM6QXJFDCMY30DDVP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cedricvanheck/0/9_0O79X9E4FMHC39WIMSM3FFDZ6AV2U0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cedricvanheck:0",
                "plots": "https://api.plotly.com/v2/plots/cedricvanheck:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=cedricvanheck"
            },
            "owner": "cedricvanheck",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "2019 The Cirqle influencers population<br>(Click legend to toggle traces)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cedricvanheck/0/_2019-the-cirqle-influencers-population-click-legend-to-toggle-traces/",
            "world_readable": true,
            "date_modified": "2019-06-25T09:20:39.634Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cedricvanheck/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "42bfdc27-cbee-402c-828d-417458800566",
                        "name": "0 - 5",
                        "type": "scattergeo",
                        "latsrc": "cedricvanheck:1:10b3ee",
                        "lonsrc": "cedricvanheck:1:bb4349",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(7,23,172)",
                            "sizesrc": "cedricvanheck:1:f3b2da",
                            "sizemode": "area"
                        },
                        "textsrc": "cedricvanheck:1:a87757",
                        "locationmode": "ISO-3"
                    },
                    {
                        "uid": "cc3e2450-584e-437b-9d7c-a2cd79379a5d",
                        "name": "5 - 10",
                        "type": "scattergeo",
                        "latsrc": "cedricvanheck:1:93133a",
                        "lonsrc": "cedricvanheck:1:9143c6",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(250,7,39)",
                            "sizesrc": "cedricvanheck:1:c43666",
                            "sizemode": "area"
                        },
                        "textsrc": "cedricvanheck:1:785da7",
                        "locationmode": "ISO-3"
                    },
                    {
                        "uid": "d5ac1e7c-22ae-4f8c-906e-a57610ea7447",
                        "name": "10 - 20",
                        "type": "scattergeo",
                        "latsrc": "cedricvanheck:1:f0897e",
                        "lonsrc": "cedricvanheck:1:fba162",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(133,20,75)",
                            "sizesrc": "cedricvanheck:1:666f9f",
                            "sizemode": "area"
                        },
                        "textsrc": "cedricvanheck:1:ccdebc",
                        "locationmode": "ISO-3"
                    },
                    {
                        "uid": "dfae6a9e-a131-4132-bed7-8338547685ef",
                        "name": "20 - 50",
                        "type": "scattergeo",
                        "latsrc": "cedricvanheck:1:15fccd",
                        "lonsrc": "cedricvanheck:1:5b7f25",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(255,133,27)",
                            "sizesrc": "cedricvanheck:1:7a4f4d",
                            "sizemode": "area"
                        },
                        "textsrc": "cedricvanheck:1:f159db",
                        "locationmode": "ISO-3"
                    },
                    {
                        "uid": "4a5c0215-6612-4e5b-8989-181a9f8285ab",
                        "name": "50 - 1000",
                        "type": "scattergeo",
                        "latsrc": "cedricvanheck:1:85bd46",
                        "lonsrc": "cedricvanheck:1:d8602f",
                        "marker": {
                            "line": {
                                "color": "rgb(40,40,40)",
                                "width": 0.5
                            },
                            "color": "rgb(7,250,64)",
                            "sizesrc": "cedricvanheck:1:fcd2f8",
                            "sizemode": "area"
                        },
                        "textsrc": "cedricvanheck:1:63e89e",
                        "locationmode": "ISO-3"
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "world",
                        "showland": true,
                        "landcolor": "#F0DC82",
                        "projection": {
                            "type": "robinson"
                        },
                        "countrycolor": "rgb(255, 255, 255)",
                        "countrywidth": 1,
                        "subunitcolor": "rgb(255, 255, 255)",
                        "subunitwidth": 1
                    },
                    "title": {
                        "text": "2019 The Cirqle influencers population<br>(Click legend to toggle traces)"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cedricvanheck",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:16:21",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cedricvanheck",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:19:28.792309Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ene.xis/1.embed",
            "fid": "ene.xis:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ene.xis:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ene.xis/1/2_329I077QQ1LQIM4HBOD4HBWLWMEJC9.png",
                "block-thumb": "https://api.plotly.com/v2/files/ene.xis:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ene.xis:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ene.xis:1",
                "plots": "https://api.plotly.com/v2/plots/ene.xis:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ene.xis"
            },
            "owner": "ene.xis",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ene.xis/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:19:28.806Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ene.xis/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "pie",
                        "labelssrc": "ene.xis:0:d9beb3",
                        "valuessrc": "ene.xis:0:def365"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "VALORES"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "size": 12
                        }
                    },
                    "autosize": true,
                    "colorway": [
                        "#b3e2cd",
                        "#fdcdac",
                        "#cbd5e8",
                        "#f4cae4",
                        "#e6f5c9",
                        "#fff2ae",
                        "#f1e2cc",
                        "#cccccc"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ene.xis",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:16:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ene.xis",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:19:13.485463Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Wifkan/33.embed",
            "fid": "Wifkan:33",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Wifkan:33/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Wifkan/33/2_EID681RX6OKE70IBBOJH7GPW3T87R1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Wifkan/33/8_7XA2FL5EDREIQQO48H15CTDGG4DLWZ.png",
                "list-thumb": "https://api.plotly.com/v2/files/Wifkan:33/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Wifkan:33",
                "plots": "https://api.plotly.com/v2/plots/Wifkan:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=Wifkan"
            },
            "owner": "Wifkan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~Wifkan/33/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:19:14.030Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Wifkan/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c8b0a6c9-e249-47f1-8b0b-07a294d59dc4",
                        "type": "mesh3d",
                        "xsrc": "Wifkan:34:ce94e8",
                        "ysrc": "Wifkan:34:8c88fa",
                        "zsrc": "Wifkan:34:883d97",
                        "opacity": 0.9,
                        "colorbar": {
                            "title": {
                                "text": "VMG"
                            }
                        },
                        "alphahull": -1,
                        "showscale": true,
                        "colorscale": "Viridis"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Wifkan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-02-08 18:35:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Wifkan",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:18:59.479924Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amitnene/48.embed",
            "fid": "amitnene:48",
            "filename": "Plot 48",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/amitnene:48/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/amitnene:48/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/amitnene/48/8_5KTZOZ38WDCC6I70EHNZ32YG2P9BBA.png",
                "list-thumb": "https://api.plotly.com/v2/files/amitnene:48/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amitnene:48",
                "plots": "https://api.plotly.com/v2/plots/amitnene:48",
                "parent": "https://api.plotly.com/v2/folders/home?user=amitnene"
            },
            "owner": "amitnene",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amitnene/48/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:18:59.494Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amitnene/48/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "Default Scheduler",
                        "type": "scatter",
                        "xsrc": "amitnene:47:6d9300",
                        "ysrc": "amitnene:47:51ba27"
                    },
                    {
                        "mode": "lines",
                        "name": "GWO Scheduler",
                        "type": "scatter",
                        "xsrc": "amitnene:47:6d9300",
                        "ysrc": "amitnene:47:ad39f7",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Throughput Comparison"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            915
                        ],
                        "title": {
                            "text": "Time span (in seconds)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            7.793333333333333,
                            17.126666666666665
                        ],
                        "title": {
                            "text": "Throughput (in requests/sec) "
                        },
                        "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/~amitnene",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-07 18:24:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amitnene",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:18:46.216844Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thomaslv02/52.embed",
            "fid": "thomaslv02:52",
            "filename": "fminfmaxtempfreqfiltercomp",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/52/9_JN1P2L24CNBX4A66RO3KQXXJ5ICFDK.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thomaslv02:52/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thomaslv02:52/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/52/9_JN1P2L24CNBX4A66RO3KQXXJ5ICFDK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thomaslv02:52",
                "plots": "https://api.plotly.com/v2/plots/thomaslv02:52",
                "parent": "https://api.plotly.com/v2/folders/home?user=thomaslv02"
            },
            "owner": "thomaslv02",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Données théoriques avec fréquence filtrée (fmin, fmax, température)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thomaslv02/52/donnees-theoriques-avec-frequence-filtree-fmin-fmax-temperature/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:18:46.675Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thomaslv02/52/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "618da161-90ed-401a-86e1-040fc7f89962",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "thomaslv02:53:53cc62",
                        "ysrc": "thomaslv02:53:96159c",
                        "zsrc": "thomaslv02:53:196802",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "size": 2,
                            "opacity": 0.8,
                            "colorbar": {
                                "x": 0,
                                "y": 0.5,
                                "title": {
                                    "text": "Masse (M/Msol)"
                                }
                            },
                            "colorsrc": "thomaslv02:53:a51089",
                            "colorscale": "Viridis"
                        }
                    },
                    {
                        "uid": "e8cc725e-e463-4321-a605-2b22a26e281f",
                        "type": "surface",
                        "xsrc": "thomaslv02:53:117ac0,1ceb30,20c789,e41ab0,54c8a6,ddc16e,1c0992,995830,2eb60f,200009,1cc06f,b7809b,10f433,8a1f3a,09d539,1d6ec0,84636d,cc44d8,38b796,2efde1",
                        "ysrc": "thomaslv02:53:512403,7041d3,0830ba,b5c1e3,934531,9c26b1,da99b8,fd205b,b45522,f89a23,5f475c,7937e8,ffe128,0478e4,ffc952,483ac0,99c328,196789,63130f,d91a0b",
                        "zsrc": "thomaslv02:53:36cf66,f5b0cb,442145,8c288a,275ac3,79cd8d,356e0e,33e6ef,769d55,40fd23,22f3be,894637,d594d1,9e9f9e,1e6eb0,562954,30a4c3,6150cd,9c7e1b,2ba44c",
                        "opacity": 0.7,
                        "colorbar": {
                            "x": 1,
                            "y": 0.5,
                            "title": {
                                "text": "Température (K)"
                            }
                        },
                        "colorscale": "RdBu"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "fmin (microHz)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204, 204)"
                        },
                        "yaxis": {
                            "title": {
                                "text": "fmax (microHz)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        },
                        "zaxis": {
                            "range": [
                                6426.2,
                                8742.1
                            ],
                            "title": {
                                "text": "Température (Kelvins)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        }
                    },
                    "title": {
                        "text": "Données théoriques avec fréquence filtrée (fmin, fmax, température)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thomaslv02",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-07 15:25:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thomaslv02",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:18:13.486987Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~metrics/8.embed",
            "fid": "metrics:8",
            "filename": "Multicast Latency",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/metrics/8/9_KO2G2N51T449N3M50U928T0RXHSNRS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/metrics/8/2_Z6Y9YEDODO1XI888CIORIJ4WRJY28J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/metrics/8/8_A29ABXCD3GWGY4N27HGC4Z5ZGOL0G8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/metrics/8/9_KO2G2N51T449N3M50U928T0RXHSNRS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/metrics:8",
                "plots": "https://api.plotly.com/v2/plots/metrics:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=metrics"
            },
            "owner": "metrics",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~metrics/8/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:18:13.979Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~metrics/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f1ee5b62-52e3-42ec-9978-45de0444aa33",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:ec9314"
                    },
                    {
                        "uid": "0a25c96e-a2fa-45f0-a57b-33bbf00f6103",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:c1315d"
                    },
                    {
                        "uid": "8dc47085-2bce-484e-86ac-8330d9b12594",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:90e896"
                    },
                    {
                        "uid": "e9f90bcf-5d36-44e1-9593-2d9033fa742c",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:59bc85"
                    },
                    {
                        "uid": "927cf727-0db0-421b-bba2-f9aa77952da5",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:ff8eac"
                    },
                    {
                        "uid": "1cbcd673-a15e-4bbd-a14b-8d90c06079b1",
                        "type": "scatter",
                        "xsrc": "metrics:9:724d41",
                        "ysrc": "metrics:9:5eca47"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~metrics",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 09:42:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "metrics",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}