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=cD0yMDE5LTA2LTE3KzIwJTNBMjglM0EwOC4wODc5MzYlMkIwMCUzQTAw&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzIwJTNBMjYlM0EyNC4zMTU3ODYlMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysyMCUzQTI3JTNBNTIuNDQ1NDAxJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2019-06-17T20:27:52.445401Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~msubasri/11.embed", "fid": "msubasri:11", "filename": "Plot 11", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/msubasri:11/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/msubasri:11/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/msubasri:11/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/msubasri:11/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/msubasri:11", "plots": "https://api.plotly.com/v2/plots/msubasri:11", "parent": "https://api.plotly.com/v2/folders/home?user=msubasri" }, "owner": "msubasri", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~msubasri/11/", "world_readable": true, "date_modified": "2019-06-17T20:27:52.467Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~msubasri/11/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "d0a19c", "type": "heatmap", "xgap": 10, "xsrc": "msubasri:10:966c07", "ygap": 10, "ysrc": "msubasri:10:5dd276", "zmax": 2.7, "zmin": 0, "zsrc": "msubasri:10:-966c07,5dd276", "colorbar": { "borderwidth": 0 }, "showscale": true, "transpose": false, "colorscale": [ [ 0, "rgba(255,255,255,1)" ], [ 1, "rgba(50,96,149,1)" ] ], "borderwidth": 0 } ], "frames": [], "layout": { "xaxis": { "side": "top", "type": "category", "range": [ -0.5, 30.5 ], "ticks": "", "title": { "text": "Click to enter X axis title" }, "autorange": true, "tickangle": -30 }, "yaxis": { "type": "category", "range": [ -0.5, 1.5 ], "autorange": true }, "legend": { "borderwidth": 0 }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~msubasri", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.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-04 17:17:06", "mapbox_access_tokens": null, "has_password": null, "username": "msubasri", "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-17T20:27:51.703202Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Ethan.sun/18.embed", "fid": "Ethan.sun:18", "filename": "lgb_importance", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/Ethan.sun:18/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Ethan.sun/18/2_C1CHWCJGPE96WOZH08U0GA81C7NNVL.png", "block-thumb": "https://api.plotly.com/v2/files/Ethan.sun:18/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/Ethan.sun:18/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Ethan.sun:18", "plots": "https://api.plotly.com/v2/plots/Ethan.sun:18", "parent": "https://api.plotly.com/v2/folders/home?user=Ethan.sun" }, "owner": "Ethan.sun", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Ethan.sun/18/", "world_readable": true, "date_modified": "2019-06-26T12:02:39.558Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Ethan.sun/18/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "ad7634c2-13eb-462f-b597-049c1e57a254", "type": "bar", "xsrc": "Ethan.sun:19:5e8964", "ysrc": "Ethan.sun:19:383b37" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Ethan.sun", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-06-14 15:22:51", "mapbox_access_tokens": null, "has_password": null, "username": "Ethan.sun", "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-17T20:27:39.952701Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~priya_jain/82.embed", "fid": "priya_jain:82", "filename": "plot from API (24)", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/priya_jain:82/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/priya_jain/82/2_AD337W052P5IMBUZDYZWP5H3Y8F9K6.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/priya_jain/82/8_CEQGPNSRAZ07RX9PLMAMNXQY97BOK1.png", "list-thumb": "https://api.plotly.com/v2/files/priya_jain:82/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/priya_jain:82", "plots": "https://api.plotly.com/v2/plots/priya_jain:82", "parent": "https://api.plotly.com/v2/folders/home?user=priya_jain" }, "owner": "priya_jain", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Mic Patterns", "views": 0, "web_url": "https://chart-studio.plotly.com/~priya_jain/82/mic-patterns/", "world_readable": true, "date_modified": "2019-06-18T23:58:53.255Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~priya_jain/82/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "d20f638f-8445-4935-9ffe-57e651c9c796", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "fc212222-89f9-4d41-a438-b03bf551b61b", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "01d5ab47-4d80-4052-b9c1-2f6ef4de2eda", "mode": "lines", "rsrc": "priya_jain:83:b73706", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "42ae0543-0441-4bb9-a24c-7047b8f0fcca", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "4af3ed49-8048-434c-9a88-e26150ee9c76", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "fa04e522-9914-4285-9d91-1e590bcf7684", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "3ff3fc51-35c8-42bd-a234-e1cf1b5e0eb7", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "31b5bd30-f6ed-4a22-afbd-1446bd230450", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "553ec35c-c5ee-4f35-877f-33a1af78314c", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "76c888b9-9f5a-44c2-bb30-87ba38549dac", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "5a73d2c6-61c8-4757-a075-1e0f1fc47a93", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "4bdb681b-a491-4fbb-9e53-4a51f3b3386b", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "32681b1b-7c9f-49b7-a7ec-c29d5817b9dd", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "6771b372-907b-4787-91fd-93a822da90af", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "cea3860b-abb8-44ff-bc51-42b9d340a98c", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "1ea78914-58a4-426d-a724-29a4bb4b70db", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" }, { "uid": "c22b91b2-f93c-4931-9afe-a1be9561b98d", "mode": "lines", "rsrc": "priya_jain:83:c71641", "type": "scatterpolar", "thetasrc": "priya_jain:83:4d39ef" } ], "layout": { "font": { "size": 12, "color": "#000", "family": "Arial, sans-serif;" }, "title": { "text": "Mic Patterns" }, "showlegend": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~priya_jain", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-05-14 22:43:04", "mapbox_access_tokens": null, "has_password": null, "username": "priya_jain", "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-17T20:27:26.158122Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~bham/0.embed", "fid": "bham:0", "filename": "plot from API", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/bham:0/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/bham:0/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/bham:0/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/bham:0/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/bham:0", "plots": "https://api.plotly.com/v2/plots/bham:0", "parent": "https://api.plotly.com/v2/folders/home?user=bham" }, "owner": "bham", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~bham/0/", "world_readable": true, "date_modified": "2019-06-17T20:27:26.786Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~bham/0/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "509d08ea-c621-4d74-9136-2830f3a6392b", "type": "histogram", "xsrc": "bham:1:2741b3" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~bham", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-06-17 17:53:23", "mapbox_access_tokens": null, "has_password": null, "username": "bham", "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-17T20:27:12.354161Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jingwenc/97.embed", "fid": "jingwenc:97", "filename": "plot from API (4)", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/jingwenc:97/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jingwenc/97/2_1E7GD6IW3I7M9HWI5WAR5F4L9JB86G.png", "block-thumb": "https://api.plotly.com/v2/files/jingwenc:97/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/jingwenc:97/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jingwenc:97", "plots": "https://api.plotly.com/v2/plots/jingwenc:97", "parent": "https://api.plotly.com/v2/folders/home?user=jingwenc" }, "owner": "jingwenc", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Time series with range slider and selectors", "views": 1, "web_url": "https://chart-studio.plotly.com/~jingwenc/97/time-series-with-range-slider-and-selectors/", "world_readable": true, "date_modified": "2019-06-17T20:27:12.773Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jingwenc/97/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "9d29a21e-2d07-4f8b-9041-1353683fa4d0", "type": "scatter", "xsrc": "jingwenc:98:b7d6a5", "ysrc": "jingwenc:98:10fac3" }, { "uid": "ef981b3c-4028-4108-83b3-698810bd2c10", "type": "scatter", "xsrc": "jingwenc:98:b7d6a5", "ysrc": "jingwenc:98:64ddf7" } ], "layout": { "title": { "text": "Time series with range slider and selectors" }, "xaxis": { "type": "date", "rangeslider": { "visible": true }, "rangeselector": { "buttons": [ { "step": "month", "count": 1, "label": "1m", "stepmode": "backward" }, { "step": "month", "count": 6, "label": "6m", "stepmode": "backward" }, { "step": "year", "count": 1, "label": "YTD", "stepmode": "todate" }, { "step": "year", "count": 1, "label": "1y", "stepmode": "backward" }, { "step": "all" } ] } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jingwenc", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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": "2018-02-20 18:49:11", "mapbox_access_tokens": null, "has_password": null, "username": "jingwenc", "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-17T20:27:05.277943Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~siboraseranaj/106.embed", "fid": "siboraseranaj:106", "filename": "plot from API (16)", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/siboraseranaj:106/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/siboraseranaj:106/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/siboraseranaj/106/8_NII6M5IE57AP451W2KOBXWREPPQS62.png", "list-thumb": "https://api.plotly.com/v2/files/siboraseranaj:106/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/siboraseranaj:106", "plots": "https://api.plotly.com/v2/plots/siboraseranaj:106", "parent": "https://api.plotly.com/v2/folders/home?user=siboraseranaj" }, "owner": "siboraseranaj", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Most frequent Customers (Pre-Tamr and Post-Tamr)", "views": 1, "web_url": "https://chart-studio.plotly.com/~siboraseranaj/106/most-frequent-customers-pre-tamr-and-post-tamr/", "world_readable": true, "date_modified": "2019-06-17T20:27:05.884Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~siboraseranaj/106/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "17994d7b-4d04-477c-92c6-c1281b552f39", "name": "Pre-Tamr", "type": "bar", "xsrc": "siboraseranaj:107:d62767", "ysrc": "siboraseranaj:107:6bce2c", "xaxis": "x", "yaxis": "y", "marker": { "colorsrc": "siboraseranaj:107:1e6c80" }, "orientation": "h" }, { "uid": "c6d5838c-19b1-4442-93a2-6c5559880acd", "name": "Post-Tamr", "type": "bar", "xsrc": "siboraseranaj:107:3dc0fd", "ysrc": "siboraseranaj:107:c81095", "xaxis": "x2", "yaxis": "y2", "marker": { "colorsrc": "siboraseranaj:107:8ac35c" }, "orientation": "h" } ], "layout": { "title": { "text": "Most frequent Customers (Pre-Tamr and Post-Tamr)" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 0.45 ], "showgrid": true, "showline": true, "zeroline": false, "showticklabels": true }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "showgrid": false, "showline": true, "showticklabels": false }, "legend": { "x": 0.7, "y": 1.188, "font": { "size": 10 } }, "margin": { "b": 70, "l": 50, "r": 20, "t": 150 }, "xaxis2": { "anchor": "y2", "domain": [ 0.55, 1.0 ], "showgrid": true, "showline": true, "zeroline": false, "showticklabels": true }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 1.0 ], "showgrid": false, "showline": true, "showticklabels": false }, "annotations": [ { "align": "left" } ], "plot_bgcolor": "rgb(248, 248, 255)", "paper_bgcolor": "rgb(248, 248, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~siboraseranaj", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-06-16 00:20:40", "mapbox_access_tokens": null, "has_password": null, "username": "siboraseranaj", "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-17T20:26:59.944244Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~msubasri/9.embed", "fid": "msubasri:9", "filename": "Plot 9", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/msubasri:9/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/msubasri:9/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/msubasri:9/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/msubasri:9/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/msubasri:9", "plots": "https://api.plotly.com/v2/plots/msubasri:9", "parent": "https://api.plotly.com/v2/folders/home?user=msubasri" }, "owner": "msubasri", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~msubasri/9/", "world_readable": true, "date_modified": "2019-06-17T20:26:59.960Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~msubasri/9/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "d0a19c", "type": "heatmap", "xgap": 10, "xsrc": "msubasri:8:5b77e5", "ygap": 10, "ysrc": "msubasri:8:8d3974", "zmax": 2.7, "zmin": 0, "zsrc": "msubasri:8:-5b77e5,8d3974", "colorbar": { "borderwidth": 0 }, "showscale": true, "colorscale": [ [ 0, "rgba(255,255,255,1)" ], [ 1, "rgba(50,96,149,1)" ] ], "borderwidth": 0 } ], "frames": [], "layout": { "xaxis": { "side": "top", "type": "category", "range": [ -0.5, 30.5 ], "ticks": "", "autorange": true, "tickangle": -30 }, "yaxis": { "type": "category", "range": [ -0.5, 1.5 ], "autorange": true }, "legend": { "borderwidth": 0 }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~msubasri", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.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-04 17:17:06", "mapbox_access_tokens": null, "has_password": null, "username": "msubasri", "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-17T20:26:47.379217Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~annacallahan/59.embed", "fid": "annacallahan:59", "filename": "Plot 59", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/annacallahan/59/9_J0JGADLPQV37I9UMJCVOPDYCJJVOK4.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/annacallahan/59/2_CZBJ471KPSBMUNMQW159DP1Z1V6Q5W.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/annacallahan/59/8_DKXOOOYSPB8GL5Y26AWGH6O6ZBSISY.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/annacallahan/59/9_J0JGADLPQV37I9UMJCVOPDYCJJVOK4.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/annacallahan:59", "plots": "https://api.plotly.com/v2/plots/annacallahan:59", "parent": "https://api.plotly.com/v2/folders/home?user=annacallahan" }, "owner": "annacallahan", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~annacallahan/59/", "world_readable": true, "date_modified": "2019-06-17T23:06:20.100Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~annacallahan/59/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "lines", "type": "scatter", "xsrc": "annacallahan:58:be805a", "ysrc": "annacallahan:58:7a53c1" } ], "frames": [], "layout": { "title": { "text": "311 Cases at 16th and Mission - Percent Street Cleaning Requests" }, "xaxis": { "type": "date", "range": [ "2007-10-03 15:39:27.7263", "2019-06-01" ], "title": { "text": "time" }, "autorange": false }, "yaxis": { "type": "linear", "range": [ 14.794990396224641, 82.73319092666057 ], "title": { "text": "% requests for street/sidewalk cleaning" }, "autorange": false }, "shapes": [ { "x0": "2015-07-01 05:44:35.7947", "x1": "2015-07-01 09:54:51.9316", "y0": 0, "y1": 100, "line": { "dash": "dot", "color": "rgb(255, 26, 26)", "width": 2 }, "type": "line", "yref": "y", "opacity": 1, "fillcolor": "#7f7f7f" } ], "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" }, "annotations": [ { "x": "2015-08-20 13:07:11.2959", "y": 75.12138585050805, "ax": 67, "ay": -1, "text": "pit stop installed" } ] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~annacallahan", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.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-19 14:31:32", "mapbox_access_tokens": null, "has_password": null, "username": "annacallahan", "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-17T20:26:44.800487Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jingwenc/95.embed", "fid": "jingwenc:95", "filename": "plot from API (2)", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/jingwenc:95/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jingwenc/95/2_8ESGXRNMBFGDDAKGWKLPO6LBR577FU.png", "block-thumb": "https://api.plotly.com/v2/files/jingwenc:95/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/jingwenc:95/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jingwenc:95", "plots": "https://api.plotly.com/v2/plots/jingwenc:95", "parent": "https://api.plotly.com/v2/folders/home?user=jingwenc" }, "owner": "jingwenc", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Time series with range slider and selectors", "views": 1, "web_url": "https://chart-studio.plotly.com/~jingwenc/95/time-series-with-range-slider-and-selectors/", "world_readable": true, "date_modified": "2019-06-17T20:26:45.333Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jingwenc/95/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "47ded799-d70a-47e6-bb40-a0fb79c93524", "type": "scatter", "xsrc": "jingwenc:96:d79e57", "ysrc": "jingwenc:96:480204" }, { "uid": "8464b670-f912-4387-b1d9-4662504f89b3", "type": "scatter", "xsrc": "jingwenc:96:d79e57", "ysrc": "jingwenc:96:8cd042" } ], "layout": { "title": { "text": "Time series with range slider and selectors" }, "xaxis": { "type": "date", "rangeslider": { "visible": true }, "rangeselector": { "buttons": [ { "step": "month", "count": 1, "label": "1m", "stepmode": "backward" }, { "step": "month", "count": 6, "label": "6m", "stepmode": "backward" }, { "step": "year", "count": 1, "label": "YTD", "stepmode": "todate" }, { "step": "year", "count": 1, "label": "1y", "stepmode": "backward" }, { "step": "all" } ] } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jingwenc", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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": "2018-02-20 18:49:11", "mapbox_access_tokens": null, "has_password": null, "username": "jingwenc", "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-17T20:26:24.315786Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~siboraseranaj/104.embed", "fid": "siboraseranaj:104", "filename": "plot from API (15)", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/siboraseranaj:104/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/siboraseranaj:104/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/siboraseranaj/104/8_E98FZL4FP0NS9J92OG4B0HOD0261IK.png", "list-thumb": "https://api.plotly.com/v2/files/siboraseranaj:104/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/siboraseranaj:104", "plots": "https://api.plotly.com/v2/plots/siboraseranaj:104", "parent": "https://api.plotly.com/v2/folders/home?user=siboraseranaj" }, "owner": "siboraseranaj", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Most frequent Customers (Pre-Tamr and Post-Tamr)", "views": 1, "web_url": "https://chart-studio.plotly.com/~siboraseranaj/104/most-frequent-customers-pre-tamr-and-post-tamr/", "world_readable": true, "date_modified": "2019-06-17T20:26:24.816Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~siboraseranaj/104/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "b0bbae8a-61c9-459c-879c-40551d029d93", "name": "Pre-Tamr", "type": "bar", "xsrc": "siboraseranaj:105:e66d65", "ysrc": "siboraseranaj:105:317a0e", "xaxis": "x", "yaxis": "y", "marker": { "colorsrc": "siboraseranaj:105:d20dab" }, "orientation": "h" }, { "uid": "a0cb7e5e-ee14-4ce9-a1ba-698a9ee179f5", "name": "Post-Tamr", "type": "bar", "xsrc": "siboraseranaj:105:9180cc", "ysrc": "siboraseranaj:105:d03053", "xaxis": "x2", "yaxis": "y2", "marker": { "colorsrc": "siboraseranaj:105:dffb5d" }, "orientation": "h" } ], "layout": { "title": { "text": "Most frequent Customers (Pre-Tamr and Post-Tamr)" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 0.45 ], "showgrid": true, "showline": true, "zeroline": false, "showticklabels": true }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "showgrid": false, "showline": true, "showticklabels": false }, "legend": { "x": 0.7, "y": 1.188, "font": { "size": 10 } }, "margin": { "b": 70, "l": 50, "r": 20, "t": 150 }, "xaxis2": { "anchor": "y2", "domain": [ 0.55, 1.0 ], "showgrid": true, "showline": true, "zeroline": false, "showticklabels": true }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 1.0 ], "showgrid": false, "showline": true, "showticklabels": false }, "plot_bgcolor": "rgb(248, 248, 255)", "paper_bgcolor": "rgb(248, 248, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~siboraseranaj", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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-06-16 00:20:40", "mapbox_access_tokens": null, "has_password": null, "username": "siboraseranaj", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "