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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzE4JTNBNDMlM0E1MS45NzI5MjUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsxOCUzQTUzJTNBMjMuNjk5MzE5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T18:53:23.699319Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lnhart/4.embed",
            "fid": "lnhart:4",
            "filename": "ratio_educated",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/lnhart:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/lnhart:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/lnhart:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/lnhart:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lnhart:4",
                "plots": "https://api.plotly.com/v2/plots/lnhart:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=lnhart"
            },
            "owner": "lnhart",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lnhart/4/",
            "world_readable": true,
            "date_modified": "2019-03-22T11:17:37.051Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lnhart/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "da88cc17-0564-4be6-bc03-b50f2e7419a2",
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "ff7f0e",
                                "1f77b4"
                            ]
                        },
                        "labelssrc": "lnhart:5:aa7fa6",
                        "valuessrc": "lnhart:5:d83a17"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lnhart",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.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-03-20 16:20:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lnhart",
                "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-03-20T18:51:28.374559Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~isisdovale/17.embed",
            "fid": "isisdovale:17",
            "filename": "Plot 17",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/isisdovale:17/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/isisdovale:17/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/isisdovale/17/8_C1PLFC2IZ0TWXH1I9NIX6OOJIHUBLJ.png",
                "list-thumb": "https://api.plotly.com/v2/files/isisdovale:17/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/isisdovale:17",
                "plots": "https://api.plotly.com/v2/plots/isisdovale:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=isisdovale"
            },
            "owner": "isisdovale",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~isisdovale/17/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:49:17.772Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~isisdovale/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "70726b",
                        "mode": "markers",
                        "name": "gráfico para m=100g",
                        "type": "scatter",
                        "xsrc": "isisdovale:16:45b770",
                        "ysrc": "isisdovale:16:56499c"
                    },
                    {
                        "uid": "87548e",
                        "name": "gráfico para T² versus R",
                        "transforms": [
                            {
                                "rms": 0.021037405474702443,
                                "type": "fit",
                                "xmid": 1.07,
                                "ymid": 3.0053720764820553,
                                "inputUid": "70726b",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.3547299442298638,
                                        "value": 4.549999999999655
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.06463487190881448,
                                        "value": 0.16700000000006396
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.9947374284160454,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.135052790346908,
                            0.224947209653092
                        ],
                        "title": {
                            "font": {
                                "size": 16,
                                "color": "rgb(0, 5, 13)"
                            },
                            "text": "R (m)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 14,
                            "color": "rgb(1, 10, 19)"
                        },
                        "autorange": true,
                        "gridcolor": "rgb(222, 222, 222)",
                        "gridwidth": 2,
                        "linecolor": "rgb(1, 9, 23)",
                        "linewidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7837777777777952,
                            1.1882222222222065
                        ],
                        "title": {
                            "font": {
                                "size": 16,
                                "color": "rgb(0, 5, 13)"
                            },
                            "text": "T² (s²)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 14,
                            "color": "rgb(1, 10, 19)"
                        },
                        "autorange": true,
                        "gridcolor": "rgb(222, 222, 222)",
                        "gridwidth": 2,
                        "linecolor": "rgb(1, 9, 23)",
                        "linewidth": 2
                    },
                    "legend": {
                        "x": 0.6818791946308724,
                        "y": 0.21209921355111913,
                        "font": {
                            "size": 15,
                            "color": "rgb(17, 18, 18)"
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~isisdovale",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.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-02-28 21:37:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "isisdovale",
                "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-03-20T18:51:15.423152Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Midzay/2.embed",
            "fid": "Midzay:2",
            "filename": "pandas-time-series",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Midzay:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Midzay:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Midzay:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Midzay:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Midzay:2",
                "plots": "https://api.plotly.com/v2/plots/Midzay:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Midzay"
            },
            "owner": "Midzay",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~Midzay/2/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:53:14.344Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Midzay/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c6099320-68b5-4a5f-be7c-94a5fc2c9695",
                        "type": "scatter",
                        "xsrc": "Midzay:3:4a8a4e",
                        "ysrc": "Midzay:3:12ee66"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Midzay",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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-02-01 13:39:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Midzay",
                "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-03-20T18:50:17.996486Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~andrew.j.stephens/2.embed",
            "fid": "andrew.j.stephens:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/andrew.j.stephens/2/9_YIAG2XSZQF2D909YCXNBK5WH8HYXKZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/andrew.j.stephens/2/2_1UC4ZE8G4HDNG2GSOWI8XI62MVSY3A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/andrew.j.stephens/2/8_IXBS8DMNO2NGNC7I5330TWBVGB7173.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/andrew.j.stephens/2/9_YIAG2XSZQF2D909YCXNBK5WH8HYXKZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/andrew.j.stephens:2",
                "plots": "https://api.plotly.com/v2/plots/andrew.j.stephens:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=andrew.j.stephens"
            },
            "owner": "andrew.j.stephens",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 15,
            "web_url": "https://chart-studio.plotly.com/~andrew.j.stephens/2/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:50:33.783Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~andrew.j.stephens/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "andrew.j.stephens:0:40e36a",
                        "ysrc": "andrew.j.stephens:0:b46099"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Displacement vs. Voltage"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.0006456611570247947,
                            0.20064566115702478
                        ],
                        "title": {
                            "text": "Displacement (M)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.6956053984575834,
                            6
                        ],
                        "title": {
                            "text": "Voltage (V)"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~andrew.j.stephens",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 18:49:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "andrew.j.stephens",
                "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-03-20T18:48:34.498645Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cefredxie/162.embed",
            "fid": "cefredxie:162",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cefredxie:162/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cefredxie/162/2_5TNU2R4H9OLVV66R0G8DLRHNHRELCO.png",
                "block-thumb": "https://api.plotly.com/v2/files/cefredxie:162/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/cefredxie:162/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cefredxie:162",
                "plots": "https://api.plotly.com/v2/plots/cefredxie:162",
                "parent": "https://api.plotly.com/v2/folders/home?user=cefredxie"
            },
            "owner": "cefredxie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cefredxie/162/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:48:34.941Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cefredxie/162/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "colorsrc": "cefredxie:163:133680",
                            "valuesrc": "cefredxie:163:8633b1",
                            "sourcesrc": "cefredxie:163:539c01",
                            "targetsrc": "cefredxie:163:ec97a5"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "white",
                                "width": 0.5
                            },
                            "colorsrc": "cefredxie:163:a1e9f1",
                            "labelsrc": "cefredxie:163:5f6ebe",
                            "thickness": 40
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": ""
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cefredxie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-11-24 21:59:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cefredxie",
                "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-03-20T18:46:27.879895Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Salihimc/103.embed",
            "fid": "Salihimc:103",
            "filename": "Plot 103",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Salihimc:103/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Salihimc:103/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Salihimc/103/8_W5M6CGUQKYMJN3YZWWVES64YA4CCCL.png",
                "list-thumb": "https://api.plotly.com/v2/files/Salihimc:103/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Salihimc:103",
                "plots": "https://api.plotly.com/v2/plots/Salihimc:103",
                "parent": "https://api.plotly.com/v2/folders/home?user=Salihimc"
            },
            "owner": "Salihimc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Salihimc/103/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:46:27.950Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Salihimc/103/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "3132ce1e-4b40-11e9-afdb-60f677db332c",
                        "name": "Pharmaton 30",
                        "type": "bar",
                        "xsrc": "Salihimc:102:d4e2e3",
                        "ysrc": "Salihimc:102:54db74",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1.5
                            },
                            "color": "#581E2D"
                        },
                        "textsrc": "Salihimc:102:553a80",
                        "textposition": "auto"
                    },
                    {
                        "uid": "3132ce1f-4b40-11e9-a783-60f677db332c",
                        "name": "Supradyn 30",
                        "type": "bar",
                        "xsrc": "Salihimc:102:d4e2e3",
                        "ysrc": "Salihimc:102:a000e4",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1.5
                            },
                            "color": "#FAE411"
                        },
                        "textsrc": "Salihimc:102:16b0d5",
                        "textposition": "auto"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Pharmaton 30 vs. Supradyn FCT 30 Yearly Sales (2015 - 2018)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2014.5,
                            2018.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1812970.5263157894
                        ],
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Salihimc",
                "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": "2018-10-28 14:39:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Salihimc",
                "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-03-20T18:45:19.751049Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jinmm1992/23.embed",
            "fid": "jinmm1992:23",
            "filename": "Plot 23",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jinmm1992:23/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jinmm1992:23/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jinmm1992:23/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jinmm1992:23/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jinmm1992:23",
                "plots": "https://api.plotly.com/v2/plots/jinmm1992:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=jinmm1992"
            },
            "owner": "jinmm1992",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jinmm1992/23/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:45:19.780Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jinmm1992/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "name": "bin49",
                        "type": "scatter",
                        "xsrc": "jinmm1992:22:d2ce0f",
                        "ysrc": "jinmm1992:22:6ec3ab"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "PKA spectrum at each bin"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.912023005428146,
                            6.598590769142877
                        ],
                        "title": {
                            "text": "log10(Emd)"
                        },
                        "tickfont": {
                            "size": 15,
                            "color": "rgb(8, 7, 7)"
                        },
                        "autorange": true,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.009448467492519302,
                            0.17952088235786676
                        ],
                        "title": {
                            "text": "Proportion"
                        },
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jinmm1992",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-02-24 10:57:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jinmm1992",
                "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-03-20T18:44:57.865713Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Manjusaka314/4.embed",
            "fid": "Manjusaka314:4",
            "filename": "parcoords-basic",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Manjusaka314:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Manjusaka314/4/2_4VUR3FN8YW399JWVNMASKZ9HIR00GC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Manjusaka314/4/8_271S797C19TXHWTHANG0EDQSXGLW6Q.png",
                "list-thumb": "https://api.plotly.com/v2/files/Manjusaka314:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Manjusaka314:4",
                "plots": "https://api.plotly.com/v2/plots/Manjusaka314:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=Manjusaka314"
            },
            "owner": "Manjusaka314",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Manjusaka314/4/",
            "world_readable": true,
            "date_modified": "2019-03-20T23:00:07.386Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Manjusaka314/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "97d3aaa4-e5d8-4b3c-913e-651c01506ca3",
                        "line": {
                            "color": "blue"
                        },
                        "type": "parcoords",
                        "dimensions": [
                            {
                                "label": "Log GDP per Capita",
                                "range": [
                                    6,
                                    12
                                ],
                                "values": [
                                    7.460772275924683,
                                    9.252543926239014,
                                    9.497148036956787,
                                    8.714585781097412,
                                    9.839202880859375,
                                    8.927275657653809,
                                    10.658696174621582,
                                    10.700250625610352,
                                    9.669095993041992,
                                    10.661490440368652,
                                    7.877717971801758,
                                    9.722760200500488,
                                    10.630653381347656,
                                    8.981327056884766,
                                    7.567653656005859,
                                    8.904687881469727,
                                    8.647325038909912,
                                    9.220829963684082,
                                    9.601708889007568,
                                    9.56654977798462,
                                    9.680171966552734,
                                    7.327422142028809,
                                    6.640874147415161,
                                    7.9127349853515625,
                                    8.004703998565674,
                                    10.636994361877441,
                                    6.775134325027466,
                                    7.525563478469849,
                                    9.946508884429932,
                                    9.283434867858887,
                                    9.364527702331543,
                                    7.255046367645264,
                                    8.572866439819336,
                                    6.558351516723633,
                                    9.52043342590332,
                                    9.93103837966919,
                                    9.676424980163574,
                                    10.362059593200684,
                                    10.268850326538086,
                                    10.710227489471436,
                                    7.867867469787598,
                                    9.341848850250244,
                                    9.213132381439209,
                                    9.19249439239502,
                                    8.924882411956787,
                                    10.176673889160156,
                                    7.298323631286621,
                                    10.593643188476562,
                                    10.529748916625977,
                                    9.715631484985352,
                                    8.934973239898682,
                                    10.663294315338135,
                                    8.165249824523926,
                                    10.117517471313477,
                                    8.835173606872559,
                                    7.4586005210876465,
                                    8.577046394348145,
                                    7.3832995891571045,
                                    8.32129430770874,
                                    10.82149600982666,
                                    10.048410415649414,
                                    10.66905689239502,
                                    8.461838722229004,
                                    9.1096510887146,
                                    9.744212627410889,
                                    9.592964172363281,
                                    10.737756729125977,
                                    10.327783107757568,
                                    10.47783613204956,
                                    8.054104328155518,
                                    8.999515533447266,
                                    10.505945682525635,
                                    9.09173059463501,
                                    9.981814861297607,
                                    7.855384349822998,
                                    9.024528980255127,
                                    11.22046184539795,
                                    7.970778465270996,
                                    8.260343074798584,
                                    9.980222702026367,
                                    9.554861545562744,
                                    7.8692169189453125,
                                    6.624804973602295,
                                    9.625382423400879,
                                    10.077751636505127,
                                    11.429598808288574,
                                    9.371094226837158,
                                    7.227784633636475,
                                    6.96286940574646,
                                    9.973951816558838,
                                    7.531102657318115,
                                    10.315225601196289,
                                    8.149764060974121,
                                    9.846933364868164,
                                    9.691499710083008,
                                    8.334431648254395,
                                    9.234434127807617,
                                    9.582719326019287,
                                    8.853084564208984,
                                    6.807776927947998,
                                    8.499302387237549,
                                    9.1713285446167,
                                    7.63380765914917,
                                    10.737844467163086,
                                    10.412915229797363,
                                    8.375850677490234,
                                    6.732158184051514,
                                    8.564830303192139,
                                    null,
                                    11.067082405090332,
                                    10.648307800292969,
                                    8.37528657913208,
                                    8.370901107788086,
                                    9.772858619689941,
                                    8.89732837677002,
                                    9.27740478515625,
                                    8.673565864562988,
                                    10.052687644958496,
                                    10.19871997833252,
                                    11.737195014953613,
                                    9.814229965209961,
                                    10.087897300720215,
                                    7.318346977233887,
                                    10.800156593322754,
                                    7.689639568328857,
                                    9.475785732269287,
                                    7.155114412307739,
                                    11.225419044494629,
                                    10.187941551208496,
                                    10.259928226470947,
                                    null,
                                    9.410847187042236,
                                    10.35779094696045,
                                    7.500065803527832,
                                    10.39144515991211,
                                    9.128405570983887,
                                    8.1974458694458,
                                    9.62458324432373,
                                    8.898911476135254,
                                    10.683160781860352,
                                    10.95462417602539,
                                    8.569223403930664,
                                    10.453431129455566,
                                    7.726372480392456,
                                    7.699335813522339,
                                    9.545689105987549,
                                    7.181850433349609,
                                    10.34215259552002,
                                    9.266630172729492,
                                    9.901938915252686,
                                    9.530487060546875,
                                    7.381184101104736,
                                    8.992517948150635,
                                    11.056032180786133,
                                    10.536094665527344,
                                    10.835716247558594,
                                    9.8085618019104,
                                    8.469233512878418,
                                    9.725855827331543,
                                    8.47889232635498,
                                    8.244133949279785,
                                    8.163204193115234,
                                    7.476644039154053
                                ]
                            },
                            {
                                "label": "Social Support",
                                "range": [
                                    0,
                                    1
                                ],
                                "values": [
                                    0.5233359932899475,
                                    0.7462930381298065,
                                    0.8102344870567322,
                                    0.7378436028957367,
                                    0.9082866609096527,
                                    0.707163393497467,
                                    0.9499578475952148,
                                    0.9313515424728394,
                                    0.7657817006111145,
                                    0.8804478049278259,
                                    0.5794151723384857,
                                    0.9088328182697296,
                                    0.9271170496940613,
                                    0.8145995736122131,
                                    0.47749438881874084,
                                    0.8475744128227234,
                                    0.8049618303775787,
                                    0.7697907388210297,
                                    0.8461569547653198,
                                    0.9051111936569214,
                                    0.8602722883224487,
                                    0.7452166080474854,
                                    0.3739662766456604,
                                    0.7063413858413696,
                                    0.7230440378189087,
                                    0.9388872385025024,
                                    0.3873909115791321,
                                    0.6935055553913116,
                                    0.8384658992290497,
                                    0.7825335264205933,
                                    0.8972423374652863,
                                    0.7202804088592529,
                                    0.6396268308162689,
                                    0.7683907747268677,
                                    0.9082090556621552,
                                    0.7827782928943634,
                                    0.9695951342582703,
                                    0.7990872859954834,
                                    0.911894679069519,
                                    0.95539790391922,
                                    0.6904395818710327,
                                    0.8788036704063416,
                                    0.8349113464355469,
                                    0.7375044524669647,
                                    0.7922076880931854,
                                    0.90871262550354,
                                    0.6496232151985168,
                                    0.9495702385902405,
                                    0.9263900816440582,
                                    0.7558619976043701,
                                    0.5459410548210144,
                                    0.9289135932922363,
                                    0.6807005405426025,
                                    0.8121411204338074,
                                    0.8300459980964661,
                                    0.5984655618667603,
                                    0.8487651944160461,
                                    0.6153637170791626,
                                    0.7974496185779572,
                                    0.833558201789856,
                                    0.8956937193870544,
                                    0.9781974256038666,
                                    0.6084503829479218,
                                    0.7946750223636627,
                                    0.638346254825592,
                                    0.7292018234729767,
                                    0.9617859125137329,
                                    0.8911786675453186,
                                    0.9106394648551941,
                                    0.6855001747608185,
                                    0.8742315173149109,
                                    0.9036101698875427,
                                    0.835411548614502,
                                    0.8923572301864624,
                                    0.8150662481784821,
                                    0.7920872569084167,
                                    0.8819119930267334,
                                    0.8563831448554993,
                                    0.7484782338142395,
                                    0.8554182648658752,
                                    0.7390598356723785,
                                    0.8110723197460175,
                                    0.6426146030426025,
                                    0.8614593148231506,
                                    0.9225033819675446,
                                    0.9336045980453491,
                                    0.7956515848636627,
                                    0.6730883121490479,
                                    0.5592921376228333,
                                    0.8349979519844055,
                                    0.7955050468444824,
                                    0.9226397275924683,
                                    0.77922523021698,
                                    0.818152666091919,
                                    0.8461424112319946,
                                    0.8340446949005127,
                                    0.9221833646297455,
                                    0.8168078660964966,
                                    0.6483012139797211,
                                    0.7516319751739502,
                                    0.7654964625835419,
                                    0.8276235461235046,
                                    0.7862955331802368,
                                    0.9383960962295532,
                                    0.9536498785018921,
                                    0.8549443483352661,
                                    0.6979605853557587,
                                    0.757409542798996,
                                    0.8076902627944946,
                                    0.9476574063301086,
                                    null,
                                    0.5567017197608948,
                                    0.7705939710140228,
                                    0.901209831237793,
                                    0.9003538489341736,
                                    0.798557311296463,
                                    0.8088914155960083,
                                    0.9167981743812561,
                                    0.8666973412036896,
                                    0.8573505878448486,
                                    0.77755206823349,
                                    0.8987232148647308,
                                    0.6651309132575989,
                                    0.8535936176776886,
                                    0.7582753896713257,
                                    0.8178407251834869,
                                    0.6715972125530243,
                                    0.8664366602897644,
                                    0.9242426753044128,
                                    0.9264708161354065,
                                    0.5992810726165771,
                                    0.8763746023178101,
                                    0.8018120527267456,
                                    0.5509705543518066,
                                    0.9461540579795837,
                                    0.824357271194458,
                                    0.8177856206893921,
                                    0.7972620725631714,
                                    0.8371497392654419,
                                    0.9218066930770874,
                                    0.9468638896942139,
                                    0.5883951783180237,
                                    0.8662663102149963,
                                    0.7276230156421661,
                                    0.7896718084812164,
                                    0.8937859535217285,
                                    0.44433900713920593,
                                    0.8831804990768433,
                                    0.6910413503646851,
                                    0.7951783239841461,
                                    0.926438957452774,
                                    0.8256806433200836,
                                    0.86838698387146,
                                    0.8637157678604126,
                                    0.9512746334075928,
                                    0.9210028648376465,
                                    0.8967103362083435,
                                    0.93314129114151,
                                    0.9306198954582214,
                                    0.8150264620780945,
                                    0.7102588415145874,
                                    0.7613115310668945,
                                    0.8137182295322418
                                ]
                            },
                            {
                                "label": "Healthy life expectancy at birth",
                                "range": [
                                    40,
                                    100
                                ],
                                "values": [
                                    50.876121520996094,
                                    68.16012954711914,
                                    64.93476104736328,
                                    51.78204536437988,
                                    66.76564025878906,
                                    64.15349578857422,
                                    72.16123962402344,
                                    71.0523796081543,
                                    62.38545227050781,
                                    65.64447784423828,
                                    60.763484954833984,
                                    63.34200477600098,
                                    71.5195083618164,
                                    58.628217697143555,
                                    50.89535140991211,
                                    60.23030090332031,
                                    58.300920486450195,
                                    67.29813766479492,
                                    53.811201095581055,
                                    64.22095108032227,
                                    66.41548919677734,
                                    50.25502395629883,
                                    47.004188537597656,
                                    56.859107971191406,
                                    48.011404037475586,
                                    71.51599884033203,
                                    40.687255859375,
                                    44.011648178100586,
                                    68.71475601196289,
                                    68.4904556274414,
                                    63.304189682006836,
                                    53.030723571777344,
                                    53.55314254760742,
                                    49.525808334350586,
                                    68.97478103637695,
                                    67.03889846801758,
                                    66.32656860351562,
                                    72.06271362304688,
                                    69.11111450195312,
                                    69.93490600585938,
                                    51.23942947387695,
                                    62.604270935058594,
                                    66.29148483276367,
                                    60.68344497680664,
                                    63.08185577392578,
                                    66.41425323486328,
                                    55.65106010437012,
                                    70.82575988769531,
                                    72.03640747070312,
                                    55.8883056640625,
                                    63.74660873413086,
                                    70.52965927124023,
                                    53.45351028442383,
                                    70.76483154296875,
                                    61.94717788696289,
                                    49.6968994140625,
                                    57.404136657714844,
                                    52.1771183013916,
                                    62.84401321411133,
                                    75.22769165039062,
                                    66.05580139160156,
                                    72.7559814453125,
                                    58.05006790161133,
                                    59.75359344482422,
                                    64.85113525390625,
                                    60.19227981567383,
                                    70.86531066894531,
                                    71.71945190429688,
                                    72.30818557739258,
                                    45.83740043640137,
                                    65.28887939453125,
                                    74.11944580078125,
                                    63.714942932128906,
                                    61.142648696899414,
                                    55.963008880615234,
                                    61.22325897216797,
                                    64.89340209960938,
                                    61.70940399169922,
                                    55.31107711791992,
                                    64.80504608154297,
                                    68.02105331420898,
                                    45.32551383972168,
                                    51.581687927246094,
                                    61.342628479003906,
                                    64.74827194213867,
                                    71.82438659667969,
                                    65.20563888549805,
                                    55.58588409423828,
                                    51.15303993225098,
                                    64.33440017700195,
                                    47.24415969848633,
                                    71.65420532226562,
                                    52.53810119628906,
                                    65.31021499633789,
                                    67.23969268798828,
                                    62.331953048706055,
                                    61.28194046020508,
                                    66.16030883789062,
                                    64.41097259521484,
                                    46.08440017700195,
                                    57.25600624084473,
                                    53.459983825683594,
                                    59.45713233947754,
                                    71.1795883178711,
                                    71.2590103149414,
                                    64.92792510986328,
                                    49.028194427490234,
                                    43.66923141479492,
                                    null,
                                    71.08658599853516,
                                    66.18391418457031,
                                    56.4867057800293,
                                    62.42625045776367,
                                    67.12411117553711,
                                    62.82048034667969,
                                    64.35011672973633,
                                    59.60117530822754,
                                    66.77928161621094,
                                    70.64617538452148,
                                    66.97088623046875,
                                    66.36763763427734,
                                    61.77624702453613,
                                    54.86077880859375,
                                    63.24759864807129,
                                    55.858903884887695,
                                    65.00951385498047,
                                    42.14407920837402,
                                    74.84983825683594,
                                    67.3633804321289,
                                    70.19527435302734,
                                    47.43921661376953,
                                    50.006574630737305,
                                    73.08132934570312,
                                    49.35764503479004,
                                    73.40169525146484,
                                    64.48628234863281,
                                    52.99749755859375,
                                    60.69157028198242,
                                    44.9383659362793,
                                    71.78369903564453,
                                    73.17375946044922,
                                    62.07098388671875,
                                    70.17499923706055,
                                    61.98456382751465,
                                    52.92139434814453,
                                    65.37704467773438,
                                    51.35891342163086,
                                    60.98023223876953,
                                    65.26557159423828,
                                    64.56913757324219,
                                    59.9132137298584,
                                    49.858285903930664,
                                    62.89059829711914,
                                    67.9671516418457,
                                    70.93693542480469,
                                    69.72661590576172,
                                    67.66024780273438,
                                    62.381805419921875,
                                    64.08443450927734,
                                    65.33313751220703,
                                    54.1309757232666,
                                    50.674156188964844,
                                    46.9322452545166
                                ]
                            },
                            {
                                "label": "Freedom to make Life Choices",
                                "range": [
                                    0,
                                    1
                                ],
                                "values": [
                                    0.5267506241798401,
                                    0.6166712045669556,
                                    0.558112382888794,
                                    0.43279172480106354,
                                    0.7411540746688843,
                                    0.5052844882011414,
                                    0.9229322671890259,
                                    0.8981424570083618,
                                    0.6365001201629639,
                                    0.8659366369247437,
                                    0.7015975713729858,
                                    0.6571198403835297,
                                    0.8694749474525452,
                                    0.7894375026226044,
                                    0.7689710855484009,
                                    0.8301015496253967,
                                    0.8138026893138885,
                                    0.4011394828557968,
                                    0.8205413222312927,
                                    0.7918751239776611,
                                    0.6368178129196167,
                                    0.6218487024307251,
                                    0.4293704479932785,
                                    0.9401311874389648,
                                    0.7665046155452728,
                                    0.9303413033485413,
                                    0.6628710031509399,
                                    0.5149173438549042,
                                    0.7352491319179535,
                                    0.808255136013031,
                                    0.8077846169471741,
                                    0.518260270357132,
                                    0.7586589753627777,
                                    0.5655249953269958,
                                    0.9094658195972443,
                                    0.5955361723899841,
                                    0.28145793080329895,
                                    0.7504158318042755,
                                    0.7996851801872253,
                                    0.9426015317440033,
                                    0.755084902048111,
                                    0.8571333885192871,
                                    0.7618394792079926,
                                    0.5925047993659973,
                                    0.6992799937725067,
                                    0.7485763430595398,
                                    0.7307044565677643,
                                    0.9336114525794983,
                                    0.8336086273193359,
                                    0.6713007092475891,
                                    0.6232309639453888,
                                    0.8585694134235382,
                                    0.8159000277519226,
                                    0.4816168546676636,
                                    0.8031810224056244,
                                    0.6927366256713867,
                                    0.6940056681632996,
                                    0.45722268521785736,
                                    0.6914317309856415,
                                    0.8904176950454712,
                                    0.5577213764190674,
                                    0.9309954941272736,
                                    0.7754811644554138,
                                    0.7748688459396362,
                                    0.7475267946720123,
                                    0.43146762251853943,
                                    0.8941087126731873,
                                    0.7146219313144684,
                                    0.6236364245414734,
                                    0.7643257677555084,
                                    0.7956135272979736,
                                    0.8179064989089966,
                                    0.7629134953022003,
                                    0.7838287055492401,
                                    0.708495706319809,
                                    0.5647557079792023,
                                    0.8187810182571411,
                                    0.72817063331604,
                                    0.8862138986587524,
                                    0.6408071517944336,
                                    0.6571570038795471,
                                    0.6738747954368591,
                                    0.7333899140357971,
                                    0.7766204178333282,
                                    0.566525936126709,
                                    0.9165209531784058,
                                    0.6270041763782501,
                                    0.5367793142795563,
                                    0.793578714132309,
                                    0.8225750625133514,
                                    0.664711058139801,
                                    0.9039366245269775,
                                    0.5669202208518982,
                                    0.8362120389938354,
                                    0.7648669183254242,
                                    0.6004516780376434,
                                    0.6943286955356598,
                                    0.5490925312042236,
                                    0.7129334211349487,
                                    0.6636055111885071,
                                    0.8079710602760315,
                                    0.8104018568992615,
                                    0.6635371148586273,
                                    0.9073100090026855,
                                    0.9318824410438538,
                                    0.8005162477493286,
                                    0.7312796115875244,
                                    0.6421065032482147,
                                    0.7853528261184692,
                                    0.9530168175697327,
                                    0.9162930250167847,
                                    0.4217759072780609,
                                    0.5317360758781433,
                                    0.8201754093170166,
                                    0.7262623906135559,
                                    0.7126968204975128,
                                    0.8977681398391724,
                                    0.8113017082214355,
                                    0.8192548155784607,
                                    0.9046874642372131,
                                    0.6857477426528931,
                                    0.643083244562149,
                                    0.8940252661705017,
                                    0.661042332649231,
                                    0.6896451115608215,
                                    0.49712225794792175,
                                    0.7135049402713776,
                                    0.8348876237869263,
                                    0.6347917318344116,
                                    0.899779200553894,
                                    0.9173228144645691,
                                    0.7441282272338867,
                                    0.6207958459854126,
                                    0.4838210493326187,
                                    0.7637650966644287,
                                    0.8226372599601746,
                                    0.5825387835502625,
                                    0.8854884505271912,
                                    0.6071572303771973,
                                    0.9348270893096924,
                                    0.9278024435043335,
                                    0.5304327607154846,
                                    0.6955474615097046,
                                    0.780337929725647,
                                    0.6850072145462036,
                                    0.8691914975643158,
                                    0.6631932258605957,
                                    0.8400887250900269,
                                    0.603123664855957,
                                    0.5278218686580658,
                                    0.7344518005847931,
                                    0.7522790729999542,
                                    0.5179046988487244,
                                    0.9150362014770508,
                                    0.8398191928863525,
                                    0.8559779226779938,
                                    0.861015796661377,
                                    0.9495399594306946,
                                    0.6784005165100098,
                                    0.8857921361923218,
                                    0.6412196457386017,
                                    0.7586536407470703,
                                    0.6044311225414276
                                ]
                            },
                            {
                                "label": "Generosity",
                                "range": [
                                    0,
                                    1
                                ],
                                "values": [
                                    0.12810462340712547,
                                    -0.10993016511201859,
                                    -0.20312465727329254,
                                    -0.10917649790644646,
                                    -0.15217331796884537,
                                    -0.201863631606102,
                                    0.3018534481525421,
                                    0.12275046482682228,
                                    -0.20708893984556198,
                                    0.047388043254613876,
                                    -0.031244815327227116,
                                    -0.18433894962072372,
                                    0.0018807562300935388,
                                    0.009471230208873749,
                                    -0.040269434452056885,
                                    0.2852131724357605,
                                    -0.035946277901530266,
                                    -0.006032725679688156,
                                    -0.18917275220155716,
                                    -0.08824029564857483,
                                    -0.17625898122787476,
                                    -0.023187734186649323,
                                    -0.029423867352306843,
                                    0.18668105453252792,
                                    -0.030739151872694492,
                                    0.23886004090309143,
                                    0.033549387473613024,
                                    0.004497143323533237,
                                    0.09689702093601227,
                                    -0.19463473558425903,
                                    -0.0699017383158207,
                                    -0.024157521314918995,
                                    -0.14234676212072372,
                                    0.005817106459289789,
                                    0.031738183461129665,
                                    -0.15658218786120415,
                                    null,
                                    0.05457607842981815,
                                    -0.1608385592699051,
                                    0.21122536063194275,
                                    -0.02926415973342955,
                                    -0.05204659886658192,
                                    -0.1062292829155922,
                                    -0.13559049367904663,
                                    -0.1470024660229683,
                                    -0.2010468989610672,
                                    0.030261480249464512,
                                    0.002224705647677183,
                                    -0.11419235914945602,
                                    -0.2192120999097824,
                                    -0.23447974026203156,
                                    0.10079503059387207,
                                    0.06507697515189648,
                                    -0.2953389137983322,
                                    0.07637901231646538,
                                    0.01705853082239628,
                                    0.11527568846940994,
                                    0.29261183738708496,
                                    0.09206090122461319,
                                    0.2058516889810562,
                                    -0.15352562814950943,
                                    0.26775434613227844,
                                    -0.03484862297773361,
                                    0.3780438303947449,
                                    0.15793312340974808,
                                    -0.09030041098594666,
                                    0.2918332815170288,
                                    0.14210087060928345,
                                    -0.043380703777074814,
                                    -0.05025380849838257,
                                    -0.02067415416240692,
                                    -0.15685496479272842,
                                    -0.11269569396972656,
                                    -0.23242222517728806,
                                    0.09973929449915886,
                                    0.11201359704136848,
                                    -0.06118114851415157,
                                    -0.05908076465129852,
                                    0.43592171370983124,
                                    -0.1638314425945282,
                                    0.03070092387497425,
                                    -0.09761231392621994,
                                    0.02285960502922535,
                                    -0.07199981808662415,
                                    -0.2740333527326584,
                                    0.04448125138878822,
                                    -0.046609461307525635,
                                    -0.03308838605880737,
                                    0.08522063121199608,
                                    0.04625037405639887,
                                    -0.062366146594285965,
                                    0.3357295095920563,
                                    -0.002736215014010668,
                                    0.1451689675450325,
                                    -0.10526936501264572,
                                    -0.036626966670155525,
                                    0.09916745871305466,
                                    -0.14252131432294846,
                                    -0.22791938483715057,
                                    0.033534569665789604,
                                    0.6628175973892212,
                                    -0.1914064586162567,
                                    0.14651113748550415,
                                    0.30594220757484436,
                                    0.27737829089164734,
                                    0.040122926235198975,
                                    -0.021430458407849073,
                                    0.05547751300036907,
                                    null,
                                    0.12092236429452896,
                                    -0.015440747141838074,
                                    0.0799444243311882,
                                    -0.1311134174466133,
                                    0.006683246698230505,
                                    0.07025641947984695,
                                    -0.09096542373299599,
                                    0.007225135923363268,
                                    -0.0764976516366005,
                                    -0.1754334568977356,
                                    0.08915760181844234,
                                    -0.14061816781759262,
                                    -0.2982914596796036,
                                    0.0007752187084406614,
                                    -0.10592211782932281,
                                    -0.033882985822856426,
                                    -0.1192980632185936,
                                    0.07557971403002739,
                                    0.1198861375451088,
                                    -0.07207684218883514,
                                    -0.01351883456663927,
                                    null,
                                    -0.13895296305418015,
                                    -0.0590413436293602,
                                    0.025257980450987816,
                                    -0.10336199402809143,
                                    0.1559547781944275,
                                    -0.0492662712931633,
                                    -0.08000487089157104,
                                    -0.07451948523521423,
                                    0.14614111185073853,
                                    0.11229774355888367,
                                    0.12135498225688934,
                                    -0.0260170865803957,
                                    0.006068710470572114,
                                    0.11977217718958855,
                                    0.38604597747325897,
                                    -0.05608723685145378,
                                    0.06139526516199112,
                                    -0.21356560289859772,
                                    -0.1971072256565094,
                                    -0.013034507166594267,
                                    0.03373115602880716,
                                    -0.2020183950662613,
                                    0.045082494616508484,
                                    0.32612207531929016,
                                    0.19920101761817932,
                                    -0.09916321560740471,
                                    0.013268734328448772,
                                    -0.20622344315052032,
                                    0.00027839504764415324,
                                    -0.1571623980998993,
                                    -0.013914997689425945,
                                    -0.06339073181152344
                                ]
                            },
                            {
                                "label": "Perceptions of Corruption",
                                "range": [
                                    0,
                                    1
                                ],
                                "values": [
                                    0.8366197645664215,
                                    0.8754170835018158,
                                    0.6640489995479584,
                                    0.8701880574226379,
                                    0.8513619899749756,
                                    0.8862583637237549,
                                    0.39854511618614197,
                                    0.5622054636478424,
                                    0.7344872355461121,
                                    0.5247032642364502,
                                    0.7692124545574188,
                                    0.6737408638000488,
                                    0.5975544452667236,
                                    0.7755449116230011,
                                    0.837715744972229,
                                    0.6503384709358215,
                                    0.8181279599666595,
                                    0.9553669691085815,
                                    0.7775371372699738,
                                    0.7164092063903809,
                                    0.941279947757721,
                                    0.7647214531898499,
                                    0.7629111409187317,
                                    0.8414859771728516,
                                    0.8770846128463745,
                                    0.41265958547592163,
                                    0.8453769683837891,
                                    0.8814531862735748,
                                    0.7469552159309387,
                                    null,
                                    0.853514701128006,
                                    0.736345112323761,
                                    0.7996537089347839,
                                    0.840252697467804,
                                    0.7911694347858429,
                                    0.9290667772293091,
                                    null,
                                    0.8592584431171417,
                                    0.9083158075809479,
                                    0.20588771998882294,
                                    0.5865039527416229,
                                    0.7576558291912079,
                                    0.753836452960968,
                                    0.8263351917266846,
                                    0.7796041965484619,
                                    0.6867839097976685,
                                    0.702880859375,
                                    0.25756973028182983,
                                    0.6473851203918457,
                                    0.8165635466575623,
                                    0.5002081245183945,
                                    0.6782044172286987,
                                    0.8775137960910797,
                                    0.9302138090133667,
                                    0.8071025907993317,
                                    0.7621520161628723,
                                    0.8355690836906433,
                                    0.7472851574420929,
                                    0.8458108901977539,
                                    0.35598480701446533,
                                    0.9115331768989563,
                                    0.715949147939682,
                                    0.8435840308666229,
                                    0.9569582939147949,
                                    0.691994696855545,
                                    0.78460893034935,
                                    0.4869946539402008,
                                    0.8650741279125214,
                                    0.9205173552036285,
                                    0.7508515119552612,
                                    0.9091161489486694,
                                    0.6982845366001129,
                                    0.6895650625228882,
                                    0.8213465213775635,
                                    0.8606301844120026,
                                    0.9251918196678162,
                                    0.5232676565647125,
                                    0.898163914680481,
                                    0.5916168093681335,
                                    0.8949793577194214,
                                    0.9157775342464447,
                                    0.7552745044231415,
                                    0.8668063879013062,
                                    0.7318108379840851,
                                    0.960843026638031,
                                    0.3753904700279236,
                                    0.8605704009532928,
                                    0.8572719395160675,
                                    0.8238164484500885,
                                    0.8425978124141693,
                                    0.8000467419624329,
                                    0.6800699234008789,
                                    0.7273644804954529,
                                    0.8630834817886353,
                                    0.7273264825344086,
                                    0.9294348955154419,
                                    0.9226906597614288,
                                    0.765424519777298,
                                    0.8418569564819336,
                                    0.7383790612220764,
                                    0.626063346862793,
                                    0.8313028812408447,
                                    0.8871526420116425,
                                    0.4333042502403259,
                                    0.27827078104019165,
                                    0.7458537220954895,
                                    0.7292635142803192,
                                    0.90500807762146,
                                    0.6922212839126587,
                                    0.3971501290798187,
                                    null,
                                    0.8179099559783936,
                                    0.7884999811649323,
                                    0.8436854779720306,
                                    0.8409891724586487,
                                    0.8804639279842377,
                                    0.7895908355712891,
                                    0.9012296497821808,
                                    0.9410604238510132,
                                    0.18379813432693481,
                                    0.9583247303962708,
                                    0.9336343109607697,
                                    0.15860138833522797,
                                    0.5051490664482117,
                                    0.8316482305526733,
                                    0.9099272191524506,
                                    0.8515224754810333,
                                    0.08234986290335655,
                                    0.9145399332046509,
                                    0.8677724003791809,
                                    0.440801739692688,
                                    0.8382167816162109,
                                    0.8295820653438568,
                                    0.7514050900936127,
                                    0.8201117515563965,
                                    0.8377847671508789,
                                    0.7336792945861816,
                                    0.7512828707695007,
                                    0.9172500967979431,
                                    0.25354310870170593,
                                    0.316183477640152,
                                    0.685236930847168,
                                    0.8159428536891937,
                                    0.717717319726944,
                                    0.8626348674297333,
                                    0.9151722490787506,
                                    0.8150441646575928,
                                    0.9174284934997559,
                                    0.8148249983787537,
                                    0.7747020423412323,
                                    null,
                                    0.838984340429306,
                                    0.934649646282196,
                                    0.3388764560222626,
                                    0.4712158590555191,
                                    0.6932541728019714,
                                    0.5911996066570282,
                                    0.5187202095985413,
                                    0.776102602481842,
                                    0.7802416980266571,
                                    0.8324272036552429,
                                    0.8088409900665283,
                                    0.8303684890270233
                                ]
                            }
                        ]
                    }
                ],
                "layout": {
                    "plot_bgcolor": "#E5E5E5",
                    "paper_bgcolor": "#E5E5E5"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Manjusaka314",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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-03-13 18:21:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Manjusaka314",
                "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-03-20T18:44:07.581276Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~luucasac/0.embed",
            "fid": "luucasac:0",
            "filename": "stocks",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/luucasac:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/luucasac:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/luucasac:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/luucasac:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/luucasac:0",
                "plots": "https://api.plotly.com/v2/plots/luucasac:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=luucasac"
            },
            "owner": "luucasac",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Apple stocks, Microsoft stocks, S&P 500",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~luucasac/0/apple-stocks-microsoft-stocks-sp-500/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:09:17.953Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~luucasac/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5c374fdc-8b39-4ad6-b07a-4860b9114c8d",
                        "mode": "lines",
                        "name": "Apple stocks",
                        "type": "scatter",
                        "xsrc": "luucasac:1:76a363",
                        "ysrc": "luucasac:1:50dbc9"
                    },
                    {
                        "uid": "007de48c-69bd-4199-87d7-eee5bf705427",
                        "mode": "lines",
                        "name": "Microsoft stocks",
                        "type": "scatter",
                        "xsrc": "luucasac:1:76a363",
                        "ysrc": "luucasac:1:3a6c29"
                    },
                    {
                        "uid": "12a4c0ee-72cf-4ae4-ada9-63418fe376ef",
                        "mode": "lines",
                        "name": "S&P 500",
                        "type": "scatter",
                        "xsrc": "luucasac:1:76a363",
                        "ysrc": "luucasac:1:97bcbb"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~luucasac",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 18:39:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "luucasac",
                "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-03-20T18:43:51.972925Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xanderdj/2.embed",
            "fid": "xanderdj:2",
            "filename": "Most Common Negative Reasons",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/xanderdj:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/xanderdj:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xanderdj/2/8_2CB23WBT9YSKDGX1PLKWGXI4PAVCG3.png",
                "list-thumb": "https://api.plotly.com/v2/files/xanderdj:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xanderdj:2",
                "plots": "https://api.plotly.com/v2/plots/xanderdj:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=xanderdj"
            },
            "owner": "xanderdj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "<b>MOST COMMON NEGATIVE REASONS</b>",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~xanderdj/2/most-common-negative-reasons/",
            "world_readable": true,
            "date_modified": "2019-03-28T18:20:59.363Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xanderdj/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4d81372c-86a5-4df3-bb73-2ce983309979",
                        "type": "bar",
                        "xsrc": "xanderdj:3:ec1db4",
                        "ysrc": "xanderdj:3:a4a9bf"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "<b>MOST COMMON NEGATIVE REASONS</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16,
                                "color": "rgb(107, 107, 107)"
                            },
                            "text": "<b>Negative Reasons</b>"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 16,
                                "color": "rgb(107, 107, 107)"
                            },
                            "text": "<b>Count</b>"
                        },
                        "tickfont": {
                            "size": 14,
                            "color": "rgb(107, 107, 107)"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xanderdj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-03-20 14:06:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xanderdj",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}