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=cj0xJnA9MjAxOS0wNi0xNysxMiUzQTM5JTNBNDAuOTU1NzAyJTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE3KzEyJTNBMzklM0E0Mi4zMjc5NDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxMiUzQTQzJTNBNDkuMzE3ODk4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T12:43:49.317898Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jayachandran4/1.embed",
            "fid": "jayachandran4:1",
            "filename": "sample",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jayachandran4/1/9_XDAH585C5QQAFV6PZ353HBKFMK4XFN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jayachandran4/1/2_70JHK7KP0ISW6BW4Q2WZLDRY9ISSO5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jayachandran4/1/8_6BQ006K4PK73OQSZWJPF3DYSC7CXKI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jayachandran4/1/9_XDAH585C5QQAFV6PZ353HBKFMK4XFN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jayachandran4:1",
                "plots": "https://api.plotly.com/v2/plots/jayachandran4:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jayachandran4"
            },
            "owner": "jayachandran4",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~jayachandran4/1/",
            "world_readable": true,
            "date_modified": "2019-06-19T06:55:29.595Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jayachandran4/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4a861970-aaf2-11e8-aca7-9cb6d011dde2",
                        "meta": {
                            "columnNames": {
                                "x": "y",
                                "y": "x"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "jayachandran4:0:260498",
                        "ysrc": "jayachandran4:0:b550a4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0, 0, 0, 1)",
                                "width": 1
                            },
                            "size": 4.47213595499958,
                            "color": "rgba(0,0,255,1.0)",
                            "symbol": "circle"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -27.440088494077834,
                            -15.814511505922166
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "absMagR"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 7,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10
                        },
                        "zeroline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.07575664621676889,
                            2.065756646216769
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "(g-r)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 7,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10
                        },
                        "zeroline": false,
                        "autorange": true
                    },
                    "height": 288,
                    "margin": {
                        "b": 36,
                        "l": 54,
                        "r": 43,
                        "t": 28,
                        "pad": 0
                    },
                    "autosize": false,
                    "dragmode": "zoom",
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jayachandran4",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.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-06-17 12:43:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jayachandran4",
                "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-17T12:43:13.020865Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~claudb1510/0.embed",
            "fid": "claudb1510:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/claudb1510/0/9_ZVTN1PDQPYFIG7BK5KOL6H0HI48J9X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/claudb1510/0/2_ICJ7S50HIR5F6IXJGX2KSPHJXNEYNJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/claudb1510/0/8_J2QVMF6CSU387U79D7D83WBDHRZZOO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/claudb1510/0/9_ZVTN1PDQPYFIG7BK5KOL6H0HI48J9X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/claudb1510:0",
                "plots": "https://api.plotly.com/v2/plots/claudb1510:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=claudb1510"
            },
            "owner": "claudb1510",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~claudb1510/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:43:13.484Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~claudb1510/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3757d7ab-619c-408d-954b-91aece7686d1",
                        "type": "box",
                        "ysrc": "claudb1510:1:c6f857"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~claudb1510",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-06-17 12:41:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "claudb1510",
                "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-17T12:43:04.404955Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ldwhitmire/14.embed",
            "fid": "ldwhitmire:14",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/14/9_I6NYS4VXCFIZ6SO151UICWN9JW6ONZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/14/2_KN34KA78BJK9JTEZ0I95M68NUAREFZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/14/8_TIIX1FGPZQAIE6KZ92IUIAAE8QYRPU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/14/9_I6NYS4VXCFIZ6SO151UICWN9JW6ONZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ldwhitmire:14",
                "plots": "https://api.plotly.com/v2/plots/ldwhitmire:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=ldwhitmire"
            },
            "owner": "ldwhitmire",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "tsne",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~ldwhitmire/14/tsne/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:43:04.878Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ldwhitmire/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "446d7767-07e2-418c-a19c-9d8cd2340744",
                        "mode": "markers",
                        "name": "middle",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:15:7f7ff0",
                        "ysrc": "ldwhitmire:15:7a3e87",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(228,26,28)"
                        },
                        "textsrc": "ldwhitmire:15:dffb85"
                    },
                    {
                        "uid": "d6704d51-b572-43f8-ae3e-9f7d05cfe55a",
                        "mode": "markers",
                        "name": "late",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:15:026b1d",
                        "ysrc": "ldwhitmire:15:c4e55d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(55,126,184)"
                        },
                        "textsrc": "ldwhitmire:15:dffb85"
                    },
                    {
                        "uid": "5d97b378-3f2a-4e86-a3b4-3ded7a45894b",
                        "mode": "markers",
                        "name": "early",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:15:62b657",
                        "ysrc": "ldwhitmire:15:2183b0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(77,175,74)"
                        },
                        "textsrc": "ldwhitmire:15:dffb85"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "tsne"
                    },
                    "xaxis": {
                        "title": {
                            "text": "tsne1"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "tsne2"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ldwhitmire",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-05-02 14:16:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ldwhitmire",
                "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-17T12:42:47.528834Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ldwhitmire/12.embed",
            "fid": "ldwhitmire:12",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/12/9_5B4BTE02SQRMHQ21X80UC3U36H1B4E.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ldwhitmire:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ldwhitmire:12/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ldwhitmire/12/9_5B4BTE02SQRMHQ21X80UC3U36H1B4E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ldwhitmire:12",
                "plots": "https://api.plotly.com/v2/plots/ldwhitmire:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=ldwhitmire"
            },
            "owner": "ldwhitmire",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "tsne",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ldwhitmire/12/tsne/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:42:48.694Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ldwhitmire/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ca961e5a-20d6-4c30-8e64-8b22f148438d",
                        "mode": "markers",
                        "name": "middle",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:13:400a1a",
                        "ysrc": "ldwhitmire:13:d0dc93",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(228,26,28)"
                        },
                        "textsrc": "ldwhitmire:13:e20fbd"
                    },
                    {
                        "uid": "468f434c-c7ce-43db-9689-f861dcc9a6be",
                        "mode": "markers",
                        "name": "late",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:13:b2e451",
                        "ysrc": "ldwhitmire:13:f60378",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(55,126,184)"
                        },
                        "textsrc": "ldwhitmire:13:e20fbd"
                    },
                    {
                        "uid": "e4f703c5-b6e2-4563-89b9-e03447bc5a1c",
                        "mode": "markers",
                        "name": "early",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:13:b620c7",
                        "ysrc": "ldwhitmire:13:6b87a1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(77,175,74)"
                        },
                        "textsrc": "ldwhitmire:13:e20fbd"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "tsne"
                    },
                    "xaxis": {
                        "title": {
                            "text": "tsne1"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "tsne2"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ldwhitmire",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-05-02 14:16:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ldwhitmire",
                "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-17T12:42:16.516036Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cornenagel/6.embed",
            "fid": "cornenagel:6",
            "filename": "annotated_heatmap",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cornenagel/6/9_3KG5Q00QQ3MBS8UR3NHEQHM6YS2TAF.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cornenagel:6/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cornenagel/6/8_MT3EYQKEN4G90GFY4131W89K8RDC6J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cornenagel/6/9_3KG5Q00QQ3MBS8UR3NHEQHM6YS2TAF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cornenagel:6",
                "plots": "https://api.plotly.com/v2/plots/cornenagel:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=cornenagel"
            },
            "owner": "cornenagel",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cornenagel/6/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:06:53.808Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cornenagel/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cf09f54e-6c80-4be2-a099-511a9da3a06d",
                        "type": "heatmap",
                        "xgap": 2,
                        "xsrc": "cornenagel:7:27279c",
                        "ygap": 2,
                        "ysrc": "cornenagel:7:09a596",
                        "zsrc": "cornenagel:7:34c1b8,d33ee5",
                        "textsrc": "cornenagel:7:bb7f75,549c5e",
                        "colorscale": [
                            [
                                0.0,
                                "rgba(204, 209, 214,0.5)"
                            ],
                            [
                                1.0,
                                "rgba(0,200,255,0.5)"
                            ]
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cornenagel",
                "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": "2017-08-09 20:59:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cornenagel",
                "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-17T12:41:58.650938Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mazenzadwan/60.embed",
            "fid": "mazenzadwan:60",
            "filename": "Lira-Dollar Exchange Rate Jan.2019",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mazenzadwan:60/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/mazenzadwan:60/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mazenzadwan/60/8_XC22EZJPCPUCN7ZA9RUQIPAC75YCXZ.png",
                "list-thumb": "https://api.plotly.com/v2/files/mazenzadwan:60/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mazenzadwan:60",
                "plots": "https://api.plotly.com/v2/plots/mazenzadwan:60",
                "parent": "https://api.plotly.com/v2/folders/home?user=mazenzadwan"
            },
            "owner": "mazenzadwan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~mazenzadwan/60/",
            "world_readable": true,
            "date_modified": "2019-10-03T13:30:30.464Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mazenzadwan/60/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f7e5e7",
                        "meta": {
                            "columnNames": {
                                "x": "التاريخ",
                                "y": "سعر الشراء عند الساعة 12:00"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "mazenzadwan:59:ba309b",
                        "ysrc": "mazenzadwan:59:2401b2",
                        "marker": {
                            "size": 5
                        }
                    },
                    {
                        "uid": "a31914",
                        "line": {
                            "color": "rgb(90, 226, 33)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "التاريخ",
                                "y": "سعر الشراء عند الساعة 12:00"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "mazenzadwan:59:ba309b",
                        "ysrc": "mazenzadwan:59:2401b2"
                    },
                    {
                        "uid": "d9beb3",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "f7e5e7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 1.8241335052005526e-05,
                                        "value": 0.0005551028821242917
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 2.6060261478316,
                                        "value": 509.1487804902082
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "a31e0b",
                        "meta": {
                            "columnNames": {
                                "x": "التاريخ",
                                "y": "السعر عند عملية الشراء"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "mazenzadwan:59:ba309b",
                        "ysrc": "mazenzadwan:59:c01ffb",
                        "marker": {
                            "size": 20,
                            "color": "rgb(250, 144, 99)",
                            "symbol": "cross-thin-open"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "سعر صرف الدولار مقابل الليرة لعام 2019"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2018-12-17 14:05:33.0961",
                            "2020-02-28 21:41:24.8522"
                        ],
                        "title": {
                            "text": "التاريخ"
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            485.91059210967853,
                            710.2378694498652
                        ],
                        "title": {
                            "text": "سعر الدولار"
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.03415701415701411,
                        "y": 1
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "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"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": "2019-05-26 08:01:39.1272",
                            "y": 529.1994727592268,
                            "font": {
                                "size": 16
                            },
                            "text": "",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mazenzadwan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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": "2017-11-02 12:34:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mazenzadwan",
                "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-17T12:41:50.139686Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ldwhitmire/10.embed",
            "fid": "ldwhitmire:10",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ldwhitmire:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ldwhitmire:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ldwhitmire:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ldwhitmire:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ldwhitmire:10",
                "plots": "https://api.plotly.com/v2/plots/ldwhitmire:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=ldwhitmire"
            },
            "owner": "ldwhitmire",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "tsne",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ldwhitmire/10/tsne/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:41:50.603Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ldwhitmire/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a516f8f0-f43d-4387-8f7a-cc0c4d322ff5",
                        "mode": "markers",
                        "name": "middle",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:11:42b924",
                        "ysrc": "ldwhitmire:11:9805e5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(228,26,28)"
                        },
                        "textsrc": "ldwhitmire:11:ee1b23"
                    },
                    {
                        "uid": "78133b3f-dbab-4735-a7db-20c07f616d85",
                        "mode": "markers",
                        "name": "late",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:11:26e205",
                        "ysrc": "ldwhitmire:11:55e925",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(55,126,184)"
                        },
                        "textsrc": "ldwhitmire:11:ee1b23"
                    },
                    {
                        "uid": "fe949b78-e148-4fa3-be48-dbc13fed03f5",
                        "mode": "markers",
                        "name": "early",
                        "type": "scatter",
                        "xsrc": "ldwhitmire:11:c97a74",
                        "ysrc": "ldwhitmire:11:df9f96",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3,
                            "color": "rgb(77,175,74)"
                        },
                        "textsrc": "ldwhitmire:11:ee1b23"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "tsne"
                    },
                    "xaxis": {
                        "title": {
                            "text": "tsne1"
                        },
                        "ticklen": 5,
                        "zeroline": false,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "tsne2"
                        },
                        "ticklen": 5,
                        "gridwidth": 2
                    },
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ldwhitmire",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-05-02 14:16:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ldwhitmire",
                "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-17T12:41:49.179182Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akovacevich/25.embed",
            "fid": "akovacevich:25",
            "filename": "prop_choropleth_2016",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/akovacevich:25/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/akovacevich:25/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/25/8_PCKVBNC187IMIJF0UV36HB6GMO36AC.png",
                "list-thumb": "https://api.plotly.com/v2/files/akovacevich:25/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akovacevich:25",
                "plots": "https://api.plotly.com/v2/plots/akovacevich:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=akovacevich"
            },
            "owner": "akovacevich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~akovacevich/25/",
            "world_readable": true,
            "date_modified": "2019-08-26T02:26:29.313Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akovacevich/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "type": "choropleth",
                        "zmax": 80,
                        "zmin": 0,
                        "zsrc": "akovacevich:24:608b20",
                        "frame": null,
                        "marker": {
                            "line": {
                                "cmax": 79.7,
                                "cmin": 2.3,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "akovacevich:24:248885",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(247,251,255,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(239,246,252,1)"
                                    ],
                                    [
                                        "0.0833333333333333",
                                        "rgba(230,240,250,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(222,235,247,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(214,230,244,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(206,224,242,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(198,219,239,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(185,213,234,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(172,208,230,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(158,202,225,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(142,193,221,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(125,183,218,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(107,174,214,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(94,165,209,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(81,155,203,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(66,146,198,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(57,135,192,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(46,124,187,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(33,113,181,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(27,102,173,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(19,91,164,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(8,81,156,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(9,70,139,1)"
                                    ],
                                    [
                                        "0.958333333333333",
                                        "rgba(9,59,123,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(8,48,107,1)"
                                    ]
                                ]
                            }
                        },
                        "textsrc": "akovacevich:24:11d6d6",
                        "colorbar": {
                            "y": 1,
                            "len": 0.5,
                            "title": "Calls per 100,000 Population",
                            "lenmode": "fraction",
                            "ticklen": 2,
                            "yanchor": "top"
                        },
                        "showscale": true,
                        "colorscale": [
                            [
                                "0",
                                "rgba(247,251,255,1)"
                            ],
                            [
                                "0.0416666666666667",
                                "rgba(239,246,252,1)"
                            ],
                            [
                                "0.0833333333333333",
                                "rgba(230,240,250,1)"
                            ],
                            [
                                "0.125",
                                "rgba(222,235,247,1)"
                            ],
                            [
                                "0.166666666666667",
                                "rgba(214,230,244,1)"
                            ],
                            [
                                "0.208333333333333",
                                "rgba(206,224,242,1)"
                            ],
                            [
                                "0.25",
                                "rgba(198,219,239,1)"
                            ],
                            [
                                "0.291666666666667",
                                "rgba(185,213,234,1)"
                            ],
                            [
                                "0.333333333333333",
                                "rgba(172,208,230,1)"
                            ],
                            [
                                "0.375",
                                "rgba(158,202,225,1)"
                            ],
                            [
                                "0.416666666666667",
                                "rgba(142,193,221,1)"
                            ],
                            [
                                "0.458333333333333",
                                "rgba(125,183,218,1)"
                            ],
                            [
                                "0.5",
                                "rgba(107,174,214,1)"
                            ],
                            [
                                "0.541666666666667",
                                "rgba(94,165,209,1)"
                            ],
                            [
                                "0.583333333333333",
                                "rgba(81,155,203,1)"
                            ],
                            [
                                "0.625",
                                "rgba(66,146,198,1)"
                            ],
                            [
                                "0.666666666666667",
                                "rgba(57,135,192,1)"
                            ],
                            [
                                "0.708333333333333",
                                "rgba(46,124,187,1)"
                            ],
                            [
                                "0.75",
                                "rgba(33,113,181,1)"
                            ],
                            [
                                "0.791666666666667",
                                "rgba(27,102,173,1)"
                            ],
                            [
                                "0.833333333333333",
                                "rgba(19,91,164,1)"
                            ],
                            [
                                "0.875",
                                "rgba(8,81,156,1)"
                            ],
                            [
                                "0.916666666666667",
                                "rgba(9,70,139,1)"
                            ],
                            [
                                "0.958333333333333",
                                "rgba(9,59,123,1)"
                            ],
                            [
                                "1",
                                "rgba(8,48,107,1)"
                            ]
                        ],
                        "hoverinfosrc": "akovacevich:24:764d8b",
                        "locationmode": "USA-states",
                        "locationssrc": "akovacevich:24:55c4c6"
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "lakecolor": "rgba(255,255,255,1)",
                        "showlakes": true,
                        "projection": {
                            "type": "albers usa"
                        }
                    },
                    "scene": {
                        "zaxis": {
                            "title": "Adjusted.Rate"
                        }
                    },
                    "title": "Call Volume as Proportion of Population, 2016",
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "mapType": "geo",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1,
                            "y": -0.1,
                            "font": {
                                "size": 10
                            },
                            "text": "Population Data Source: U.S. Census Bureau Population Estimates",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": 0,
                            "yshift": 0,
                            "xanchor": "right",
                            "yanchor": "auto",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akovacevich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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-06-14 21:21:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akovacevich",
                "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-17T12:40:48.357750Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~akovacevich/23.embed",
            "fid": "akovacevich:23",
            "filename": "prop_choropleth_2017",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/akovacevich/23/9_NVLAY70EVUPB0ZJYG37YX710NA62KQ.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/akovacevich:23/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/23/8_5HP7TE3VB18L4KAKSHEZZ3E8Y2TGYP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/akovacevich/23/9_NVLAY70EVUPB0ZJYG37YX710NA62KQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/akovacevich:23",
                "plots": "https://api.plotly.com/v2/plots/akovacevich:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=akovacevich"
            },
            "owner": "akovacevich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~akovacevich/23/",
            "world_readable": true,
            "date_modified": "2019-08-26T02:26:33.189Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~akovacevich/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "geo": "geo",
                        "type": "choropleth",
                        "zmax": 80,
                        "zmin": 0,
                        "zsrc": "akovacevich:22:bad83d",
                        "frame": null,
                        "marker": {
                            "line": {
                                "cmax": 71.1,
                                "cmin": 2.4,
                                "colorbar": {
                                    "title": "",
                                    "ticklen": 2
                                },
                                "colorsrc": "akovacevich:22:c90708",
                                "showscale": false,
                                "colorscale": [
                                    [
                                        "0",
                                        "rgba(247,251,255,1)"
                                    ],
                                    [
                                        "0.0416666666666667",
                                        "rgba(239,246,252,1)"
                                    ],
                                    [
                                        "0.0833333333333333",
                                        "rgba(230,240,250,1)"
                                    ],
                                    [
                                        "0.125",
                                        "rgba(222,235,247,1)"
                                    ],
                                    [
                                        "0.166666666666667",
                                        "rgba(214,230,244,1)"
                                    ],
                                    [
                                        "0.208333333333333",
                                        "rgba(206,224,242,1)"
                                    ],
                                    [
                                        "0.25",
                                        "rgba(198,219,239,1)"
                                    ],
                                    [
                                        "0.291666666666667",
                                        "rgba(185,213,234,1)"
                                    ],
                                    [
                                        "0.333333333333333",
                                        "rgba(172,208,230,1)"
                                    ],
                                    [
                                        "0.375",
                                        "rgba(158,202,225,1)"
                                    ],
                                    [
                                        "0.416666666666667",
                                        "rgba(142,193,221,1)"
                                    ],
                                    [
                                        "0.458333333333333",
                                        "rgba(125,183,218,1)"
                                    ],
                                    [
                                        "0.5",
                                        "rgba(107,174,214,1)"
                                    ],
                                    [
                                        "0.541666666666667",
                                        "rgba(94,165,209,1)"
                                    ],
                                    [
                                        "0.583333333333333",
                                        "rgba(81,155,203,1)"
                                    ],
                                    [
                                        "0.625",
                                        "rgba(66,146,198,1)"
                                    ],
                                    [
                                        "0.666666666666667",
                                        "rgba(57,135,192,1)"
                                    ],
                                    [
                                        "0.708333333333333",
                                        "rgba(46,124,187,1)"
                                    ],
                                    [
                                        "0.75",
                                        "rgba(33,113,181,1)"
                                    ],
                                    [
                                        "0.791666666666667",
                                        "rgba(27,102,173,1)"
                                    ],
                                    [
                                        "0.833333333333333",
                                        "rgba(19,91,164,1)"
                                    ],
                                    [
                                        "0.875",
                                        "rgba(8,81,156,1)"
                                    ],
                                    [
                                        "0.916666666666667",
                                        "rgba(9,70,139,1)"
                                    ],
                                    [
                                        "0.958333333333333",
                                        "rgba(9,59,123,1)"
                                    ],
                                    [
                                        "1",
                                        "rgba(8,48,107,1)"
                                    ]
                                ]
                            }
                        },
                        "textsrc": "akovacevich:22:e89282",
                        "colorbar": {
                            "y": 1,
                            "len": 0.5,
                            "title": "Calls per 100,000 Population",
                            "lenmode": "fraction",
                            "ticklen": 2,
                            "yanchor": "top"
                        },
                        "showscale": true,
                        "colorscale": [
                            [
                                "0",
                                "rgba(247,251,255,1)"
                            ],
                            [
                                "0.0416666666666667",
                                "rgba(239,246,252,1)"
                            ],
                            [
                                "0.0833333333333333",
                                "rgba(230,240,250,1)"
                            ],
                            [
                                "0.125",
                                "rgba(222,235,247,1)"
                            ],
                            [
                                "0.166666666666667",
                                "rgba(214,230,244,1)"
                            ],
                            [
                                "0.208333333333333",
                                "rgba(206,224,242,1)"
                            ],
                            [
                                "0.25",
                                "rgba(198,219,239,1)"
                            ],
                            [
                                "0.291666666666667",
                                "rgba(185,213,234,1)"
                            ],
                            [
                                "0.333333333333333",
                                "rgba(172,208,230,1)"
                            ],
                            [
                                "0.375",
                                "rgba(158,202,225,1)"
                            ],
                            [
                                "0.416666666666667",
                                "rgba(142,193,221,1)"
                            ],
                            [
                                "0.458333333333333",
                                "rgba(125,183,218,1)"
                            ],
                            [
                                "0.5",
                                "rgba(107,174,214,1)"
                            ],
                            [
                                "0.541666666666667",
                                "rgba(94,165,209,1)"
                            ],
                            [
                                "0.583333333333333",
                                "rgba(81,155,203,1)"
                            ],
                            [
                                "0.625",
                                "rgba(66,146,198,1)"
                            ],
                            [
                                "0.666666666666667",
                                "rgba(57,135,192,1)"
                            ],
                            [
                                "0.708333333333333",
                                "rgba(46,124,187,1)"
                            ],
                            [
                                "0.75",
                                "rgba(33,113,181,1)"
                            ],
                            [
                                "0.791666666666667",
                                "rgba(27,102,173,1)"
                            ],
                            [
                                "0.833333333333333",
                                "rgba(19,91,164,1)"
                            ],
                            [
                                "0.875",
                                "rgba(8,81,156,1)"
                            ],
                            [
                                "0.916666666666667",
                                "rgba(9,70,139,1)"
                            ],
                            [
                                "0.958333333333333",
                                "rgba(9,59,123,1)"
                            ],
                            [
                                "1",
                                "rgba(8,48,107,1)"
                            ]
                        ],
                        "hoverinfosrc": "akovacevich:22:55e281",
                        "locationmode": "USA-states",
                        "locationssrc": "akovacevich:22:fa1924"
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "lakecolor": "rgba(255,255,255,1)",
                        "showlakes": true,
                        "projection": {
                            "type": "albers usa"
                        }
                    },
                    "scene": {
                        "zaxis": {
                            "title": "Adjusted.Rate"
                        }
                    },
                    "title": "Call Volume as Proportion of Population, 2017",
                    "legend": {
                        "y": 0.5,
                        "yanchor": "top"
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "mapType": "geo",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1,
                            "y": -0.1,
                            "font": {
                                "size": 10
                            },
                            "text": "Population Data Source: U.S. Census Bureau Population Estimates",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": 0,
                            "yshift": 0,
                            "xanchor": "right",
                            "yanchor": "auto",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~akovacevich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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-06-14 21:21:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "akovacevich",
                "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-17T12:39:42.327948Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~N1x0/35.embed",
            "fid": "N1x0:35",
            "filename": "county-level-choropleths-python",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/N1x0:35/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/N1x0:35/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/N1x0:35/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/N1x0:35/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/N1x0:35",
                "plots": "https://api.plotly.com/v2/plots/N1x0:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=N1x0"
            },
            "owner": "N1x0",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~N1x0/35/",
            "world_readable": true,
            "date_modified": "2019-06-17T12:39:42.794Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~N1x0/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3b653dd7-24f2-469f-a41e-0a89f785ef2f",
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "N1x0:36:b4c977",
                        "lonsrc": "N1x0:36:8703ef"
                    }
                ],
                "layout": {
                    "height": 600,
                    "mapbox": {
                        "zoom": 5.2,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 0.7893,
                            "lon": 113.9213
                        },
                        "layers": [
                            {
                                "type": "fill",
                                "color": "rgba(163,22,19,0.8)",
                                "source": "https://raw.githubusercontent.com/N1x0/indonesia-geojson/master/indonesia-edit.geojson",
                                "sourcetype": "geojson"
                            }
                        ],
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1IjoibjF4MCIsImEiOiJjangwY3M1eDMwd2V0NDNxdmQ0OXp3YmUzIn0.Kmj7-BjR0WPMp1hpaWtalg"
                    },
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": 600,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~N1x0",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-25 02:12:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "N1x0",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}