Plots List
Plots
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=cD0yMDE5LTAzLTIwKzIzJTNBMDklM0ExMS43ODE2ODUlMkIwMCUzQTAw&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIzJTNBMDIlM0EwMC44MDk2MjclMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMyUzQTA5JTNBMDMuMjczMTcyJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2019-03-20T23:09:03.273172Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~niklasm/61.embed", "fid": "niklasm:61", "filename": "week_volume", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/niklasm:61/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/niklasm:61/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/niklasm:61/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/niklasm:61/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/niklasm:61", "plots": "https://api.plotly.com/v2/plots/niklasm:61", "parent": "https://api.plotly.com/v2/folders/home?user=niklasm" }, "owner": "niklasm", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Water Volume", "views": 273, "web_url": "https://chart-studio.plotly.com/~niklasm/61/water-volume/", "world_readable": true, "date_modified": "2019-05-03T01:15:45.743Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~niklasm/61/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "7e517652-b841-4d47-a9d3-3ab9b910cd5c", "line": { "width": 4 }, "name": "value", "type": "scatter", "xsrc": "niklasm:62:7d6e6b", "ysrc": "niklasm:62:1dfdd1" } ], "layout": { "title": { "text": "Water Volume" }, "width": 700, "xaxis": { "title": { "text": "Date" }, "ticktext": [ "Thursday- 20:15:44\"", "Thursday- 20:20:50\"", "Thursday- 20:26:00\"", "Thursday- 20:31:30\"", "Thursday- 20:36:45\"", "Thursday- 20:41:46\"", "Thursday- 20:46:59\"" ], "tickvals": [ 0, 1, 2, 3, 4, 5, 6 ], "tickangle": 45 }, "yaxis": { "title": { "text": "Gallons" } }, "height": 500 } }, "height": 500, "width": 700, "user": { "profile_url": "https://chart-studio.plotly.com/~niklasm", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2018-10-30 05:40:03", "mapbox_access_tokens": null, "has_password": null, "username": "niklasm", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:08:59.293685Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~RhettAllain/2191.embed", "fid": "RhettAllain:2191", "filename": "Plot 2191", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/RhettAllain/2191/9_U6M7ODM129DNCWX76083WYEQFVYRIR.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/RhettAllain/2191/2_7L3O42LTMDY5W95XMIUE1O0XNE9I2S.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain/2191/8_4FSXLJM6N7QQVV3P2ZHKXYUDUULVIR.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/RhettAllain/2191/9_U6M7ODM129DNCWX76083WYEQFVYRIR.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/RhettAllain:2191", "plots": "https://api.plotly.com/v2/plots/RhettAllain:2191", "parent": "https://api.plotly.com/v2/folders/home?user=RhettAllain" }, "owner": "RhettAllain", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 30843, "web_url": "https://chart-studio.plotly.com/~RhettAllain/2191/", "world_readable": true, "date_modified": "2019-03-20T23:08:59.351Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~RhettAllain/2191/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(255,0,0)", "width": 3 }, "mode": "lines", "name": "Kinetic", "type": "scatter", "xsrc": "RhettAllain:2190:732429", "ysrc": "RhettAllain:2190:eb49dd", "visible": true, "showlegend": true }, { "line": { "color": "rgb(0,255,0)", "width": 3 }, "mode": "lines", "name": "Potential", "type": "scatter", "xsrc": "RhettAllain:2190:732429", "ysrc": "RhettAllain:2190:fb70d8", "marker": { "size": 6, "color": "rgb(0,255,0)" }, "visible": true, "showlegend": true }, { "line": { "color": "rgb(0,0,255)", "width": 3 }, "mode": "lines", "name": "Total", "type": "scatter", "xsrc": "RhettAllain:2190:732429", "ysrc": "RhettAllain:2190:582cb3", "marker": { "size": 6, "color": "rgb(0,0,255)" }, "visible": true, "showlegend": true } ], "frames": [], "layout": { "font": { "size": 11, "family": "Arial" }, "title": { "text": "Energy of Object + Planet" }, "width": 480, "xaxis": { "type": "linear", "range": [ 7981411.565888542, 11175493.882056372 ], "title": { "font": { "size": 15, "family": "Arial" }, "text": "Distance from Planet [m]" }, "mirror": "ticks", "showgrid": false, "showline": true, "tickfont": { "size": 14, "family": "Arial" }, "zeroline": true, "autorange": false, "gridcolor": "rgb(0, 0, 0)", "linecolor": { "x": 0, "y": 0, "z": 0 }, "linewidth": 3, "showexponent": "all", "exponentformat": "e" }, "yaxis": { "type": "linear", "range": [ -8012100.346532923, 5193807.101083509 ], "title": { "font": { "size": 15, "family": "Arial" }, "text": "Energy [J}" }, "mirror": "ticks", "showgrid": false, "showline": true, "tickfont": { "size": 14, "family": "Arial" }, "zeroline": true, "autorange": false, "gridcolor": "rgb(0, 0, 0)", "linecolor": { "x": 0, "y": 0, "z": 0 }, "linewidth": 3, "showexponent": "all", "exponentformat": "e" }, "height": 300, "legend": { "x": 0.7817794486215538, "y": 0.9818181818181818 }, "margin": { "b": 45, "l": 80, "r": 20, "t": 35, "pad": 4 }, "plot_bgcolor": "rgb(255,255,255)" } }, "height": 300, "width": 480, "user": { "profile_url": "https://chart-studio.plotly.com/~RhettAllain", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1406305592.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "Physics faculty and Wired Science Blogger.", "nickname": "Rhett Allain", "website": "http://www.wired.com/wiredscience/dotphysics", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2013-12-15 03:15:06", "mapbox_access_tokens": null, "has_password": null, "username": "RhettAllain", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:08:41.153654Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~niklasm/59.embed", "fid": "niklasm:59", "filename": "week_light", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/niklasm:59/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/niklasm:59/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/niklasm:59/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/niklasm:59/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/niklasm:59", "plots": "https://api.plotly.com/v2/plots/niklasm:59", "parent": "https://api.plotly.com/v2/folders/home?user=niklasm" }, "owner": "niklasm", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Light", "views": 273, "web_url": "https://chart-studio.plotly.com/~niklasm/59/light/", "world_readable": true, "date_modified": "2019-05-03T01:15:23.492Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~niklasm/59/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "8334f20b-f0c0-4658-bc82-7a84e5e8fc43", "line": { "width": 4 }, "name": "visible", "type": "scatter", "xsrc": "niklasm:60:45e936", "ysrc": "niklasm:60:c6b33c" }, { "uid": "a0252e3c-f5a6-44d2-b806-7873ea81a785", "line": { "width": 4 }, "name": "infrared", "type": "scatter", "xsrc": "niklasm:60:45e936", "ysrc": "niklasm:60:041852" } ], "layout": { "title": { "text": "Light" }, "width": 700, "xaxis": { "title": { "text": "Date" }, "ticktext": [ "Thursday- 20:15:14\"", "Thursday- 20:20:50\"", "Thursday- 20:26:00\"", "Thursday- 20:31:30\"", "Thursday- 20:36:45\"", "Thursday- 20:41:46\"", "Thursday- 20:46:59\"" ], "tickvals": [ 0, 1, 2, 3, 4, 5, 6 ], "tickangle": 45 }, "yaxis": { "title": { "text": "log Lux" } }, "height": 500 } }, "height": 500, "width": 700, "user": { "profile_url": "https://chart-studio.plotly.com/~niklasm", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2018-10-30 05:40:03", "mapbox_access_tokens": null, "has_password": null, "username": "niklasm", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:08:31.085777Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~niklasm/57.embed", "fid": "niklasm:57", "filename": "week_co2", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/niklasm:57/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/niklasm:57/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/niklasm:57/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/niklasm:57/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/niklasm:57", "plots": "https://api.plotly.com/v2/plots/niklasm:57", "parent": "https://api.plotly.com/v2/folders/home?user=niklasm" }, "owner": "niklasm", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "CO2 Pressure", "views": 273, "web_url": "https://chart-studio.plotly.com/~niklasm/57/co2-pressure/", "world_readable": true, "date_modified": "2019-05-03T01:15:01.719Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~niklasm/57/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "7c760fc0-ce0e-485d-b0f7-3f65f379eab3", "line": { "width": 4 }, "name": "value", "type": "scatter", "xsrc": "niklasm:58:789f2f", "ysrc": "niklasm:58:c6caf8" } ], "layout": { "title": { "text": "CO2 Pressure" }, "width": 700, "xaxis": { "title": { "text": "Date" }, "ticktext": [ "Thursday- 20:14:44\"", "Thursday- 20:20:50\"", "Thursday- 20:26:00\"", "Thursday- 20:31:30\"", "Thursday- 20:36:45\"", "Thursday- 20:41:46\"", "Thursday- 20:46:59\"" ], "tickvals": [ 0, 1, 2, 3, 4, 5, 6 ], "tickangle": 45 }, "yaxis": { "title": { "text": "PSI" } }, "height": 500 } }, "height": 500, "width": 700, "user": { "profile_url": "https://chart-studio.plotly.com/~niklasm", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2018-10-30 05:40:03", "mapbox_access_tokens": null, "has_password": null, "username": "niklasm", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:07:23.433713Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~tiago.manuel.s.goncalves/1.embed", "fid": "tiago.manuel.s.goncalves:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/tiago.manuel.s.goncalves:1/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/tiago.manuel.s.goncalves/1/2_IIIRFWUKJL1AH8JI83W4JEH0AKGF04.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tiago.manuel.s.goncalves/1/8_G2DD92KA3OJ6354QZYV9T16S4WA8SA.png", "list-thumb": "https://api.plotly.com/v2/files/tiago.manuel.s.goncalves:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/tiago.manuel.s.goncalves:1", "plots": "https://api.plotly.com/v2/plots/tiago.manuel.s.goncalves:1", "parent": "https://api.plotly.com/v2/folders/home?user=tiago.manuel.s.goncalves" }, "owner": "tiago.manuel.s.goncalves", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~tiago.manuel.s.goncalves/1/", "world_readable": true, "date_modified": "2019-03-20T23:07:23.448Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~tiago.manuel.s.goncalves/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "f1bd19", "mode": "markers", "type": "scatter", "xsrc": "tiago.manuel.s.goncalves:0:1bcd12", "ysrc": "tiago.manuel.s.goncalves:0:124b9f" }, { "uid": "32f5ee", "transforms": [ { "rms": "", "type": "fit", "inputUid": "f1bd19", "regressor": "x", "parameters": [ { "hold": false, "name": "m", "error": 9.816450258415633, "value": 533.9117736825986 }, { "hold": false, "name": "b", "error": 188212.1998701249, "value": 5324684.875619836 } ], "regressand": "y", "correlation": "", "fitfunction": "m*x + b", "inputxrange": [], "outputxrange": [], "interpolation": 50 } ] } ], "frames": [], "layout": { "title": { "text": "Tempo de execução face ao número de routers da rede" }, "xaxis": { "type": "linear", "range": [ -1905.0393852065322, 34718.03938520653 ], "title": { "text": "Número de routers" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 3298733.188485804, 38311653.8115142 ], "title": { "text": "Tempo de execução (ns)" }, "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/~tiago.manuel.s.goncalves", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.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-03-20 23:06:59", "mapbox_access_tokens": null, "has_password": null, "username": "tiago.manuel.s.goncalves", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:07:02.733694Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~marwatkhan/3.embed", "fid": "marwatkhan:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/marwatkhan:3/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/marwatkhan:3/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marwatkhan/3/8_WK3L579CTMFWJ3VMZ01P2LP877E61Q.png", "list-thumb": "https://api.plotly.com/v2/files/marwatkhan:3/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/marwatkhan:3", "plots": "https://api.plotly.com/v2/plots/marwatkhan:3", "parent": "https://api.plotly.com/v2/folders/home?user=marwatkhan" }, "owner": "marwatkhan", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~marwatkhan/3/", "world_readable": true, "date_modified": "2019-03-20T23:07:02.754Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~marwatkhan/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "lines", "type": "scatter", "xsrc": "marwatkhan:2:455b72", "ysrc": "marwatkhan:2:2fcbd3" }, { "mode": "lines", "type": "scatter", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ 218.80626502374537, 1339.828694266882 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ 1.8248043608342701, 2.508793524504992 ], "autorange": false }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~marwatkhan", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-20 23:00:30", "mapbox_access_tokens": null, "has_password": null, "username": "marwatkhan", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:05:07.484022Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jao2179/1.embed", "fid": "jao2179:1", "filename": "simple_candlestick", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/jao2179:1/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jao2179/1/2_DHX5JGBFDNFWX6JUTV6CETIKBWO4SI.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jao2179/1/8_82TALBPDDOKEHZRRUGE5Y42YL49791.png", "list-thumb": "https://api.plotly.com/v2/files/jao2179:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jao2179:1", "plots": "https://api.plotly.com/v2/plots/jao2179:1", "parent": "https://api.plotly.com/v2/folders/home?user=jao2179" }, "owner": "jao2179", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~jao2179/1/", "world_readable": true, "date_modified": "2019-03-20T23:05:07.962Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jao2179/1/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "cdda4592-28c0-4e41-a048-e3ae0f95d50a", "type": "ohlc", "xsrc": "jao2179:2:5ecda0", "lowsrc": "jao2179:2:60c92d", "highsrc": "jao2179:2:83bee9", "opensrc": "jao2179:2:fad982", "closesrc": "jao2179:2:5c27fa" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jao2179", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-20 18:30:54", "mapbox_access_tokens": null, "has_password": null, "username": "jao2179", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:04:58.553722Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~ndingibr/0.embed", "fid": "ndingibr:0", "filename": "simple_candlestick", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/ndingibr:0/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/ndingibr/0/2_9B1JIJCZUPDDCXKLQFR6KM2DRAT5VX.png", "block-thumb": "https://api.plotly.com/v2/files/ndingibr:0/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/ndingibr:0/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/ndingibr:0", "plots": "https://api.plotly.com/v2/plots/ndingibr:0", "parent": "https://api.plotly.com/v2/folders/home?user=ndingibr" }, "owner": "ndingibr", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~ndingibr/0/", "world_readable": true, "date_modified": "2019-04-04T10:47:13.180Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~ndingibr/0/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "ohlc", "xsrc": "ndingibr:1:3a5fb7", "lowsrc": "ndingibr:1:692fe5", "highsrc": "ndingibr:1:c6548b", "opensrc": "ndingibr:1:ba0f27", "closesrc": "ndingibr:1:688bfd" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~ndingibr", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-20 23:00:04", "mapbox_access_tokens": null, "has_password": null, "username": "ndingibr", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:03:43.734597Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~halilylmz93/1.embed", "fid": "halilylmz93:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/halilylmz93:1/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/halilylmz93:1/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/halilylmz93/1/8_GVC3OGS5TJ193XCS7JINM3NPNOPL8R.png", "list-thumb": "https://api.plotly.com/v2/files/halilylmz93:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/halilylmz93:1", "plots": "https://api.plotly.com/v2/plots/halilylmz93:1", "parent": "https://api.plotly.com/v2/folders/home?user=halilylmz93" }, "owner": "halilylmz93", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~halilylmz93/1/", "world_readable": true, "date_modified": "2019-03-20T23:03:43.791Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~halilylmz93/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "lines", "type": "scatter", "ysrc": "halilylmz93:0:63ab83" } ], "frames": [], "layout": { "xaxis": { "range": [ 0, 4196 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -28.555555555555554, 542.5555555555555 ], "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/~halilylmz93", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-20 23:03:17", "mapbox_access_tokens": null, "has_password": null, "username": "halilylmz93", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2019-03-20T23:02:00.809627Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~pyerabati/4.embed", "fid": "pyerabati:4", "filename": "plot_3", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/pyerabati:4/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/pyerabati:4/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pyerabati/4/8_QJYNA8NK07EADLJ4IP58KJ1MVYX50A.png", "list-thumb": "https://api.plotly.com/v2/files/pyerabati:4/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/pyerabati:4", "plots": "https://api.plotly.com/v2/plots/pyerabati:4", "parent": "https://api.plotly.com/v2/folders/home?user=pyerabati" }, "owner": "pyerabati", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Term Deposit Opted Counts in each Job Category", "views": 0, "web_url": "https://chart-studio.plotly.com/~pyerabati/4/term-deposit-opted-counts-in-each-job-category/", "world_readable": true, "date_modified": "2019-03-21T21:12:52.803Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~pyerabati/4/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "bar", "xsrc": "pyerabati:5:7374ca", "ysrc": "pyerabati:5:25495b" } ], "layout": { "title": "Term Deposit Opted Counts in each Job Category" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~pyerabati", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-17 23:41:50", "mapbox_access_tokens": null, "has_password": null, "username": "pyerabati", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "