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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzE4JTNBMjglM0EyNy40ODY5MDglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxOCUzQTM1JTNBMjIuODE5NzUzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T18:35:22.819753Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~brendan115/141.embed",
            "fid": "brendan115:141",
            "filename": "mean_corr_heatmap",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/brendan115:141/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/brendan115:141/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/brendan115/141/8_BLKIN5KYKTBPIEM57DUT6LQTW66GBI.png",
                "list-thumb": "https://api.plotly.com/v2/files/brendan115:141/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/brendan115:141",
                "plots": "https://api.plotly.com/v2/plots/brendan115:141",
                "parent": "https://api.plotly.com/v2/folders/home?user=brendan115"
            },
            "owner": "brendan115",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~brendan115/141/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:45:15.511Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~brendan115/141/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "51780e97-1d42-40ef-88d8-8b19a47a44d4",
                        "type": "heatmap",
                        "xsrc": "brendan115:142:dcff5e",
                        "ysrc": "brendan115:142:6423d7",
                        "zsrc": "brendan115:142:ae9f55,8a9adb,b5f060,99edb2,8b859a,f1e74d"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "width": 850,
                    "xaxis": {
                        "side": "bottom"
                    },
                    "height": 700
                }
            },
            "height": 700,
            "width": 850,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~brendan115",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.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": "2018-01-25 17:57:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "brendan115",
                "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:35:11.851004Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~YotamCohen/1.embed",
            "fid": "YotamCohen:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/YotamCohen:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/YotamCohen:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/YotamCohen/1/8_TENFD3AKCASAWBND5ZJWC0PBOX0XC1.png",
                "list-thumb": "https://api.plotly.com/v2/files/YotamCohen:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/YotamCohen:1",
                "plots": "https://api.plotly.com/v2/plots/YotamCohen:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=YotamCohen"
            },
            "owner": "YotamCohen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~YotamCohen/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:35:11.864Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~YotamCohen/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "nintendo",
                        "type": "scatter",
                        "xsrc": "YotamCohen:0:98c8a5",
                        "ysrc": "YotamCohen:0:08bf24",
                        "connectgaps": true
                    },
                    {
                        "mode": "lines",
                        "name": "nintendoswitch",
                        "type": "scatter",
                        "xsrc": "YotamCohen:0:f1a876",
                        "ysrc": "YotamCohen:0:a2defe"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2012-10-28 20:00",
                            "2019-06-15 20:00"
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -47590.3888888889,
                            1236357.388888889
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "margin": {
                        "b": 30,
                        "l": 40,
                        "r": 30,
                        "t": 0,
                        "pad": 0
                    },
                    "autosize": true,
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~YotamCohen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/76.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 18:34:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "YotamCohen",
                "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:34:14.711335Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/64.embed",
            "fid": "ocing66:64",
            "filename": "日照時數",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:64/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ocing66/64/2_E0XVGBA4LTEY1PO7MHO596Q0B0TVJO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/64/8_LFY9Z4002JPE7MCB330QSCYXCLQQGU.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:64/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:64",
                "plots": "https://api.plotly.com/v2/plots/ocing66:64",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Manually Set Date Range",
            "views": 46,
            "web_url": "https://chart-studio.plotly.com/~ocing66/64/manually-set-date-range/",
            "world_readable": true,
            "date_modified": "2019-11-30T16:01:02.907Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/64/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ed6c45c1-232b-4227-8535-20e9a6e30096",
                        "line": {
                            "color": "#bfcf17"
                        },
                        "name": "臺北(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:7dfdcd",
                        "opacity": 0.8
                    },
                    {
                        "uid": "4b86c5b2-0150-4217-9874-ee1a2f3a9328",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:df05ef",
                        "opacity": 0.8
                    },
                    {
                        "uid": "3950e06c-ba44-405f-a083-719b25b7d92e",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:3760db",
                        "opacity": 0.8
                    },
                    {
                        "uid": "a84026f0-bd46-4354-87e1-76ccbb720d7c",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:86d464",
                        "opacity": 0.8
                    },
                    {
                        "uid": "1774b06f-f75b-46e2-915b-7b826beaf8af",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:aa3f82",
                        "opacity": 0.8
                    },
                    {
                        "uid": "2646a0a4-9d78-4892-acd7-8b262bbaef18",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(小時)",
                        "type": "scatter",
                        "xsrc": "ocing66:65:ef682f",
                        "ysrc": "ocing66:65:c4cb40",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Manually Set Date Range"
                    }
                }
            },
            "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:33:24.609114Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~msubasri/5.embed",
            "fid": "msubasri:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/msubasri:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/msubasri:5/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/msubasri:5/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/msubasri:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/msubasri:5",
                "plots": "https://api.plotly.com/v2/plots/msubasri:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=msubasri"
            },
            "owner": "msubasri",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~msubasri/5/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:33:24.625Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~msubasri/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "43340e",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "msubasri:4:672e47",
                        "ysrc": "msubasri:4:8b6e42",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "35a815",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "msubasri:4:672e47",
                        "ysrc": "msubasri:4:d4c49c",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "TERT Retained Intron (ENST00000484238.6)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            30.5
                        ],
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            3.768421052631579
                        ],
                        "title": {
                            "text": "Expression - TPM"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~msubasri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-04 17:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "msubasri",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T18:32:52.148184Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gaioski/1.embed",
            "fid": "gaioski:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gaioski:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/gaioski:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/gaioski:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/gaioski:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gaioski:1",
                "plots": "https://api.plotly.com/v2/plots/gaioski:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=gaioski"
            },
            "owner": "gaioski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gaioski/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:32:52.161Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gaioski/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c307d7a7-b5fe-4d72-a40e-30473cf96305",
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "gaioski:0:b10dd5",
                        "ysrc": "gaioski:0:3c3081",
                        "textsrc": "gaioski:0:e58871"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "log",
                        "range": [
                            2.3102730036977253,
                            4.826421564351179
                        ],
                        "title": {
                            "text": "GDP per Capita"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            36.83870458952812,
                            85.37729541047187
                        ],
                        "title": {
                            "text": "Life Expectancy"
                        },
                        "autorange": true
                    },
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gaioski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/12.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 13:01:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gaioski",
                "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:32:16.930355Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~msubasri/3.embed",
            "fid": "msubasri:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/msubasri:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/msubasri:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/msubasri:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/msubasri:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/msubasri:3",
                "plots": "https://api.plotly.com/v2/plots/msubasri:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=msubasri"
            },
            "owner": "msubasri",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~msubasri/3/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:32:16.944Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~msubasri/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "96ecab",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "msubasri:2:faf1f5",
                        "ysrc": "msubasri:2:4385be",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "e59a88",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "msubasri:2:faf1f5",
                        "ysrc": "msubasri:2:7bcb3a",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "TERT Full-Length (ENST00000310581.9)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            30.5
                        ],
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1.3789473684210527
                        ],
                        "title": {
                            "text": "Expression - TPM"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~msubasri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-04 17:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "msubasri",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T18:30:45.055232Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~msubasri/1.embed",
            "fid": "msubasri:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/msubasri:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/msubasri/1/2_51S7I1A15609JQQ87HGCPKEWTTM159.png",
                "block-thumb": "https://api.plotly.com/v2/files/msubasri:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/msubasri:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/msubasri:1",
                "plots": "https://api.plotly.com/v2/plots/msubasri:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=msubasri"
            },
            "owner": "msubasri",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~msubasri/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T18:30:45.073Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~msubasri/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c45e97",
                        "name": "Tumor",
                        "type": "bar",
                        "xsrc": "msubasri:0:e502ed",
                        "ysrc": "msubasri:0:cd7b86",
                        "marker": {
                            "color": "#FF6666"
                        }
                    },
                    {
                        "uid": "c88872",
                        "name": "Normal",
                        "type": "bar",
                        "xsrc": "msubasri:0:e502ed",
                        "ysrc": "msubasri:0:e079d2",
                        "marker": {
                            "color": "#444444"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            30.5
                        ],
                        "tickfont": {
                            "size": 14,
                            "family": "Arial"
                        },
                        "autorange": true,
                        "tickangle": -45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            2.8842105263157896
                        ],
                        "title": {
                            "text": "Expression - log2(TPM + 1)"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "lasso"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~msubasri",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-04 17:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "msubasri",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T18:29:59.354387Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wellaweg/2.embed",
            "fid": "wellaweg:2",
            "filename": "Basic Distplot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/wellaweg:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/wellaweg:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/wellaweg:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/wellaweg:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wellaweg:2",
                "plots": "https://api.plotly.com/v2/plots/wellaweg:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=wellaweg"
            },
            "owner": "wellaweg",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "distplot, distplot, distplot",
            "views": 10,
            "web_url": "https://chart-studio.plotly.com/~wellaweg/2/distplot-distplot-distplot/",
            "world_readable": true,
            "date_modified": "2019-06-20T06:15:46.694Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wellaweg/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "97ffc309-025d-43a5-a10d-2d2778cf78c5",
                        "name": "distplot",
                        "type": "histogram",
                        "xsrc": "wellaweg:3:2e8f92",
                        "xaxis": "x",
                        "xbins": {
                            "end": 1121.85,
                            "size": 1.0,
                            "start": 260.28
                        },
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.7,
                        "autobinx": false,
                        "histnorm": "probability density",
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "f01c1c09-3be7-42a7-ba05-330d302df9d2",
                        "mode": "lines",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "wellaweg:3:fa9f6b",
                        "ysrc": "wellaweg:3:67ffe0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    },
                    {
                        "uid": "5b667668-1723-47ef-91e1-86dccb41960d",
                        "mode": "markers",
                        "name": "distplot",
                        "type": "scatter",
                        "xsrc": "wellaweg:3:2e8f92",
                        "ysrc": "wellaweg:3:a22746",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "distplot"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~wellaweg",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-16 11:02:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wellaweg",
                "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:29:13.458106Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ocing66/62.embed",
            "fid": "ocing66:62",
            "filename": "Manually Set Range",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ocing66:62/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ocing66:62/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ocing66/62/8_QKGFPEO1P1ZY4EXV04BU65247IK1W4.png",
                "list-thumb": "https://api.plotly.com/v2/files/ocing66:62/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ocing66:62",
                "plots": "https://api.plotly.com/v2/plots/ocing66:62",
                "parent": "https://api.plotly.com/v2/folders/home?user=ocing66"
            },
            "owner": "ocing66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Manually Set Date Range",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ocing66/62/manually-set-date-range/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:36:35.746Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ocing66/62/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "572fb746-6a74-43c0-82c2-2a4ab7f7a7fb",
                        "line": {
                            "color": "#17BECF"
                        },
                        "name": "臺北(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:b21813",
                        "opacity": 0.8
                    },
                    {
                        "uid": "c1ffaa18-862a-46ff-8859-24c2dd992e7b",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "高雄(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:a13390",
                        "opacity": 0.8
                    },
                    {
                        "uid": "2797e1fd-5928-4773-a749-b08f24bb25e5",
                        "line": {
                            "color": "#17becf"
                        },
                        "name": "淡水(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:623194",
                        "opacity": 0.8
                    },
                    {
                        "uid": "b6a8f8cc-86e5-4d6d-a391-b16686f5f02a",
                        "line": {
                            "color": "#bf17cf"
                        },
                        "name": "新竹(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:d75f15",
                        "opacity": 0.8
                    },
                    {
                        "uid": "26c01b55-4be7-4c64-ae74-b8f8ac275ec7",
                        "line": {
                            "color": "#cf6c17"
                        },
                        "name": "臺中(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:8dac3e",
                        "opacity": 0.8
                    },
                    {
                        "uid": "cede2179-3e3f-47b3-835b-6102fd13bc73",
                        "line": {
                            "color": "#1732cf"
                        },
                        "name": "花蓮(日)",
                        "type": "scatter",
                        "xsrc": "ocing66:63:37d99c",
                        "ysrc": "ocing66:63:257653",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Manually Set Date Range"
                    }
                }
            },
            "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:28:27.486908Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mtsznowak9/1.embed",
            "fid": "mtsznowak9:1",
            "filename": "przyjazdy",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mtsznowak9:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mtsznowak9/1/2_0KZI9JV6FDSTMXW9N86A7W2FF75K8M.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mtsznowak9/1/8_OAM8PQKQKYT10PL9QE5EQ58HAOHYY8.png",
                "list-thumb": "https://api.plotly.com/v2/files/mtsznowak9:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mtsznowak9:1",
                "plots": "https://api.plotly.com/v2/plots/mtsznowak9:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mtsznowak9"
            },
            "owner": "mtsznowak9",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~mtsznowak9/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:52:39.578Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mtsznowak9/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "trace 0",
                        "sort": true,
                        "type": "pie",
                        "xsrc": "mtsznowak9:0:f9869e",
                        "ysrc": "mtsznowak9:0:1ac258",
                        "textfont": {
                            "size": 23
                        },
                        "textinfo": "label+percent",
                        "labelssrc": "mtsznowak9:0:1ac258",
                        "valuessrc": "mtsznowak9:0:f9869e",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "text": "Sei venuto in Italia:"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            14.5,
                            28.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1.0526315789473684
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "size": 25
                        }
                    },
                    "barmode": "group",
                    "autosize": true,
                    "colorway": [
                        "#66c2a5",
                        "#fc8d62",
                        "#8da0cb",
                        "#e78ac3",
                        "#a6d854",
                        "#ffd92f",
                        "#e5c494",
                        "#b3b3b3"
                    ],
                    "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,
                                "#fff7fb"
                            ],
                            [
                                0.125,
                                "#ece2f0"
                            ],
                            [
                                0.25,
                                "#d0d1e6"
                            ],
                            [
                                0.375,
                                "#a6bddb"
                            ],
                            [
                                0.5,
                                "#67a9cf"
                            ],
                            [
                                0.625,
                                "#3690c0"
                            ],
                            [
                                0.75,
                                "#02818a"
                            ],
                            [
                                0.875,
                                "#016c59"
                            ],
                            [
                                1,
                                "#014636"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mtsznowak9",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 18:22:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mtsznowak9",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}