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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA0LTIyKzAyJTNBNTAlM0EwMC42OTQ5NjMlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNC0yMiswMiUzQTU4JTNBMTYuOTkzMzY1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-04-22T02:58:16.993365Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~kecbenson/32.embed",
            "fid": "kecbenson:32",
            "filename": "plot from API (15)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kecbenson:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kecbenson:32/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kecbenson:32/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kecbenson:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kecbenson:32",
                "plots": "https://api.plotly.com/v2/plots/kecbenson:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=kecbenson"
            },
            "owner": "kecbenson",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Overfitting / Underfitting Curve for k-NN",
            "views": 0,
            "web_url": "https://plotly.com/~kecbenson/32/overfitting-underfitting-curve-for-k-nn/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:58:17.393Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~kecbenson/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "224eced3-752b-49ed-9f48-6f3cdcb19be7",
                        "mode": "lines+markers",
                        "name": "train_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:33:fdbc45",
                        "ysrc": "kecbenson:33:7696c3"
                    },
                    {
                        "uid": "bb5eeff2-10a6-4ede-b8e8-b1fe737630ed",
                        "mode": "lines+markers",
                        "name": "test_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:33:fdbc45",
                        "ysrc": "kecbenson:33:4da2ab"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Overfitting / Underfitting Curve for k-NN"
                    },
                    "xaxis": {
                        "title": {
                            "text": "k Nearest Neighbors"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Accuracy Score"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~kecbenson",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "Kevin",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 23:42:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kecbenson",
                "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-04-22T02:57:50.386903Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~jazerape/28.embed",
            "fid": "jazerape:28",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jazerape:28/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jazerape:28/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jazerape/28/8_TGBPZISO4JC6R945X79V68UQV99RN8.png",
                "list-thumb": "https://api.plotly.com/v2/files/jazerape:28/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jazerape:28",
                "plots": "https://api.plotly.com/v2/plots/jazerape:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=jazerape"
            },
            "owner": "jazerape",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://plotly.com/~jazerape/28/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:57:50.830Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~jazerape/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "labelssrc": "jazerape:29:7e23e1",
                        "valuessrc": "jazerape:29:5fa3f7"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~jazerape",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-09 18:47:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jazerape",
                "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-04-22T02:57:35.910629Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~theom/223.embed",
            "fid": "theom:223",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/theom:223/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/theom:223/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/theom:223/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/theom:223/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/theom:223",
                "plots": "https://api.plotly.com/v2/plots/theom:223",
                "parent": "https://api.plotly.com/v2/folders/home?user=theom"
            },
            "owner": "theom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Median Visitor Minutes by App Publisher and Visitor's Gender",
            "views": 1,
            "web_url": "https://plotly.com/~theom/223/median-visitor-minutes-by-app-publisher-and-visitors-gender/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:57:36.324Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~theom/223/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "86911d8a-147a-43a7-8bb5-3a34cbbff0f1",
                        "name": "Unknown Gender",
                        "type": "bar",
                        "xsrc": "theom:224:5aa8c3",
                        "ysrc": "theom:224:a1f5bd",
                        "marker": {
                            "color": "rgb(150, 0, 10)"
                        }
                    },
                    {
                        "uid": "a7daa527-ab5a-4216-963f-3be109c525e8",
                        "name": "Male",
                        "type": "bar",
                        "xsrc": "theom:224:5aa8c3",
                        "ysrc": "theom:224:081577",
                        "marker": {
                            "color": "rgb(100, 0, 10)"
                        }
                    },
                    {
                        "uid": "7430c799-4f93-49e5-bbc9-e2adf793bad6",
                        "name": "Female",
                        "type": "bar",
                        "xsrc": "theom:224:5aa8c3",
                        "ysrc": "theom:224:8f4c25",
                        "marker": {
                            "color": "rgb(50, 0, 10)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Median Visitor Minutes by App Publisher and Visitor's Gender"
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~theom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-06-22 06:30:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "theom",
                "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-04-22T02:56:59.952551Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~theom/221.embed",
            "fid": "theom:221",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/theom:221/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/theom:221/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/theom:221/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/theom:221/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/theom:221",
                "plots": "https://api.plotly.com/v2/plots/theom:221",
                "parent": "https://api.plotly.com/v2/folders/home?user=theom"
            },
            "owner": "theom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Median Visitor Minutes by App Name and Visitor's Gender",
            "views": 1,
            "web_url": "https://plotly.com/~theom/221/median-visitor-minutes-by-app-name-and-visitors-gender/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:57:00.327Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~theom/221/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "31d53053-a216-4ffb-b98f-fa25874f4382",
                        "name": "Unknown Gender",
                        "type": "bar",
                        "xsrc": "theom:222:cd2ad8",
                        "ysrc": "theom:222:b14c2b",
                        "marker": {
                            "color": "rgb(10, 0, 100)"
                        }
                    },
                    {
                        "uid": "3a2c87d3-c8f2-4da0-a004-6f969512cad9",
                        "name": "Male",
                        "type": "bar",
                        "xsrc": "theom:222:cd2ad8",
                        "ysrc": "theom:222:bd488b",
                        "marker": {
                            "color": "rgb(10, 0, 180)"
                        }
                    },
                    {
                        "uid": "0e1f49ad-860f-41fb-b487-7c8c789f8ec5",
                        "name": "Female",
                        "type": "bar",
                        "xsrc": "theom:222:cd2ad8",
                        "ysrc": "theom:222:7b512b",
                        "marker": {
                            "color": "rgb(10, 0, 255)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Median Visitor Minutes by App Name and Visitor's Gender"
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~theom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-06-22 06:30:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "theom",
                "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-04-22T02:56:29.681958Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~theom/219.embed",
            "fid": "theom:219",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/theom:219/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/theom:219/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/theom:219/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/theom:219/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/theom:219",
                "plots": "https://api.plotly.com/v2/plots/theom:219",
                "parent": "https://api.plotly.com/v2/folders/home?user=theom"
            },
            "owner": "theom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Median Visitor Minutes by App Name and Visitor's Gender",
            "views": 1,
            "web_url": "https://plotly.com/~theom/219/median-visitor-minutes-by-app-name-and-visitors-gender/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:56:30.175Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~theom/219/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c2b61f8b-773f-4e19-bd10-3c319572b53a",
                        "name": "Unknown Gender",
                        "type": "bar",
                        "xsrc": "theom:220:04b2c2",
                        "ysrc": "theom:220:bf6d04",
                        "marker": {
                            "color": "rgb(10, 0, 80)"
                        }
                    },
                    {
                        "uid": "b35dd4f3-af58-4a7b-b2dc-f398a63d7ddf",
                        "name": "Male",
                        "type": "bar",
                        "xsrc": "theom:220:04b2c2",
                        "ysrc": "theom:220:411f58",
                        "marker": {
                            "color": "rgb(10, 0, 150)"
                        }
                    },
                    {
                        "uid": "24c779a0-cfcb-4c70-bab0-f9e364f15ee2",
                        "name": "Female",
                        "type": "bar",
                        "xsrc": "theom:220:04b2c2",
                        "ysrc": "theom:220:d70f04",
                        "marker": {
                            "color": "rgb(10, 0, 220)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Median Visitor Minutes by App Name and Visitor's Gender"
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~theom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-06-22 06:30:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "theom",
                "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-04-22T02:55:42.954832Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~11518176/1.embed",
            "fid": "11518176:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/11518176:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/11518176:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/11518176:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/11518176:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/11518176:1",
                "plots": "https://api.plotly.com/v2/plots/11518176:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=11518176"
            },
            "owner": "11518176",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://plotly.com/~11518176/1/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:55:42.976Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~11518176/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a51045",
                        "name": "T-cell_ALL(16)",
                        "type": "box",
                        "ysrc": "11518176:0:de3527",
                        "marker": {
                            "color": "hsl(0,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "d471dd",
                        "name": "neuroblastoma(17)",
                        "type": "box",
                        "ysrc": "11518176:0:c6f863",
                        "marker": {
                            "color": "hsl(9.23076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "bd8cb7",
                        "name": "urinary_tract(28)",
                        "type": "box",
                        "ysrc": "11518176:0:c84564",
                        "marker": {
                            "color": "hsl(18.46153846153846,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "ba85e4",
                        "name": "breast(60)",
                        "type": "box",
                        "ysrc": "11518176:0:422bf2",
                        "marker": {
                            "color": "hsl(27.692307692307693,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "bab77a",
                        "name": "leukemia_other(5)",
                        "type": "box",
                        "ysrc": "11518176:0:cdfbc0",
                        "marker": {
                            "color": "hsl(36.92307692307692,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "b9fdcf",
                        "name": "AML(39)",
                        "type": "box",
                        "ysrc": "11518176:0:1f53e0",
                        "marker": {
                            "color": "hsl(46.15384615384615,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "ffdc58",
                        "name": "colorectal(63)",
                        "type": "box",
                        "ysrc": "11518176:0:46ce58",
                        "marker": {
                            "color": "hsl(55.38461538461539,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "1d9843",
                        "name": "pancreas(46)",
                        "type": "box",
                        "ysrc": "11518176:0:cbdd62",
                        "marker": {
                            "color": "hsl(64.61538461538461,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "27a96e",
                        "name": "endometrium(28)",
                        "type": "box",
                        "ysrc": "11518176:0:b35dd7",
                        "marker": {
                            "color": "hsl(73.84615384615384,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "41f481",
                        "name": "lung_NSC(136)",
                        "type": "box",
                        "ysrc": "11518176:0:35208d",
                        "marker": {
                            "color": "hsl(83.07692307692308,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "251a06",
                        "name": "B-cell_ALL(13)",
                        "type": "box",
                        "ysrc": "11518176:0:83b4ba",
                        "marker": {
                            "color": "hsl(92.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "425b99",
                        "name": "upper_aerodigestive(33)",
                        "type": "box",
                        "ysrc": "11518176:0:0ba4df",
                        "marker": {
                            "color": "hsl(101.53846153846153,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "15f060",
                        "name": "meningioma(3)",
                        "type": "box",
                        "ysrc": "11518176:0:55c998",
                        "marker": {
                            "color": "hsl(110.76923076923077,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "72922b",
                        "name": "esophagus(27)",
                        "type": "box",
                        "ysrc": "11518176:0:27f275",
                        "marker": {
                            "color": "hsl(120,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "045a20",
                        "name": "ovary(55)",
                        "type": "box",
                        "ysrc": "11518176:0:dbc141",
                        "marker": {
                            "color": "hsl(129.23076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "c97c6b",
                        "name": "osteosarcoma(10)",
                        "type": "box",
                        "ysrc": "11518176:0:879a1a",
                        "marker": {
                            "color": "hsl(138.46153846153845,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "01b880",
                        "name": "kidney(37)",
                        "type": "box",
                        "ysrc": "11518176:0:ae3f78",
                        "marker": {
                            "color": "hsl(147.69230769230768,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "7eebae",
                        "name": "prostate(8)",
                        "type": "box",
                        "ysrc": "11518176:0:0bd95e",
                        "marker": {
                            "color": "hsl(156.92307692307693,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "681d2a",
                        "name": "bile_duct(8)",
                        "type": "box",
                        "ysrc": "11518176:0:7caf16",
                        "marker": {
                            "color": "hsl(166.15384615384616,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "2e1452",
                        "name": "thyroid(12)",
                        "type": "box",
                        "ysrc": "11518176:0:7d76df",
                        "marker": {
                            "color": "hsl(175.3846153846154,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "e606df",
                        "name": "stomach(39)",
                        "type": "box",
                        "ysrc": "11518176:0:e3c1fa",
                        "marker": {
                            "color": "hsl(184.6153846153846,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "e03391",
                        "name": "mesothelioma(11)",
                        "type": "box",
                        "ysrc": "11518176:0:82a170",
                        "marker": {
                            "color": "hsl(193.84615384615384,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "062f31",
                        "name": "chondrosarcoma(4)",
                        "type": "box",
                        "ysrc": "11518176:0:491b94",
                        "marker": {
                            "color": "hsl(203.07692307692307,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "777347",
                        "name": "lymphoma_DLBCL(18)",
                        "type": "box",
                        "ysrc": "11518176:0:962e4d",
                        "marker": {
                            "color": "hsl(212.30769230769232,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "3b1326",
                        "name": "Ewings_sarcoma(12)",
                        "type": "box",
                        "ysrc": "11518176:0:170977",
                        "marker": {
                            "color": "hsl(221.53846153846155,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "e921b4",
                        "name": "CML(15)",
                        "type": "box",
                        "ysrc": "11518176:0:97122b",
                        "marker": {
                            "color": "hsl(230.76923076923077,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "3e9347",
                        "name": "lymphoma_Burkitt(11)",
                        "type": "box",
                        "ysrc": "11518176:0:ec513f",
                        "marker": {
                            "color": "hsl(240,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "bb9913",
                        "name": "soft_tissue(20)",
                        "type": "box",
                        "ysrc": "11518176:0:5d6a43",
                        "marker": {
                            "color": "hsl(249.23076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "5ef8d5",
                        "name": "lung_small_cell(54)",
                        "type": "box",
                        "ysrc": "11518176:0:c5e355",
                        "marker": {
                            "color": "hsl(258.46153846153845,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "5fb37e",
                        "name": "liver(29)",
                        "type": "box",
                        "ysrc": "11518176:0:d21004",
                        "marker": {
                            "color": "hsl(267.6923076923077,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "2ebdde",
                        "name": "NA(387)",
                        "type": "box",
                        "ysrc": "11518176:0:97e64b",
                        "marker": {
                            "color": "hsl(276.9230769230769,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "d44e28",
                        "name": "glioma(66)",
                        "type": "box",
                        "ysrc": "11518176:0:769262",
                        "marker": {
                            "color": "hsl(286.15384615384613,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "e86ad9",
                        "name": "lymphoma_Hodgkin(13)",
                        "type": "box",
                        "ysrc": "11518176:0:405bb1",
                        "marker": {
                            "color": "hsl(295.38461538461536,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "9db3e7",
                        "name": "medulloblastoma(4)",
                        "type": "box",
                        "ysrc": "11518176:0:7a96ff",
                        "marker": {
                            "color": "hsl(304.61538461538464,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "9b1c68",
                        "name": "B-cell_lymphoma_other(16)",
                        "type": "box",
                        "ysrc": "11518176:0:1e3812",
                        "marker": {
                            "color": "hsl(313.84615384615387,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "2c546c",
                        "name": "other(8)",
                        "type": "box",
                        "ysrc": "11518176:0:d10373",
                        "marker": {
                            "color": "hsl(323.0769230769231,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "d3908a",
                        "name": "T-cell_lymphoma_other(11)",
                        "type": "box",
                        "ysrc": "11518176:0:dc8d34",
                        "marker": {
                            "color": "hsl(332.3076923076923,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "136f7e",
                        "name": "giant_cell_tumour(3)",
                        "type": "box",
                        "ysrc": "11518176:0:d56170",
                        "marker": {
                            "color": "hsl(341.53846153846155,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "dca7d9",
                        "name": "multiple_myeloma(29)",
                        "type": "box",
                        "ysrc": "11518176:0:6283f4",
                        "marker": {
                            "color": "hsl(350.7692307692308,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    },
                    {
                        "uid": "29cf37",
                        "name": "melanoma(63)",
                        "type": "box",
                        "ysrc": "11518176:0:30cb10",
                        "marker": {
                            "color": "hsl(360,50%,50%)"
                        },
                        "boxmean": true,
                        "boxpoints": "outliers"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "mRNA expression (RNAseq): CAMK2G"
                    },
                    "width": 1383,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            39.5
                        ],
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.689995496862434,
                            6.261972757663054
                        ],
                        "autorange": true
                    },
                    "height": 750,
                    "legend": {
                        "bgcolor": "#E2E2E2",
                        "bordercolor": "#222",
                        "borderwidth": 1
                    },
                    "margin": {
                        "b": 250,
                        "pad": 5
                    },
                    "dragmode": "pan",
                    "hovermode": "closest",
                    "showticklabels": true
                }
            },
            "height": 750,
            "width": 1383,
            "user": {
                "profile_url": "https://plotly.com/~11518176",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 02:54:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "11518176",
                "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-04-22T02:55:38.736519Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~theom/217.embed",
            "fid": "theom:217",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/theom:217/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/theom:217/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/theom:217/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/theom:217/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/theom:217",
                "plots": "https://api.plotly.com/v2/plots/theom:217",
                "parent": "https://api.plotly.com/v2/folders/home?user=theom"
            },
            "owner": "theom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Median Visitor Minutes by App Name and Visitor's Gender",
            "views": 1,
            "web_url": "https://plotly.com/~theom/217/median-visitor-minutes-by-app-name-and-visitors-gender/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:55:39.196Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~theom/217/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9e4c7142-7e2b-445d-820f-5b5bc4cce2e4",
                        "name": "Unknown Gender",
                        "type": "bar",
                        "xsrc": "theom:218:f37f37",
                        "ysrc": "theom:218:caca8d",
                        "marker": {
                            "color": "rgb(10, 0, 50)"
                        }
                    },
                    {
                        "uid": "dea2376b-2282-4cfa-aec6-5dcb19f844c2",
                        "name": "Male",
                        "type": "bar",
                        "xsrc": "theom:218:f37f37",
                        "ysrc": "theom:218:e73e88",
                        "marker": {
                            "color": "rgb(10, 0, 100)"
                        }
                    },
                    {
                        "uid": "d1957f8d-9dfd-4415-b7bf-b9a10ae7287f",
                        "name": "Female",
                        "type": "bar",
                        "xsrc": "theom:218:f37f37",
                        "ysrc": "theom:218:c82ee9",
                        "marker": {
                            "color": "rgb(10, 0, 150)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Median Visitor Minutes by App Name and Visitor's Gender"
                    },
                    "barmode": "group"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~theom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/87.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-06-22 06:30:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "theom",
                "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-04-22T02:55:10.608283Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~kecbenson/30.embed",
            "fid": "kecbenson:30",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kecbenson:30/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kecbenson:30/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kecbenson:30/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kecbenson:30/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kecbenson:30",
                "plots": "https://api.plotly.com/v2/plots/kecbenson:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=kecbenson"
            },
            "owner": "kecbenson",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "test ",
            "views": 1,
            "web_url": "https://plotly.com/~kecbenson/30/test/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:55:11.101Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~kecbenson/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "023122e4-58f6-464b-b1ce-ed6a7bfe17c2",
                        "mode": "lines+markers",
                        "name": "train_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:31:4750d6",
                        "ysrc": "kecbenson:31:f4ad1a"
                    },
                    {
                        "uid": "5e11e4bc-d6ad-4f4f-b268-b16808fa6439",
                        "mode": "lines+markers",
                        "name": "test_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:31:4750d6",
                        "ysrc": "kecbenson:31:6c5622"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "test "
                    },
                    "xaxis": {
                        "title": {
                            "text": "k"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "accuracy"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~kecbenson",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "Kevin",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 23:42:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kecbenson",
                "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-04-22T02:55:06.033470Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~carolynduran/24.embed",
            "fid": "carolynduran:24",
            "filename": "Top 10 Artists Most Listened to on Amazon Music",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/carolynduran:24/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/carolynduran/24/2_OKPOLH2QWZXVKD0N71DD413U11JGC3.png",
                "block-thumb": "https://api.plotly.com/v2/files/carolynduran:24/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/carolynduran:24/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/carolynduran:24",
                "plots": "https://api.plotly.com/v2/plots/carolynduran:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=carolynduran"
            },
            "owner": "carolynduran",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://plotly.com/~carolynduran/24/",
            "world_readable": true,
            "date_modified": "2019-04-22T17:24:37.696Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~carolynduran/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "689e9f8e-9838-4493-99b0-061777e81840",
                        "type": "pie",
                        "marker": {
                            "line": {
                                "color": "rgb(100,100,100)",
                                "width": 1
                            },
                            "colors": [
                                "red",
                                "yellow",
                                "lightgreen",
                                "darkgreen",
                                "lightblue",
                                "blue",
                                "violet",
                                "purple",
                                "magenta",
                                "pink"
                            ]
                        },
                        "labelssrc": "carolynduran:25:ef2c6c",
                        "valuessrc": "carolynduran:25:e41fc3"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~carolynduran",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-15 17:21:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "carolynduran",
                "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-04-22T02:50:00.694963Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://plotly.com/~kecbenson/28.embed",
            "fid": "kecbenson:28",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kecbenson/28/9_0H1APPUKDATP0U6NK3OGYQBIB4JJTB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kecbenson/28/2_B92BTJOUD9UZBB9SVQVPI6DOUBU6PE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kecbenson/28/8_U6LPH4I83H6QNUJA7ZJ2UBA0O2UQDN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kecbenson/28/9_0H1APPUKDATP0U6NK3OGYQBIB4JJTB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kecbenson:28",
                "plots": "https://api.plotly.com/v2/plots/kecbenson:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=kecbenson"
            },
            "owner": "kecbenson",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "train_accuracy vs test_accuracy",
            "views": 5,
            "web_url": "https://plotly.com/~kecbenson/28/train-accuracy-vs-test-accuracy/",
            "world_readable": true,
            "date_modified": "2019-04-22T02:50:01.093Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://plotly.com/~kecbenson/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3a5800ca-48ee-4e45-b6b7-bee8adca7e8f",
                        "mode": "lines+markers",
                        "name": "train_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:29:de7dc4",
                        "ysrc": "kecbenson:29:150317"
                    },
                    {
                        "uid": "705d91e7-6311-40ea-a82f-a822e99e39b4",
                        "mode": "lines+markers",
                        "name": "test_accuracy",
                        "type": "scatter",
                        "xsrc": "kecbenson:29:de7dc4",
                        "ysrc": "kecbenson:29:96a995"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://plotly.com/~kecbenson",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/9.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "Kevin",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-28 23:42:28",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kecbenson",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}