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=cj0xJnA9MjAxOS0wNi0xNysxOSUzQTE5JTNBMzQuMzkyMzc1JTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE3KzE5JTNBMTklM0EzNy43NjkyNzElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxOSUzQTI2JTNBMjEuNTY4MDMyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T19:26:21.568032Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~holmes00/18.embed",
            "fid": "holmes00:18",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/holmes00/18/9_D7Z4DNH6TWWCG3E4YIKGX08Y3D8SY9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/holmes00/18/2_ZG17FLHS9EG4HJZP5Y85MYGZCZT2TO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/holmes00/18/8_S3Y2GM0U47V6JMYC6C4GTUK4CZMUJI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/holmes00/18/9_D7Z4DNH6TWWCG3E4YIKGX08Y3D8SY9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/holmes00:18",
                "plots": "https://api.plotly.com/v2/plots/holmes00:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=holmes00"
            },
            "owner": "holmes00",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "March 2019 vs YoY 2018 to 2019",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~holmes00/18/march-2019-vs-yoy-2018-to-2019/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:26:22.051Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~holmes00/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "880195ae-b1dc-463e-98b4-538bd984d72a",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "holmes00:19:090e2d",
                        "ysrc": "holmes00:19:da307b",
                        "textsrc": "holmes00:19:dd196f"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "YoY 2018 to 2019"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "March 2019"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~holmes00",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 14:31:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "holmes00",
                "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-17T19:26:20.015210Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~holmes00/16.embed",
            "fid": "holmes00:16",
            "filename": "plot from API (8)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/holmes00/16/9_LJI9BBPU94QO2WDYNKWQ3076FBH7X0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/holmes00/16/2_VUIUNL1F65VF1Q1CQQHC7S2PB4X0CT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/holmes00/16/8_17LUGZX7YO18WGWN8SFXL83OJHIXGG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/holmes00/16/9_LJI9BBPU94QO2WDYNKWQ3076FBH7X0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/holmes00:16",
                "plots": "https://api.plotly.com/v2/plots/holmes00:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=holmes00"
            },
            "owner": "holmes00",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~holmes00/16/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:26:20.480Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~holmes00/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "19b5eb77-53f5-4cb6-8803-9047d250a30d",
                        "type": "bar",
                        "xsrc": "holmes00:17:f1c1e9",
                        "ysrc": "holmes00:17:0d2cf7"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~holmes00",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-14 14:31:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "holmes00",
                "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-17T19:25:56.455371Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~austinra/11.embed",
            "fid": "austinra:11",
            "filename": "CDF of Environment 2 years",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/austinra/11/9_PK2XDMR1HGWGPNLBSEE2JYVHFD55LE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/austinra/11/2_SRZ6HJZANHDBL2QFJFM1G5R15VEJIZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/austinra/11/8_B9UXK7V02P6QVAAX3XKWY39XZY1N60.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/austinra/11/9_PK2XDMR1HGWGPNLBSEE2JYVHFD55LE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/austinra:11",
                "plots": "https://api.plotly.com/v2/plots/austinra:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=austinra"
            },
            "owner": "austinra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~austinra/11/",
            "world_readable": true,
            "date_modified": "2019-09-13T18:58:37.484Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~austinra/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9605a9",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "<b>1</b> <b>LET(Si) (MeV-cm</b><sup><b>2</b></sup><b>/mg)</b>",
                        "type": "scatter",
                        "xsrc": "austinra:10:e98a79",
                        "ysrc": "austinra:10:bcbb53",
                        "marker": {
                            "line": {
                                "width": 6
                            },
                            "size": 40,
                            "symbol": "triangle-up-open"
                        }
                    },
                    {
                        "uid": "c08517",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "<b>2 LET(Si) (MeV-cm</b><sup><b>2</b></sup><b>/mg)</b>",
                        "type": "scatter",
                        "xsrc": "austinra:10:c07d3b",
                        "ysrc": "austinra:10:bcbb53",
                        "marker": {
                            "line": {
                                "width": 6
                            },
                            "size": 30,
                            "symbol": "square-open"
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "b7daa9",
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "<b>3.9 LET(Si) (MeV-cm</b><sup><b>2</b></sup><b>/mg)</b>",
                        "type": "scatter",
                        "xsrc": "austinra:10:00c50c",
                        "ysrc": "austinra:10:bcbb53",
                        "marker": {
                            "line": {
                                "width": 6
                            },
                            "size": 30,
                            "symbol": "diamond-open"
                        },
                        "stackgroup": null
                    },
                    {
                        "uid": "0a1428",
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "<b>10 LET(Si) (MeV-cm</b><sup><b>2</b></sup><b>/mg)</b>",
                        "type": "scatter",
                        "xsrc": "austinra:10:729aa7",
                        "ysrc": "austinra:10:bcbb53",
                        "marker": {
                            "line": {
                                "width": 6
                            },
                            "size": 30,
                            "symbol": "circle-open"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 100,
                        "color": "rgb(0, 0, 0)",
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.78,
                        "font": {
                            "size": 140
                        },
                        "text": "<br>"
                    },
                    "width": 1500,
                    "xaxis": {
                        "type": "log",
                        "dtick": 10,
                        "range": [
                            1,
                            6.5
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 55
                            },
                            "text": "<b>Fluence (cm</b><sup><b>-2</b></sup><b>)</b>"
                        },
                        "mirror": "ticks",
                        "nticks": 6,
                        "showline": true,
                        "tickfont": {
                            "size": 40
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgb(0, 0, 0)",
                        "gridwidth": 3,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 4,
                        "automargin": true,
                        "fixedrange": true,
                        "showspikes": false,
                        "tickformat": "",
                        "showexponent": "all",
                        "exponentformat": "power",
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 55
                            },
                            "text": "<b>CDF</b>"
                        },
                        "mirror": "ticks",
                        "nticks": 6,
                        "showline": true,
                        "tickfont": {
                            "size": 40
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgb(0, 0, 0)",
                        "gridwidth": 3,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 4,
                        "fixedrange": true,
                        "showspikes": false,
                        "showexponent": "all",
                        "exponentformat": "power"
                    },
                    "height": 1000,
                    "legend": {
                        "x": 0.00884407853496287,
                        "y": 0.9914056224899597,
                        "font": {
                            "size": 31
                        },
                        "xanchor": "left",
                        "borderwidth": 3,
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 30,
                        "t": 10,
                        "pad": 0
                    },
                    "autosize": false,
                    "colorway": [
                        "#1b9e77",
                        "#d95f02",
                        "#7570b3",
                        "#e7298a",
                        "#66a61e",
                        "#e6ab02",
                        "#a6761d",
                        "#666666"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest",
                    "colorscale": {
                        "sequentialminus": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.1111111111111111,
                                "#482878"
                            ],
                            [
                                0.2222222222222222,
                                "#3e4989"
                            ],
                            [
                                0.3333333333333333,
                                "#31688e"
                            ],
                            [
                                0.4444444444444444,
                                "#26828e"
                            ],
                            [
                                0.5555555555555556,
                                "#1f9e89"
                            ],
                            [
                                0.6666666666666666,
                                "#35b779"
                            ],
                            [
                                0.7777777777777778,
                                "#6ece58"
                            ],
                            [
                                0.8888888888888888,
                                "#b5de2b"
                            ],
                            [
                                1,
                                "#fde725"
                            ]
                        ]
                    },
                    "showlegend": true,
                    "annotations": []
                }
            },
            "height": 1000,
            "width": 1500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~austinra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-17 18:04:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "austinra",
                "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-17T19:25:34.148019Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~acelyj/75.embed",
            "fid": "acelyj:75",
            "filename": "pie2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/acelyj/75/9_DFY04YY6UPNNXKOYDOYHQ4TEKTWILB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/acelyj/75/2_V1ALYF4AR3ELVICWS14DPT6E9EO1DE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/75/8_Y8JHULXJ8C3OTPCYOJII324FZUIQM8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/75/9_DFY04YY6UPNNXKOYDOYHQ4TEKTWILB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/acelyj:75",
                "plots": "https://api.plotly.com/v2/plots/acelyj:75",
                "parent": "https://api.plotly.com/v2/folders/home?user=acelyj"
            },
            "owner": "acelyj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 20,
            "web_url": "https://chart-studio.plotly.com/~acelyj/75/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:26:18.965Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~acelyj/75/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "59aca876-9e1f-4f3d-a7f1-7cb652abdc9f",
                        "type": "pie",
                        "labelssrc": "acelyj:76:80488f",
                        "valuessrc": "acelyj:76:cd3cfc"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~acelyj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-06-18 15:20:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "acelyj",
                "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-17T19:24:58.561052Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~acelyj/73.embed",
            "fid": "acelyj:73",
            "filename": "pie1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/acelyj/73/9_ZWA8DU58QJXI8JIGCSCE5D9DXK578K.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/acelyj/73/2_808QNUO3YUK4GUYGTOK8LWNY4MCXV9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/73/8_BY720M2L0XH6FA2JM1ROC1312SIFR9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/73/9_ZWA8DU58QJXI8JIGCSCE5D9DXK578K.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/acelyj:73",
                "plots": "https://api.plotly.com/v2/plots/acelyj:73",
                "parent": "https://api.plotly.com/v2/folders/home?user=acelyj"
            },
            "owner": "acelyj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 10,
            "web_url": "https://chart-studio.plotly.com/~acelyj/73/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:24:59.086Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~acelyj/73/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f9836337-c876-401a-bbcd-8cb900de79f2",
                        "type": "pie",
                        "labelssrc": "acelyj:74:8b6af0",
                        "valuessrc": "acelyj:74:f386b9"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~acelyj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-06-18 15:20:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "acelyj",
                "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-17T19:24:10.099097Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eonr/8.embed",
            "fid": "eonr:8",
            "filename": "imageclusters_visualized",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/eonr/8/9_1KKG2YB5TOEERYU5B1MI4ZJZ2L8KF3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eonr/8/2_KBIJ7H4L3GYUM95GWNMCZYIFXMX2HK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eonr/8/8_FB7VC7IBUWNA65L6LHB43K9AJ00QJC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/eonr/8/9_1KKG2YB5TOEERYU5B1MI4ZJZ2L8KF3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eonr:8",
                "plots": "https://api.plotly.com/v2/plots/eonr:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=eonr"
            },
            "owner": "eonr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~eonr/8/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:02:18.859Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eonr/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "950ee2c7-88c7-495d-b040-3895327d7e62",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:792401",
                        "ysrc": "eonr:9:eb11cd",
                        "zsrc": "eonr:9:db4fc6",
                        "marker": {
                            "line": {
                                "color": "rgba(190, 79, 248, 0.6318804618906575)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "6832ee2c-8fc6-4b6f-a60b-be2f4ad6128f",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:d943e8",
                        "ysrc": "eonr:9:24f01e",
                        "zsrc": "eonr:9:66a330",
                        "marker": {
                            "line": {
                                "color": "rgba(191, 93, 170, 0.44000283913242466)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "d749481f-7dc0-4538-b924-009b23a2bb07",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:d92a44",
                        "ysrc": "eonr:9:8e9c35",
                        "zsrc": "eonr:9:dc17df",
                        "marker": {
                            "line": {
                                "color": "rgba(54, 209, 215, 0.7559159454947388)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "c31f15b9-d5ee-42a8-82a3-8c138c343945",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:19861c",
                        "ysrc": "eonr:9:c58ccc",
                        "zsrc": "eonr:9:a07d37",
                        "marker": {
                            "line": {
                                "color": "rgba(8, 114, 1, 0.3158635385768694)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "bbbee075-942d-4bb3-839e-b86ecb97041c",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:b13000",
                        "ysrc": "eonr:9:6472df",
                        "zsrc": "eonr:9:36b2b5",
                        "marker": {
                            "line": {
                                "color": "rgba(125, 108, 80, 0.8721541481249595)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    },
                    {
                        "uid": "12341025-9040-4dd2-8952-ab468192938f",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "eonr:9:ce355d",
                        "ysrc": "eonr:9:366150",
                        "zsrc": "eonr:9:568054",
                        "marker": {
                            "line": {
                                "color": "rgba(4, 160, 59, 0.5598212555262252)",
                                "width": 0.5
                            },
                            "size": 12,
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~eonr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.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 12:45:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eonr",
                "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-17T19:22:50.228650Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~acelyj/71.embed",
            "fid": "acelyj:71",
            "filename": "Cantidad de registros por paciente",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/acelyj/71/9_JJHPUNYGMP1UDQK2V0ZJMWAMUVD9WQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/acelyj/71/2_V5257EE1PW08B9QQD4DZDYW0JLKMW5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/71/8_MJPGW27URYWJY75GJWMNA4P1HV9FQ4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/acelyj/71/9_JJHPUNYGMP1UDQK2V0ZJMWAMUVD9WQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/acelyj:71",
                "plots": "https://api.plotly.com/v2/plots/acelyj:71",
                "parent": "https://api.plotly.com/v2/folders/home?user=acelyj"
            },
            "owner": "acelyj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~acelyj/71/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:23:46.149Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~acelyj/71/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "524e55c4-4bc6-4b5a-b9af-5d8cae0a7226",
                        "type": "pie",
                        "labelssrc": "acelyj:72:15ccf8",
                        "valuessrc": "acelyj:72:6dfaed"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~acelyj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-06-18 15:20:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "acelyj",
                "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-17T19:22:03.139822Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~clkickEDHEC/14.embed",
            "fid": "clkickEDHEC:14",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/clkickEDHEC/14/9_2MW2A2PYXL8695M68DET89BN28F5WO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/clkickEDHEC/14/2_6IUQF0MVTXDAR28XQ3GFAQUH65A7O7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/clkickEDHEC/14/8_CM144UIHDYW19WWQSJQTS3ILUOYR72.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/clkickEDHEC/14/9_2MW2A2PYXL8695M68DET89BN28F5WO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/clkickEDHEC:14",
                "plots": "https://api.plotly.com/v2/plots/clkickEDHEC:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=clkickEDHEC"
            },
            "owner": "clkickEDHEC",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Sankey Diagram between RFM and Custom segmentation",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~clkickEDHEC/14/sankey-diagram-between-rfm-and-custom-segmentation/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:22:03.553Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~clkickEDHEC/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "valuesrc": "clkickEDHEC:15:bf0a8a",
                            "sourcesrc": "clkickEDHEC:15:fa2de2",
                            "targetsrc": "clkickEDHEC:15:7abee2"
                        },
                        "node": {
                            "pad": 10,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "clkickEDHEC:15:844aa5",
                            "labelsrc": "clkickEDHEC:15:18fce0",
                            "thickness": 30
                        },
                        "type": "sankey",
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "orientation": "h",
                        "valueformat": ".0f"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": "Sankey Diagram between RFM and Custom segmentation",
                    "width": 950,
                    "height": 772
                }
            },
            "height": 772,
            "width": 950,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~clkickEDHEC",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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-06-17 16:58:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "clkickEDHEC",
                "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-17T19:20:02.265941Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nicolashu11/14.embed",
            "fid": "nicolashu11:14",
            "filename": "plot from API (6)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/14/9_6JRCVZDRNY5GLI9H4V592LROYHC2IL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/14/2_M6L1R863I2KTZW3X9G04ZH13UROXEL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/14/8_05PHRI0VJ1CIA6C7UXE4JU04RXYXV5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/14/9_6JRCVZDRNY5GLI9H4V592LROYHC2IL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nicolashu11:14",
                "plots": "https://api.plotly.com/v2/plots/nicolashu11:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=nicolashu11"
            },
            "owner": "nicolashu11",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Precision-Recall example: AP=0.1343",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nicolashu11/14/precision-recall-example-ap01343/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:20:03.261Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nicolashu11/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e538ee4d-fb5e-4a5a-843b-a8df36c6de99",
                        "line": {
                            "color": "navy",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Precision-Recall curve",
                        "type": "scatter",
                        "xsrc": "nicolashu11:15:c89b45",
                        "ysrc": "nicolashu11:15:526e17"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Precision-Recall example: AP=0.1343"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Recall"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Precision"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nicolashu11",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-12 19:21:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nicolashu11",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T19:19:37.769271Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nicolashu11/12.embed",
            "fid": "nicolashu11:12",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/12/9_8O55EL6IB4W6OHL5SDI5KVUV8E3TCM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/12/2_17X4EV8PLANN4W7I8Z46SRQZKTQV46.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/12/8_MX2CO9XT6LP4FX70DCDZYFDL5YDQ7R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nicolashu11/12/9_8O55EL6IB4W6OHL5SDI5KVUV8E3TCM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nicolashu11:12",
                "plots": "https://api.plotly.com/v2/plots/nicolashu11:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=nicolashu11"
            },
            "owner": "nicolashu11",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Precision-Recall example: AUC=0.13",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~nicolashu11/12/precision-recall-example-auc013/",
            "world_readable": true,
            "date_modified": "2019-06-17T19:19:38.491Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nicolashu11/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0574ad61-df9a-448e-b9e2-ba2116b3bcf1",
                        "line": {
                            "color": "navy",
                            "width": 2
                        },
                        "mode": "lines",
                        "name": "Precision-Recall curve",
                        "type": "scatter",
                        "xsrc": "nicolashu11:13:974417",
                        "ysrc": "nicolashu11:13:a11dd2"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Precision-Recall example: AUC=0.13"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Recall"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Precision"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nicolashu11",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-12 19:21:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nicolashu11",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}