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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE4JTNBNDIlM0EzMC44NTczNjklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxOCUzQTQ4JTNBMjIuOTU5NjA0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T18:48:22.959604Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/76.embed",
            "fid": "ocing66:76",
            "filename": "平均氣溫",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:76/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ocing66/76/2_VA3YT4L1J2YJY272Y7Y2SQC37ASXRN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/76/8_9GJIBO3QUYR2B4IEYUQY47WXYNZ6HB.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:76/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:76",
                "plots": "https://api.plotly.com/v2/plots/ocing66:76",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "平均氣溫",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~ocing66/76/",
            "world_readable": true,
            "date_modified": "2019-11-30T16:01:07.256Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/76/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "77a3e00d-cb9d-4b58-973c-22ef846f2c13",
                        "line": {
                            "color": "#bfcf17"
                        },
                        "name": "臺北(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:126852",
                        "opacity": 0.8
                    },
                    {
                        "uid": "bc76b913-eb2c-4230-bf9a-3d412eaeab70",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:9119bf",
                        "opacity": 0.8
                    },
                    {
                        "uid": "0c9c55e6-0101-4399-9ea1-da664b6c5a67",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:9067d3",
                        "opacity": 0.8
                    },
                    {
                        "uid": "ff2bba8e-4739-4328-9355-7ef36bae3775",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:325b31",
                        "opacity": 0.8
                    },
                    {
                        "uid": "24f6248e-13df-4d6c-a639-2b743beab000",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:18ab81",
                        "opacity": 0.8
                    },
                    {
                        "uid": "5a840e47-268f-4717-ba12-b1f06e207dde",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(℃)",
                        "type": "scatter",
                        "xsrc": "ocing66:77:10f4bf",
                        "ysrc": "ocing66:77:ad67d6",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "平均氣溫"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ocing66",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.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-05-25 13:37:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ocing66",
                "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-17T18:47:05.714265Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nicolashu11/2.embed",
            "fid": "nicolashu11:2",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nicolashu11:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nicolashu11:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/2/8_N34QY7QM6OG6A1VVKAHI5JH197N3IM.png",
                "list-thumb": "https://api.plotly.com/v2/files/nicolashu11:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nicolashu11:2",
                "plots": "https://api.plotly.com/v2/plots/nicolashu11:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=nicolashu11"
            },
            "owner": "nicolashu11",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Receiver operating characteristic example",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nicolashu11/2/receiver-operating-characteristic-example/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:47:06.168Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nicolashu11/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "18368898-8e7c-44b1-89bd-2485ffd3903d",
                        "line": {
                            "color": "darkorange",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "ROC curve (area = 0.96)",
                        "type": "scatter",
                        "xsrc": "nicolashu11:3:9f0889",
                        "ysrc": "nicolashu11:3:2a039c"
                    },
                    {
                        "uid": "65fc83aa-ba00-44c6-8986-d0d9bf4363ca",
                        "line": {
                            "dash": "dash",
                            "color": "navy",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "nicolashu11:3:0a8c46",
                        "ysrc": "nicolashu11:3:ef2e13",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Receiver operating characteristic example"
                    },
                    "xaxis": {
                        "title": {
                            "text": "False Positive Rate"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "True Positive Rate"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nicolashu11",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-12 19:21:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nicolashu11",
                "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-17T18:46:32.628135Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/180.embed",
            "fid": "katzicat:180",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:180/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:180/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/katzicat/180/8_BA58MRXYYD02LMB6Y3CAZRCDV6KS2Q.png",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:180/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:180",
                "plots": "https://api.plotly.com/v2/plots/katzicat:180",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_devops, _laravel, _wordpress, _java, _php, _react-native, _javascript, _reactjs, _frontend",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~katzicat/180/-devops-laravel-wordpress-java-php-react-native-javascript-reactjs-frontend/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:46:33.503Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/180/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "cc273b43-1d2b-49b9-944a-7edfee58f004",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:326116"
                    },
                    {
                        "uid": "a03cfb4a-b291-4455-a25e-6a85bca7e396",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:181:d388f8",
                        "ysrc": "katzicat:181:731078"
                    },
                    {
                        "uid": "ab2e4147-9988-4aa9-99e7-ce8e73d3fe1a",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:c9a671"
                    },
                    {
                        "uid": "96ca8b23-4175-4b68-9b37-b4c6bbcd170a",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:181:354059",
                        "ysrc": "katzicat:181:bd9a91"
                    },
                    {
                        "uid": "a8449874-76c8-49c6-9b06-df74d08bfa6c",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:181:ba2a49",
                        "ysrc": "katzicat:181:949d52"
                    },
                    {
                        "uid": "f4ef7e99-7516-44c4-b4bd-c00cae023d05",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:bbffc7"
                    },
                    {
                        "uid": "15f3ce5d-3d84-4570-b139-f8b7ddb9d6f5",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:5cf63e"
                    },
                    {
                        "uid": "bd2e4577-0086-43b8-a523-edcc24186149",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:537895"
                    },
                    {
                        "uid": "4266ff40-01c8-4bf9-9412-9bf65e896540",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:181:60b3aa",
                        "ysrc": "katzicat:181:0a6b81"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:46:16.851799Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/178.embed",
            "fid": "katzicat:178",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:178/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:178/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/katzicat/178/8_Q7F6CW3CYI7J9XE3ULA0PYACVRQ1YG.png",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:178/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:178",
                "plots": "https://api.plotly.com/v2/plots/katzicat:178",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_devops, _ios, _javascript, _laravel, _reactjs, _wordpress, _android, _java, _php, _react-native, _linux, _python, _csharp, _database, _frontend, _ruby, _nodejs",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~katzicat/178/-devops-ios-javascript-laravel-reactjs-wordpress-android-java-php-react-native-l/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:46:17.366Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/178/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c21a440c-7fa3-4e26-8243-0f480f88ea76",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:23c551"
                    },
                    {
                        "uid": "15fcb0b8-e5e8-4764-a0c8-826f6d78a2d0",
                        "name": "_ios",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:7d9c79"
                    },
                    {
                        "uid": "318c32ec-5213-4045-8187-ce8ecbee7e45",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:819698"
                    },
                    {
                        "uid": "639ac171-99ea-4601-bf63-3f9019ca7620",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:179:653144",
                        "ysrc": "katzicat:179:0f39fe"
                    },
                    {
                        "uid": "13a06c35-3783-4a46-9842-27e77ca4813d",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:1bd7e7"
                    },
                    {
                        "uid": "2037bd1c-04a9-43c7-a3c0-4f1c833fc8ce",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:af0959"
                    },
                    {
                        "uid": "ad002332-d813-4855-8f65-240c9450edce",
                        "name": "_android",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:efd000"
                    },
                    {
                        "uid": "c7672c24-ea5a-46e0-9233-0932812c1bad",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d50aea",
                        "ysrc": "katzicat:179:a4e2be"
                    },
                    {
                        "uid": "fe672708-a5ec-4e17-bdf9-ff6a747cbc62",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:179:16fc5c",
                        "ysrc": "katzicat:179:ac02c5"
                    },
                    {
                        "uid": "1d13dd50-1290-46fa-bf91-1b1417379b07",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:88dbcf"
                    },
                    {
                        "uid": "42693699-1fd7-470d-b0da-b2eb9701b4c9",
                        "name": "_linux",
                        "type": "scatter",
                        "xsrc": "katzicat:179:bbe272",
                        "ysrc": "katzicat:179:ba7e10"
                    },
                    {
                        "uid": "0d7b81bd-a8c0-4b50-95b6-dd342556e255",
                        "name": "_python",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:4a1986"
                    },
                    {
                        "uid": "d5b109b5-50e4-45d1-85ab-5c265217a764",
                        "name": "_csharp",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:6cff48"
                    },
                    {
                        "uid": "3f02cde1-a555-47c7-87da-b7d06e74e4ab",
                        "name": "_database",
                        "type": "scatter",
                        "xsrc": "katzicat:179:4dce00",
                        "ysrc": "katzicat:179:8a6d0b"
                    },
                    {
                        "uid": "70e177cb-fce2-4681-89bd-34aac4e54db3",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:137864"
                    },
                    {
                        "uid": "d609861a-819b-487b-bf39-68f705df1d35",
                        "name": "_ruby",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:a42b7c"
                    },
                    {
                        "uid": "d0a3def3-fbbe-4ec3-9710-ee11e180553e",
                        "name": "_nodejs",
                        "type": "scatter",
                        "xsrc": "katzicat:179:d9500c",
                        "ysrc": "katzicat:179:56ab72"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:45:55.781061Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/176.embed",
            "fid": "katzicat:176",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:176/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:176/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/katzicat/176/8_1I23H08ORMF9RJC3EWT7926LYG7D55.png",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:176/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:176",
                "plots": "https://api.plotly.com/v2/plots/katzicat:176",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_angular, _backend, _csharp, _devops, _flutter-, _frontend, _golang, _ios, _javascript, _laravel, _nodejs, _php, _reactjs, _ruby, _rust, _scala, _security, _wordpress, _android, _java, _react-native, _cplusplus, _data-science, _database, _linux, _python, _qa, _vuejs, _ar-vr, _game-developers, _typescript-",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~katzicat/176/-angular-backend-csharp-devops-flutter-frontend-golang-ios-javascript-laravel-no/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:45:56.252Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/176/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "7d3880c6-2b29-4a1f-ae25-e2112c982907",
                        "name": "_angular",
                        "type": "scatter",
                        "xsrc": "katzicat:177:c2b2ef",
                        "ysrc": "katzicat:177:dc227a"
                    },
                    {
                        "uid": "fb653065-fa6e-4285-87c3-278fd81d7529",
                        "name": "_backend",
                        "type": "scatter",
                        "xsrc": "katzicat:177:4c1a3f",
                        "ysrc": "katzicat:177:b2f1e1"
                    },
                    {
                        "uid": "9298ee01-866e-4f39-b294-f182acb1f6b7",
                        "name": "_csharp",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:8d8ce1"
                    },
                    {
                        "uid": "c53c9f07-1217-463f-afe4-0f11379d9b62",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:7fb796"
                    },
                    {
                        "uid": "405e5120-8e95-4c1b-96c9-d339a3cb1b1d",
                        "name": "_flutter-",
                        "type": "scatter",
                        "xsrc": "katzicat:177:d19449",
                        "ysrc": "katzicat:177:fa0840"
                    },
                    {
                        "uid": "ce6edd41-dfb8-4509-a351-2a9af455277e",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:d41bc2"
                    },
                    {
                        "uid": "dd08dc20-b620-42f4-85a1-c90433be9e50",
                        "name": "_golang",
                        "type": "scatter",
                        "xsrc": "katzicat:177:29c7ad",
                        "ysrc": "katzicat:177:7cb834"
                    },
                    {
                        "uid": "f9ccd58a-758f-47e6-b553-903b16fe13a1",
                        "name": "_ios",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:abb485"
                    },
                    {
                        "uid": "3bff59d0-bdb0-47ae-a1b9-8880e21db5bc",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:d3e185"
                    },
                    {
                        "uid": "f7c23ff2-646b-4d11-a603-478b2ca50bed",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:177:521f61",
                        "ysrc": "katzicat:177:f8f96b"
                    },
                    {
                        "uid": "eac4b201-dc79-4888-8a36-412f7415aea3",
                        "name": "_nodejs",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:035a5d"
                    },
                    {
                        "uid": "28772892-8340-4e89-b9a6-9be7f3cdad5f",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:177:f1f53f",
                        "ysrc": "katzicat:177:52d1b1"
                    },
                    {
                        "uid": "3340275d-207e-4f02-a2ef-1f993dc65618",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:a2fc1e"
                    },
                    {
                        "uid": "c0945a16-3f65-4f25-a7ef-99ff332e41d5",
                        "name": "_ruby",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:102efb"
                    },
                    {
                        "uid": "302e9025-6642-4eef-823d-007bd2d27ea4",
                        "name": "_rust",
                        "type": "scatter",
                        "xsrc": "katzicat:177:a1880a",
                        "ysrc": "katzicat:177:ea5b7d"
                    },
                    {
                        "uid": "e92c238b-94bc-465a-9589-88f8a2263866",
                        "name": "_scala",
                        "type": "scatter",
                        "xsrc": "katzicat:177:580e96",
                        "ysrc": "katzicat:177:ab608f"
                    },
                    {
                        "uid": "62bb785d-e94a-403a-88dd-c1919835b402",
                        "name": "_security",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:bb36eb"
                    },
                    {
                        "uid": "0725a118-68b2-4fe7-9ae0-b441ab12a297",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:e0984c"
                    },
                    {
                        "uid": "1ce4dd47-718c-46ed-ba48-a37e154ab2f3",
                        "name": "_android",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:02c072"
                    },
                    {
                        "uid": "bf04bfa3-8a26-4736-a6c0-8c5506afeeef",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:177:bc8c93",
                        "ysrc": "katzicat:177:9c843b"
                    },
                    {
                        "uid": "ce348ca0-cc22-486b-94ac-66bf236e0e16",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:79e206"
                    },
                    {
                        "uid": "82a85869-0369-4438-8da4-9b69e64067cb",
                        "name": "_cplusplus",
                        "type": "scatter",
                        "xsrc": "katzicat:177:ffa5fe",
                        "ysrc": "katzicat:177:f79424"
                    },
                    {
                        "uid": "1b1724f7-a054-4413-bb94-48b19c90bdc9",
                        "name": "_data-science",
                        "type": "scatter",
                        "xsrc": "katzicat:177:f50513",
                        "ysrc": "katzicat:177:8b8ff0"
                    },
                    {
                        "uid": "174ce7c0-b531-42fb-b8f4-75cb35ed3db3",
                        "name": "_database",
                        "type": "scatter",
                        "xsrc": "katzicat:177:b2b172",
                        "ysrc": "katzicat:177:0f0fd4"
                    },
                    {
                        "uid": "fcd1370b-fbec-43ee-979b-b8a1506b3808",
                        "name": "_linux",
                        "type": "scatter",
                        "xsrc": "katzicat:177:4c019f",
                        "ysrc": "katzicat:177:b765ad"
                    },
                    {
                        "uid": "a585d834-85b2-48a3-9621-172a0a174a9d",
                        "name": "_python",
                        "type": "scatter",
                        "xsrc": "katzicat:177:7760d6",
                        "ysrc": "katzicat:177:cdccc4"
                    },
                    {
                        "uid": "13cb7446-b110-4553-8a75-2c2c28cfd15e",
                        "name": "_qa",
                        "type": "scatter",
                        "xsrc": "katzicat:177:59b315",
                        "ysrc": "katzicat:177:236576"
                    },
                    {
                        "uid": "96974372-1393-4e29-bf08-10da24bbf8b6",
                        "name": "_vuejs",
                        "type": "scatter",
                        "xsrc": "katzicat:177:80ef19",
                        "ysrc": "katzicat:177:da175e"
                    },
                    {
                        "uid": "7d2f16a4-5b87-4d8e-992b-2bda4c25769f",
                        "name": "_ar-vr",
                        "type": "scatter",
                        "xsrc": "katzicat:177:f0ae78",
                        "ysrc": "katzicat:177:bb00c8"
                    },
                    {
                        "uid": "add4d648-44b3-48b5-a37c-c792d520abe8",
                        "name": "_game-developers",
                        "type": "scatter",
                        "xsrc": "katzicat:177:05c76d",
                        "ysrc": "katzicat:177:9d85e3"
                    },
                    {
                        "uid": "49adfe67-dff1-41c1-a498-428f8a7a46f8",
                        "name": "_typescript-",
                        "type": "scatter",
                        "xsrc": "katzicat:177:5d1f95",
                        "ysrc": "katzicat:177:57be96"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:45:50.731183Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/72.embed",
            "fid": "ocing66:72",
            "filename": "平均相對濕度",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:72/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ocing66/72/2_7STJZ62UIDFEEO4Y0ICH2C4QF7RFBX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/72/8_KHPKNVY8ZIFIM11LZYIBRWSU5F2WVQ.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:72/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:72",
                "plots": "https://api.plotly.com/v2/plots/ocing66:72",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "平均相對濕度",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~ocing66/72/",
            "world_readable": true,
            "date_modified": "2019-11-30T16:01:05.650Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/72/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a58e3bed-3f64-4a79-8710-c598f8ab804d",
                        "line": {
                            "color": "#bfcf17"
                        },
                        "name": "臺北(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:969cc7",
                        "opacity": 0.8
                    },
                    {
                        "uid": "3f9635d0-3a2d-445a-ad13-2720e8312489",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:d0ab88",
                        "opacity": 0.8
                    },
                    {
                        "uid": "266eb572-2c92-41bf-8e4b-8148be0ba179",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:0438b0",
                        "opacity": 0.8
                    },
                    {
                        "uid": "53236017-425b-4095-94b0-de6dc4355846",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:a77120",
                        "opacity": 0.8
                    },
                    {
                        "uid": "27c303c6-47fa-43ea-bf04-777f476cc4ac",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:5c693b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "8ba6cfef-864a-49c2-9d86-1e90c2eca268",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(%)",
                        "type": "scatter",
                        "xsrc": "ocing66:73:4d87b7",
                        "ysrc": "ocing66:73:f6fd4f",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "平均相對濕度"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ocing66",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.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-05-25 13:37:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ocing66",
                "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-17T18:44:17.761759Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/174.embed",
            "fid": "katzicat:174",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:174/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:174/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/katzicat/174/8_JXRHYYMK36PWK0M6NJ837SKW24UQX3.png",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:174/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:174",
                "plots": "https://api.plotly.com/v2/plots/katzicat:174",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_angular, _backend, _csharp, _devops, _flutter-, _frontend, _golang, _ios, _javascript, _laravel, _nodejs, _php, _reactjs, _ruby, _rust, _scala, _security, _wordpress, _android, _java, _react-native, _cplusplus, _data-science, _database, _linux, _python, _qa, _vuejs, _ar-vr, _game-developers, _typescript-",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~katzicat/174/-angular-backend-csharp-devops-flutter-frontend-golang-ios-javascript-laravel-no/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:44:18.320Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/174/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d0c192c3-7750-4e31-97be-87d39ad040e3",
                        "name": "_angular",
                        "type": "scatter",
                        "xsrc": "katzicat:175:396665",
                        "ysrc": "katzicat:175:78ecef"
                    },
                    {
                        "uid": "7067012d-ca40-4db9-86c0-870fd857f286",
                        "name": "_backend",
                        "type": "scatter",
                        "xsrc": "katzicat:175:60c3a0",
                        "ysrc": "katzicat:175:1da3b4"
                    },
                    {
                        "uid": "7dd2e906-cfd5-4282-87a0-d0d531d9337b",
                        "name": "_csharp",
                        "type": "scatter",
                        "xsrc": "katzicat:175:12948a",
                        "ysrc": "katzicat:175:04fafc"
                    },
                    {
                        "uid": "faf10940-3744-48c0-ae6e-5061197bff29",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:175:388961",
                        "ysrc": "katzicat:175:662044"
                    },
                    {
                        "uid": "1ea6306f-3220-4642-a053-2f5f6a7aae6c",
                        "name": "_flutter-",
                        "type": "scatter",
                        "xsrc": "katzicat:175:c6cfba",
                        "ysrc": "katzicat:175:2d8ce6"
                    },
                    {
                        "uid": "bba01ba2-2b1d-4955-bda7-f5b97b93e305",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:175:1d348e",
                        "ysrc": "katzicat:175:b6975d"
                    },
                    {
                        "uid": "a41e1d22-5118-433e-8437-94f78c2b3263",
                        "name": "_golang",
                        "type": "scatter",
                        "xsrc": "katzicat:175:799765",
                        "ysrc": "katzicat:175:e6e136"
                    },
                    {
                        "uid": "f4b21c88-06d1-4930-8590-e376ac84f97a",
                        "name": "_ios",
                        "type": "scatter",
                        "xsrc": "katzicat:175:43bd1b",
                        "ysrc": "katzicat:175:4782d4"
                    },
                    {
                        "uid": "2ae18c2e-36fe-4dc5-95fd-67ac57e3a0f6",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:175:43bd1b",
                        "ysrc": "katzicat:175:7bc064"
                    },
                    {
                        "uid": "d00ef60a-5ebd-4d57-a6ce-13a31cbf9f86",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:175:2f6ea8",
                        "ysrc": "katzicat:175:1a5b1f"
                    },
                    {
                        "uid": "c23bb63a-d5d4-402e-a21b-b341cde476ea",
                        "name": "_nodejs",
                        "type": "scatter",
                        "xsrc": "katzicat:175:58fd21",
                        "ysrc": "katzicat:175:304fac"
                    },
                    {
                        "uid": "63665b4d-f240-4092-8459-7b3834076d01",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:175:594b54",
                        "ysrc": "katzicat:175:a81f99"
                    },
                    {
                        "uid": "33e27a1e-02e4-4331-9bae-a3619657cf95",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:175:058f1b",
                        "ysrc": "katzicat:175:6551ef"
                    },
                    {
                        "uid": "339b60fc-f1a7-46ea-a81d-546189f540cf",
                        "name": "_ruby",
                        "type": "scatter",
                        "xsrc": "katzicat:175:43bd1b",
                        "ysrc": "katzicat:175:18fc73"
                    },
                    {
                        "uid": "3ebcf738-f75f-4ee8-835a-ce664020cc65",
                        "name": "_rust",
                        "type": "scatter",
                        "xsrc": "katzicat:175:701309",
                        "ysrc": "katzicat:175:2a7fab"
                    },
                    {
                        "uid": "21af4b42-56d9-4139-a86b-a1f6bf91c382",
                        "name": "_scala",
                        "type": "scatter",
                        "xsrc": "katzicat:175:afcb0d",
                        "ysrc": "katzicat:175:52c67d"
                    },
                    {
                        "uid": "a89d0607-01eb-48e0-944e-b9e72d287b8a",
                        "name": "_security",
                        "type": "scatter",
                        "xsrc": "katzicat:175:081dd4",
                        "ysrc": "katzicat:175:0d42cb"
                    },
                    {
                        "uid": "f73bfed9-297a-4d01-b764-4cdb4da2c7ec",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:175:ff8ac6",
                        "ysrc": "katzicat:175:187579"
                    },
                    {
                        "uid": "e8aaf184-2052-44f1-a7e0-33943418f7f6",
                        "name": "_android",
                        "type": "scatter",
                        "xsrc": "katzicat:175:43bd1b",
                        "ysrc": "katzicat:175:c168e0"
                    },
                    {
                        "uid": "0f3bfd80-14eb-43d4-a811-f0119fc491d4",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:175:fb5890",
                        "ysrc": "katzicat:175:acaf94"
                    },
                    {
                        "uid": "4f1f2683-048f-42b0-9ee0-0ff99f921da7",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:175:a8b434",
                        "ysrc": "katzicat:175:40a40c"
                    },
                    {
                        "uid": "2f9308da-0375-4e5c-84bd-6cfccfbce411",
                        "name": "_cplusplus",
                        "type": "scatter",
                        "xsrc": "katzicat:175:a84b09",
                        "ysrc": "katzicat:175:4ca43b"
                    },
                    {
                        "uid": "63b327bd-8671-402b-9ede-c97428d8fc3a",
                        "name": "_data-science",
                        "type": "scatter",
                        "xsrc": "katzicat:175:ba1184",
                        "ysrc": "katzicat:175:11390c"
                    },
                    {
                        "uid": "a5cb95f7-8525-44cc-aa91-5a6d37a1e1f1",
                        "name": "_database",
                        "type": "scatter",
                        "xsrc": "katzicat:175:2bfc2f",
                        "ysrc": "katzicat:175:9d6f48"
                    },
                    {
                        "uid": "c50ec63a-e547-4907-89df-e61b2a23a004",
                        "name": "_linux",
                        "type": "scatter",
                        "xsrc": "katzicat:175:734a6e",
                        "ysrc": "katzicat:175:91abaa"
                    },
                    {
                        "uid": "de89d22d-1797-4473-8a88-fb6ce49580cf",
                        "name": "_python",
                        "type": "scatter",
                        "xsrc": "katzicat:175:43bd1b",
                        "ysrc": "katzicat:175:34fc26"
                    },
                    {
                        "uid": "84664ce9-9d60-4f32-ac2f-c9263e58a28b",
                        "name": "_qa",
                        "type": "scatter",
                        "xsrc": "katzicat:175:28ab4e",
                        "ysrc": "katzicat:175:0b43a9"
                    },
                    {
                        "uid": "556d26a8-5644-4a6d-b05d-ad00a0710ef5",
                        "name": "_vuejs",
                        "type": "scatter",
                        "xsrc": "katzicat:175:1dc895",
                        "ysrc": "katzicat:175:5601e9"
                    },
                    {
                        "uid": "cab0a706-7323-4467-8576-cfe92283d16f",
                        "name": "_ar-vr",
                        "type": "scatter",
                        "xsrc": "katzicat:175:423660",
                        "ysrc": "katzicat:175:0d8961"
                    },
                    {
                        "uid": "58ba10f1-eba1-488b-bd01-b37be7ac18ad",
                        "name": "_game-developers",
                        "type": "scatter",
                        "xsrc": "katzicat:175:e7b9af",
                        "ysrc": "katzicat:175:9fd164"
                    },
                    {
                        "uid": "3ae552ec-c547-4381-b03e-f040493c3e5c",
                        "name": "_typescript-",
                        "type": "scatter",
                        "xsrc": "katzicat:175:add35d",
                        "ysrc": "katzicat:175:40c0dc"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:43:54.943920Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/172.embed",
            "fid": "katzicat:172",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:172/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/katzicat/172/2_WIIS57DRYTENOD5SAQOFSUF21SBLIU.png",
                "block-thumb": "https://api.plotly.com/v2/files/katzicat:172/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:172/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:172",
                "plots": "https://api.plotly.com/v2/plots/katzicat:172",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_android, _angular, _backbone, _cordova, _cplusplus, _database, _emberjs, _fsharp, _ios, _java, _javascript, _laravel, _linux, _meteor, _nodejs, _perl, _php, _python, _reactjs, _ruby, _scala, _scalability, _search, _security, _csharp, _data-science, _devops, _elixir_erlang, _frontend, _wordpress, _game-developers, _golang, _hardware, _r, _magento, _sketchapp, _salesforce, _usertesting, _drupal, _algorithms, _testing, _ar-vr, _functional-prog, _machine-learning-ai, _rust, _vuejs, _shopify, _backend, _react-native, _kotlin-lang, _blockchain-tech, _qa, _flutter-, _typescript-",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~katzicat/172/-android-angular-backbone-cordova-cplusplus-database-emberjs-fsharp-ios-java-jav/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:43:55.418Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/172/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d0dfb46b-5c1a-4047-b762-60babae3d01e",
                        "name": "_android",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bc16ab",
                        "ysrc": "katzicat:173:9a6a74"
                    },
                    {
                        "uid": "5bd542a5-fc83-4ce9-9f87-cc8b453aede9",
                        "name": "_angular",
                        "type": "scatter",
                        "xsrc": "katzicat:173:ded433",
                        "ysrc": "katzicat:173:51e79c"
                    },
                    {
                        "uid": "4826869a-096b-4a86-b913-38cb54365a60",
                        "name": "_backbone",
                        "type": "scatter",
                        "xsrc": "katzicat:173:ce8512",
                        "ysrc": "katzicat:173:eab9b0"
                    },
                    {
                        "uid": "7676c7ef-9c70-46be-8b87-18bcbc345910",
                        "name": "_cordova",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bd83de",
                        "ysrc": "katzicat:173:d88d59"
                    },
                    {
                        "uid": "64b94ed0-a2ab-40d3-a300-44b7d89b51e8",
                        "name": "_cplusplus",
                        "type": "scatter",
                        "xsrc": "katzicat:173:11a4ef",
                        "ysrc": "katzicat:173:e3e82c"
                    },
                    {
                        "uid": "4bc4b6c8-18eb-4656-ac93-4e72135f2d40",
                        "name": "_database",
                        "type": "scatter",
                        "xsrc": "katzicat:173:9dab03",
                        "ysrc": "katzicat:173:8396fc"
                    },
                    {
                        "uid": "ba9cc6d8-9e43-4177-bfb4-69be85afba21",
                        "name": "_emberjs",
                        "type": "scatter",
                        "xsrc": "katzicat:173:30487f",
                        "ysrc": "katzicat:173:633abb"
                    },
                    {
                        "uid": "f5317edf-e984-4965-a85a-df167f0c1158",
                        "name": "_fsharp",
                        "type": "scatter",
                        "xsrc": "katzicat:173:d2cdcf",
                        "ysrc": "katzicat:173:6527c5"
                    },
                    {
                        "uid": "e77ea8e8-2b08-4d4e-9c6a-e45a900c4ef2",
                        "name": "_ios",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bc16ab",
                        "ysrc": "katzicat:173:aea5cb"
                    },
                    {
                        "uid": "1a29fe0f-4fb2-48a0-91cf-3fbc47391b3f",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:173:0ae9cf",
                        "ysrc": "katzicat:173:6d7cd3"
                    },
                    {
                        "uid": "beaf8635-5ea1-4ac8-aaff-4d56079d8673",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bc16ab",
                        "ysrc": "katzicat:173:3c71ca"
                    },
                    {
                        "uid": "7a20e438-37f7-4b13-b858-dc1a62f90f6c",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:173:f10b24",
                        "ysrc": "katzicat:173:9f808a"
                    },
                    {
                        "uid": "ccd80b78-9d6f-4374-9d27-4da702914d80",
                        "name": "_linux",
                        "type": "scatter",
                        "xsrc": "katzicat:173:a90356",
                        "ysrc": "katzicat:173:afc280"
                    },
                    {
                        "uid": "20c352c5-d79a-47e7-bd8b-42547a4a4c25",
                        "name": "_meteor",
                        "type": "scatter",
                        "xsrc": "katzicat:173:a5e268",
                        "ysrc": "katzicat:173:ca8c03"
                    },
                    {
                        "uid": "6b662fd0-6f2c-41f8-9068-1e2c27ac5df8",
                        "name": "_nodejs",
                        "type": "scatter",
                        "xsrc": "katzicat:173:711d9e",
                        "ysrc": "katzicat:173:006bea"
                    },
                    {
                        "uid": "4f336397-e1d1-482b-b010-a790af2764dc",
                        "name": "_perl",
                        "type": "scatter",
                        "xsrc": "katzicat:173:e545e3",
                        "ysrc": "katzicat:173:7c97d4"
                    },
                    {
                        "uid": "e2b45a37-200c-4644-bbb7-99305306154f",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:173:86b030",
                        "ysrc": "katzicat:173:71fe67"
                    },
                    {
                        "uid": "7bdd46fc-3a88-4bb4-aaa5-500d717419b2",
                        "name": "_python",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bc16ab",
                        "ysrc": "katzicat:173:5a74bd"
                    },
                    {
                        "uid": "ceff8ce1-be8d-4f79-9f46-62e1cd5567fa",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:173:38075c",
                        "ysrc": "katzicat:173:f351eb"
                    },
                    {
                        "uid": "3235b57a-7fe6-431f-a6d8-78fe66cf5a89",
                        "name": "_ruby",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bc16ab",
                        "ysrc": "katzicat:173:79bb3c"
                    },
                    {
                        "uid": "1e9f2061-d524-4766-b466-ebfe0f5c3bc0",
                        "name": "_scala",
                        "type": "scatter",
                        "xsrc": "katzicat:173:c50766",
                        "ysrc": "katzicat:173:0a6e5e"
                    },
                    {
                        "uid": "9392cf85-2657-4a98-b50f-3276645264a1",
                        "name": "_scalability",
                        "type": "scatter",
                        "xsrc": "katzicat:173:0187c3",
                        "ysrc": "katzicat:173:a4b8fb"
                    },
                    {
                        "uid": "23a8acb1-8083-4dd8-a419-edf3459d6623",
                        "name": "_search",
                        "type": "scatter",
                        "xsrc": "katzicat:173:fa656a",
                        "ysrc": "katzicat:173:d45416"
                    },
                    {
                        "uid": "084b4ceb-efaf-4ab3-aa4f-16869ee23525",
                        "name": "_security",
                        "type": "scatter",
                        "xsrc": "katzicat:173:fd4722",
                        "ysrc": "katzicat:173:4420f4"
                    },
                    {
                        "uid": "a0909738-8173-41e9-98c1-3f9daf9b76c3",
                        "name": "_csharp",
                        "type": "scatter",
                        "xsrc": "katzicat:173:ff0f0a",
                        "ysrc": "katzicat:173:979c1e"
                    },
                    {
                        "uid": "dee28c31-1825-4544-aa6b-d005392f414c",
                        "name": "_data-science",
                        "type": "scatter",
                        "xsrc": "katzicat:173:c06400",
                        "ysrc": "katzicat:173:be6ebc"
                    },
                    {
                        "uid": "38d61a2c-ecd8-408c-b8c6-aac309484edc",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:173:8b6c7c",
                        "ysrc": "katzicat:173:51129b"
                    },
                    {
                        "uid": "39084c48-e887-4eca-b920-80c280797b34",
                        "name": "_elixir_erlang",
                        "type": "scatter",
                        "xsrc": "katzicat:173:3b6497",
                        "ysrc": "katzicat:173:a9e03d"
                    },
                    {
                        "uid": "be804e0e-89e6-4c2e-b0cb-c1e7a153c3d3",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:173:1948b4",
                        "ysrc": "katzicat:173:5bf0b5"
                    },
                    {
                        "uid": "72d6ca61-4f64-4822-a9a5-11a9d42847c7",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:173:44ecfd",
                        "ysrc": "katzicat:173:daaf1b"
                    },
                    {
                        "uid": "8ed66751-387e-4247-bdef-dd33c67faed8",
                        "name": "_game-developers",
                        "type": "scatter",
                        "xsrc": "katzicat:173:c8c837",
                        "ysrc": "katzicat:173:365ece"
                    },
                    {
                        "uid": "1025a91e-fddb-43d0-8562-3118f69e09f2",
                        "name": "_golang",
                        "type": "scatter",
                        "xsrc": "katzicat:173:89d40c",
                        "ysrc": "katzicat:173:542946"
                    },
                    {
                        "uid": "aa5ae891-cfda-49c7-a10a-7c24a3228486",
                        "name": "_hardware",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bea6dc",
                        "ysrc": "katzicat:173:7970cb"
                    },
                    {
                        "uid": "0beeb554-804d-4cd3-8321-216fe261e7aa",
                        "name": "_r",
                        "type": "scatter",
                        "xsrc": "katzicat:173:c7f6fd",
                        "ysrc": "katzicat:173:607a83"
                    },
                    {
                        "uid": "d2a9b88f-2020-49ce-b9ba-b7562e5cd478",
                        "name": "_magento",
                        "type": "scatter",
                        "xsrc": "katzicat:173:b4d2b1",
                        "ysrc": "katzicat:173:ead862"
                    },
                    {
                        "uid": "e1d34a52-0df5-4dc7-b83d-18a9c256f275",
                        "name": "_sketchapp",
                        "type": "scatter",
                        "xsrc": "katzicat:173:0abb2f",
                        "ysrc": "katzicat:173:df256a"
                    },
                    {
                        "uid": "d21bc055-09e7-4a73-ba00-20588cc7c594",
                        "name": "_salesforce",
                        "type": "scatter",
                        "xsrc": "katzicat:173:22f063",
                        "ysrc": "katzicat:173:5e78fa"
                    },
                    {
                        "uid": "49e3dcc1-09b3-4f8f-9f33-8dc298045af9",
                        "name": "_usertesting",
                        "type": "scatter",
                        "xsrc": "katzicat:173:e23413",
                        "ysrc": "katzicat:173:b8e73b"
                    },
                    {
                        "uid": "533bde29-4573-47b0-8a9a-10f3ac3366b3",
                        "name": "_drupal",
                        "type": "scatter",
                        "xsrc": "katzicat:173:a086f9",
                        "ysrc": "katzicat:173:1ae835"
                    },
                    {
                        "uid": "074e705f-f3a2-4471-95c1-d0d64369ca3d",
                        "name": "_algorithms",
                        "type": "scatter",
                        "xsrc": "katzicat:173:fb45b4",
                        "ysrc": "katzicat:173:0c7713"
                    },
                    {
                        "uid": "f99cbe6b-ffd5-421d-bf73-e7b016ea5661",
                        "name": "_testing",
                        "type": "scatter",
                        "xsrc": "katzicat:173:4539b6",
                        "ysrc": "katzicat:173:7dec4a"
                    },
                    {
                        "uid": "e077d3d2-dee3-4ea4-8d8a-05704e100c07",
                        "name": "_ar-vr",
                        "type": "scatter",
                        "xsrc": "katzicat:173:e1ba53",
                        "ysrc": "katzicat:173:e01c8d"
                    },
                    {
                        "uid": "f3f61e5c-f382-467a-80a1-c5b151e7df16",
                        "name": "_functional-prog",
                        "type": "scatter",
                        "xsrc": "katzicat:173:719f3c",
                        "ysrc": "katzicat:173:8cc3d8"
                    },
                    {
                        "uid": "037ddcbc-5d51-4d2b-9088-64733ca9ec40",
                        "name": "_machine-learning-ai",
                        "type": "scatter",
                        "xsrc": "katzicat:173:9287df",
                        "ysrc": "katzicat:173:1a3661"
                    },
                    {
                        "uid": "82205c6b-a678-4434-b9f8-9101efb5ce70",
                        "name": "_rust",
                        "type": "scatter",
                        "xsrc": "katzicat:173:4b62a5",
                        "ysrc": "katzicat:173:d8bee0"
                    },
                    {
                        "uid": "d3016f19-9df3-4912-aae8-e110e4fe5f6d",
                        "name": "_vuejs",
                        "type": "scatter",
                        "xsrc": "katzicat:173:be4cd4",
                        "ysrc": "katzicat:173:fbd1ea"
                    },
                    {
                        "uid": "dda331ef-5067-4486-8b99-3ba368060388",
                        "name": "_shopify",
                        "type": "scatter",
                        "xsrc": "katzicat:173:7a0c4d",
                        "ysrc": "katzicat:173:4de40d"
                    },
                    {
                        "uid": "b8c6d16d-f70a-4137-b922-f75007e761a5",
                        "name": "_backend",
                        "type": "scatter",
                        "xsrc": "katzicat:173:8f60bf",
                        "ysrc": "katzicat:173:2deaec"
                    },
                    {
                        "uid": "6ba93ffb-1469-4ef4-9053-fdde1723f96f",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:173:37a2ee",
                        "ysrc": "katzicat:173:6f3a26"
                    },
                    {
                        "uid": "8691dd1e-c3a7-4536-a81f-6bddc2f106dd",
                        "name": "_kotlin-lang",
                        "type": "scatter",
                        "xsrc": "katzicat:173:a3aaf5",
                        "ysrc": "katzicat:173:7aca99"
                    },
                    {
                        "uid": "6f18d028-a4b4-42ea-a1ec-7ee664ff512a",
                        "name": "_blockchain-tech",
                        "type": "scatter",
                        "xsrc": "katzicat:173:23a725",
                        "ysrc": "katzicat:173:302e05"
                    },
                    {
                        "uid": "c9c2c314-154e-4ea6-a7a9-fd8f00dadfbd",
                        "name": "_qa",
                        "type": "scatter",
                        "xsrc": "katzicat:173:f1d3a3",
                        "ysrc": "katzicat:173:db7428"
                    },
                    {
                        "uid": "8e0ce1ad-1451-42d1-b3e9-f56f00d6e1b2",
                        "name": "_flutter-",
                        "type": "scatter",
                        "xsrc": "katzicat:173:45df05",
                        "ysrc": "katzicat:173:cc6898"
                    },
                    {
                        "uid": "273e96fc-02e6-431e-b0d0-cef86fa1594b",
                        "name": "_typescript-",
                        "type": "scatter",
                        "xsrc": "katzicat:173:bba1ef",
                        "ysrc": "katzicat:173:84fd73"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:43:25.040207Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~katzicat/170.embed",
            "fid": "katzicat:170",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/katzicat:170/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/katzicat:170/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/katzicat:170/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/katzicat:170/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/katzicat:170",
                "plots": "https://api.plotly.com/v2/plots/katzicat:170",
                "parent": "https://api.plotly.com/v2/folders/home?user=katzicat"
            },
            "owner": "katzicat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "_android, _angular, _backbone, _cordova, _cplusplus, _database, _emberjs, _fsharp, _ios, _java, _javascript, _laravel, _linux, _meteor, _nodejs, _perl, _php, _python, _reactjs, _ruby, _scala, _scalability, _search, _security, _csharp, _data-science, _devops, _elixir_erlang, _frontend, _wordpress, _game-developers, _golang, _hardware, _r, _magento, _sketchapp, _salesforce, _usertesting, _drupal, _algorithms, _testing, _ar-vr, _functional-prog, _machine-learning-ai, _rust, _vuejs, _shopify, _backend, _react-native, _kotlin-lang, _blockchain-tech, _qa, _flutter-, _typescript-",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~katzicat/170/-android-angular-backbone-cordova-cplusplus-database-emberjs-fsharp-ios-java-jav/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:43:25.795Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~katzicat/170/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f3a2715b-2761-4146-ae72-1a9172f516f5",
                        "name": "_android",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3a911",
                        "ysrc": "katzicat:171:74f23e"
                    },
                    {
                        "uid": "93053ab9-45ed-4874-a037-42d2a1963867",
                        "name": "_angular",
                        "type": "scatter",
                        "xsrc": "katzicat:171:b0807e",
                        "ysrc": "katzicat:171:5a6d81"
                    },
                    {
                        "uid": "505efaa7-c85c-44e1-9bc3-d463890265ef",
                        "name": "_backbone",
                        "type": "scatter",
                        "xsrc": "katzicat:171:f8f28b",
                        "ysrc": "katzicat:171:8335e2"
                    },
                    {
                        "uid": "8e6cc294-0881-4237-aca0-b6884aedb342",
                        "name": "_cordova",
                        "type": "scatter",
                        "xsrc": "katzicat:171:1b6105",
                        "ysrc": "katzicat:171:dbd105"
                    },
                    {
                        "uid": "cf767933-73d7-4df4-820b-6c18dc40b6bd",
                        "name": "_cplusplus",
                        "type": "scatter",
                        "xsrc": "katzicat:171:fa030a",
                        "ysrc": "katzicat:171:6a8106"
                    },
                    {
                        "uid": "5665f7f3-d724-4a24-8d42-d6a3eea108a2",
                        "name": "_database",
                        "type": "scatter",
                        "xsrc": "katzicat:171:d87939",
                        "ysrc": "katzicat:171:960c6f"
                    },
                    {
                        "uid": "684665df-ec2e-4eff-b119-fd9651cf5735",
                        "name": "_emberjs",
                        "type": "scatter",
                        "xsrc": "katzicat:171:3ab7aa",
                        "ysrc": "katzicat:171:8fca3b"
                    },
                    {
                        "uid": "5c2a1902-2529-4dad-902d-cb9bbbbd6213",
                        "name": "_fsharp",
                        "type": "scatter",
                        "xsrc": "katzicat:171:b15911",
                        "ysrc": "katzicat:171:0ebe09"
                    },
                    {
                        "uid": "f2b3e9a8-fa9b-4bcf-a2ec-cd0c541b407e",
                        "name": "_ios",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3a911",
                        "ysrc": "katzicat:171:1a0a9c"
                    },
                    {
                        "uid": "1642878e-d315-41e0-a716-252780cb8990",
                        "name": "_java",
                        "type": "scatter",
                        "xsrc": "katzicat:171:ab8367",
                        "ysrc": "katzicat:171:098c3e"
                    },
                    {
                        "uid": "98c0099e-e935-4306-9851-5179e0f498bc",
                        "name": "_javascript",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3a911",
                        "ysrc": "katzicat:171:5667b0"
                    },
                    {
                        "uid": "3c778ec0-2ea4-4b0a-adf2-e0f5a093934c",
                        "name": "_laravel",
                        "type": "scatter",
                        "xsrc": "katzicat:171:4a3768",
                        "ysrc": "katzicat:171:6a92c1"
                    },
                    {
                        "uid": "715f3597-4141-4542-9474-c8017d84ae78",
                        "name": "_linux",
                        "type": "scatter",
                        "xsrc": "katzicat:171:e17e86",
                        "ysrc": "katzicat:171:d02a22"
                    },
                    {
                        "uid": "d9b8e809-f1af-4991-a1a0-b22ab4fefee3",
                        "name": "_meteor",
                        "type": "scatter",
                        "xsrc": "katzicat:171:2738c6",
                        "ysrc": "katzicat:171:f954b5"
                    },
                    {
                        "uid": "2b7c6715-7086-4e60-acd1-68ed1b3a83d4",
                        "name": "_nodejs",
                        "type": "scatter",
                        "xsrc": "katzicat:171:f4312e",
                        "ysrc": "katzicat:171:dd5503"
                    },
                    {
                        "uid": "f1d60685-f100-4206-ac2e-835176f5ed6e",
                        "name": "_perl",
                        "type": "scatter",
                        "xsrc": "katzicat:171:7775bd",
                        "ysrc": "katzicat:171:5418dd"
                    },
                    {
                        "uid": "178be83c-80bc-4a88-9c12-a2b585185b28",
                        "name": "_php",
                        "type": "scatter",
                        "xsrc": "katzicat:171:6704ce",
                        "ysrc": "katzicat:171:4580f9"
                    },
                    {
                        "uid": "88656bea-9e39-4bca-9fce-6260207fad29",
                        "name": "_python",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3a911",
                        "ysrc": "katzicat:171:ee2f3c"
                    },
                    {
                        "uid": "9bb54e59-b2fe-4abf-9ac0-10b6d61ba742",
                        "name": "_reactjs",
                        "type": "scatter",
                        "xsrc": "katzicat:171:4c62d6",
                        "ysrc": "katzicat:171:18f3e0"
                    },
                    {
                        "uid": "def9294f-6152-48e8-9c3f-9d75b02f84bc",
                        "name": "_ruby",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3a911",
                        "ysrc": "katzicat:171:b45d98"
                    },
                    {
                        "uid": "d5e10b7d-0956-4caa-97c3-938c9c04bafd",
                        "name": "_scala",
                        "type": "scatter",
                        "xsrc": "katzicat:171:05085f",
                        "ysrc": "katzicat:171:d8a3e6"
                    },
                    {
                        "uid": "e4bdba94-5f42-40d6-8b94-89cdae663fb8",
                        "name": "_scalability",
                        "type": "scatter",
                        "xsrc": "katzicat:171:27df29",
                        "ysrc": "katzicat:171:77bf5d"
                    },
                    {
                        "uid": "491f4fe0-a54f-4950-8661-d599ad308dd5",
                        "name": "_search",
                        "type": "scatter",
                        "xsrc": "katzicat:171:e849d3",
                        "ysrc": "katzicat:171:16801f"
                    },
                    {
                        "uid": "92c33a84-1c50-4f24-9446-1f93afbbd37b",
                        "name": "_security",
                        "type": "scatter",
                        "xsrc": "katzicat:171:952890",
                        "ysrc": "katzicat:171:02ebe1"
                    },
                    {
                        "uid": "cad60658-8f3a-4511-a65f-d736a60b86df",
                        "name": "_csharp",
                        "type": "scatter",
                        "xsrc": "katzicat:171:986764",
                        "ysrc": "katzicat:171:661b61"
                    },
                    {
                        "uid": "65febf88-3fa0-4735-905f-314181efda12",
                        "name": "_data-science",
                        "type": "scatter",
                        "xsrc": "katzicat:171:221b8f",
                        "ysrc": "katzicat:171:1c766a"
                    },
                    {
                        "uid": "d8badf0e-7a3e-467c-bacd-de14c3e8c181",
                        "name": "_devops",
                        "type": "scatter",
                        "xsrc": "katzicat:171:524799",
                        "ysrc": "katzicat:171:2fec83"
                    },
                    {
                        "uid": "de9d51e2-0bce-4cd5-8d7a-c3c467ba5c48",
                        "name": "_elixir_erlang",
                        "type": "scatter",
                        "xsrc": "katzicat:171:0dd580",
                        "ysrc": "katzicat:171:31b703"
                    },
                    {
                        "uid": "35c63b3e-bdca-433c-a55b-39c91106edae",
                        "name": "_frontend",
                        "type": "scatter",
                        "xsrc": "katzicat:171:86dbc9",
                        "ysrc": "katzicat:171:f9228b"
                    },
                    {
                        "uid": "4e5aa91f-b1df-4af5-bb80-ce5042e5257f",
                        "name": "_wordpress",
                        "type": "scatter",
                        "xsrc": "katzicat:171:629170",
                        "ysrc": "katzicat:171:0ee905"
                    },
                    {
                        "uid": "dc4c7fc1-b143-4b02-aa2d-a46a248de495",
                        "name": "_game-developers",
                        "type": "scatter",
                        "xsrc": "katzicat:171:51ead1",
                        "ysrc": "katzicat:171:c99a65"
                    },
                    {
                        "uid": "097a80f9-adbc-4027-bf2e-79afd3887213",
                        "name": "_golang",
                        "type": "scatter",
                        "xsrc": "katzicat:171:cc249a",
                        "ysrc": "katzicat:171:927521"
                    },
                    {
                        "uid": "5ca80e38-ffdb-4e28-8a33-03e27bfdf934",
                        "name": "_hardware",
                        "type": "scatter",
                        "xsrc": "katzicat:171:f46d95",
                        "ysrc": "katzicat:171:030c7e"
                    },
                    {
                        "uid": "e6acb4b2-419f-4f59-b1b8-b5dbed0c526c",
                        "name": "_r",
                        "type": "scatter",
                        "xsrc": "katzicat:171:54d641",
                        "ysrc": "katzicat:171:a3014d"
                    },
                    {
                        "uid": "d492eaeb-c2ec-42cf-8056-e357ebd06f1c",
                        "name": "_magento",
                        "type": "scatter",
                        "xsrc": "katzicat:171:ff7f2b",
                        "ysrc": "katzicat:171:ffc3ac"
                    },
                    {
                        "uid": "390bea3c-c138-4f17-9e34-a00f3b1b4d3b",
                        "name": "_sketchapp",
                        "type": "scatter",
                        "xsrc": "katzicat:171:c3c8b2",
                        "ysrc": "katzicat:171:694b9e"
                    },
                    {
                        "uid": "241b0f53-b950-4ea5-9d0a-10a88a028864",
                        "name": "_salesforce",
                        "type": "scatter",
                        "xsrc": "katzicat:171:723442",
                        "ysrc": "katzicat:171:b41d8c"
                    },
                    {
                        "uid": "3489cf35-7389-4665-a3e2-66839d62a78e",
                        "name": "_usertesting",
                        "type": "scatter",
                        "xsrc": "katzicat:171:9728ad",
                        "ysrc": "katzicat:171:1bfb60"
                    },
                    {
                        "uid": "897e8808-cbc7-4e87-9a1a-331a9dfa2e7d",
                        "name": "_drupal",
                        "type": "scatter",
                        "xsrc": "katzicat:171:ae2da9",
                        "ysrc": "katzicat:171:0ee47c"
                    },
                    {
                        "uid": "025c8599-d7fc-4912-a2aa-fc48a699deb5",
                        "name": "_algorithms",
                        "type": "scatter",
                        "xsrc": "katzicat:171:0bf0fd",
                        "ysrc": "katzicat:171:01b159"
                    },
                    {
                        "uid": "e381b62c-b737-43ba-817f-2793baaab98a",
                        "name": "_testing",
                        "type": "scatter",
                        "xsrc": "katzicat:171:fd40bc",
                        "ysrc": "katzicat:171:3faed6"
                    },
                    {
                        "uid": "16331bd8-d346-420a-939a-8e5ae75ee991",
                        "name": "_ar-vr",
                        "type": "scatter",
                        "xsrc": "katzicat:171:7624db",
                        "ysrc": "katzicat:171:c8b948"
                    },
                    {
                        "uid": "b0d4dcf4-2152-4d4b-89d1-3e80209d5fa9",
                        "name": "_functional-prog",
                        "type": "scatter",
                        "xsrc": "katzicat:171:7acb99",
                        "ysrc": "katzicat:171:c266b3"
                    },
                    {
                        "uid": "86006997-e26c-439d-b40f-8b2aac63ad0e",
                        "name": "_machine-learning-ai",
                        "type": "scatter",
                        "xsrc": "katzicat:171:26a81a",
                        "ysrc": "katzicat:171:6d6a52"
                    },
                    {
                        "uid": "a905b4a8-5118-4953-8643-2c1fe97e7e8f",
                        "name": "_rust",
                        "type": "scatter",
                        "xsrc": "katzicat:171:82d75f",
                        "ysrc": "katzicat:171:e6a728"
                    },
                    {
                        "uid": "8cec0379-c7cb-4439-aa9c-c5054c88d161",
                        "name": "_vuejs",
                        "type": "scatter",
                        "xsrc": "katzicat:171:f82519",
                        "ysrc": "katzicat:171:91f4d7"
                    },
                    {
                        "uid": "ae46d17c-4a7e-4168-804c-16c8c97880ab",
                        "name": "_shopify",
                        "type": "scatter",
                        "xsrc": "katzicat:171:fb685d",
                        "ysrc": "katzicat:171:eeea78"
                    },
                    {
                        "uid": "25a97235-3dcf-4110-9456-3dc2b0ec2ee2",
                        "name": "_backend",
                        "type": "scatter",
                        "xsrc": "katzicat:171:5bab63",
                        "ysrc": "katzicat:171:64d57a"
                    },
                    {
                        "uid": "7035297a-340e-435b-b765-c04a7e22ebfb",
                        "name": "_react-native",
                        "type": "scatter",
                        "xsrc": "katzicat:171:58d2a3",
                        "ysrc": "katzicat:171:9c075d"
                    },
                    {
                        "uid": "8eb28c85-0cf3-4936-833e-5ee2d72c8762",
                        "name": "_kotlin-lang",
                        "type": "scatter",
                        "xsrc": "katzicat:171:566d68",
                        "ysrc": "katzicat:171:7ea1ae"
                    },
                    {
                        "uid": "99f5b5fa-6bb3-4a05-a688-cca9bc85411a",
                        "name": "_blockchain-tech",
                        "type": "scatter",
                        "xsrc": "katzicat:171:ce2529",
                        "ysrc": "katzicat:171:d584b0"
                    },
                    {
                        "uid": "bcb7a39f-e367-4e45-92ec-75e334c1ec3c",
                        "name": "_qa",
                        "type": "scatter",
                        "xsrc": "katzicat:171:e6c505",
                        "ysrc": "katzicat:171:8ec950"
                    },
                    {
                        "uid": "3cb198b0-410d-4b36-ae16-84e3f00142db",
                        "name": "_flutter-",
                        "type": "scatter",
                        "xsrc": "katzicat:171:cf30df",
                        "ysrc": "katzicat:171:07c8e0"
                    },
                    {
                        "uid": "34d17137-8e28-405c-8c8f-f8c436edd3ae",
                        "name": "_typescript-",
                        "type": "scatter",
                        "xsrc": "katzicat:171:d58e3c",
                        "ysrc": "katzicat:171:60b88e"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~katzicat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-18 16:23:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "katzicat",
                "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-17T18:42:30.857369Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nhartley/1.embed",
            "fid": "nhartley:1",
            "filename": "1N4148 Diode Lab 1 Plot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nhartley:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nhartley/1/2_N94MIBLZE6C1RAZFWQT1M2U6Q4CLPV.png",
                "block-thumb": "https://api.plotly.com/v2/files/nhartley:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/nhartley:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nhartley:1",
                "plots": "https://api.plotly.com/v2/plots/nhartley:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=nhartley"
            },
            "owner": "nhartley",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nhartley/1/",
            "world_readable": true,
            "date_modified": "2019-06-19T15:28:19.608Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nhartley/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers+lines",
                        "name": "Diode",
                        "type": "scatter",
                        "xsrc": "nhartley:0:8d360f",
                        "ysrc": "nhartley:0:27a149",
                        "textsrc": "nhartley:0:38d8c9",
                        "textfont": {
                            "color": "rgb(67, 62, 111)"
                        },
                        "hoverinfo": "x+y+name"
                    },
                    {
                        "mode": "markers+lines",
                        "name": "Resistor",
                        "type": "scatter",
                        "xsrc": "nhartley:0:8d360f",
                        "ysrc": "nhartley:0:38d8c9",
                        "xaxis": "x",
                        "textsrc": "nhartley:0:27a149",
                        "visible": true,
                        "stackgroup": null,
                        "textposition": "top center"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.3166666666666667,
                            5.516666666666667
                        ],
                        "title": {
                            "text": "Supply Voltage (V)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.29526451138868487,
                            4.785264511388685
                        ],
                        "title": {
                            "text": "Element Voltage (V)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nhartley",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 18:27:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nhartley",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}