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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzE4JTNBMzUlM0ExNy40NjQwOTclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsxOCUzQTQyJTNBNDQuOTgyMzY2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T18:42:44.982366Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~soadx909/19.embed",
            "fid": "soadx909:19",
            "filename": "Monthly AD OR",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/soadx909/19/9_T0JRJP2FB9YQZ87JZ710JETFOGSL14.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/soadx909:19/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/soadx909/19/8_ZQFLWKNG722ZKT1AJ4JG8ZYHXC02A6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/soadx909/19/9_T0JRJP2FB9YQZ87JZ710JETFOGSL14.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/soadx909:19",
                "plots": "https://api.plotly.com/v2/plots/soadx909:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=soadx909"
            },
            "owner": "soadx909",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~soadx909/19/",
            "world_readable": true,
            "date_modified": "2019-05-14T22:52:15.825Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~soadx909/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a3aad0",
                        "mode": "markers",
                        "name": "<b>AD Success</b>",
                        "type": "bar",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:18:34881b",
                        "marker": {
                            "color": "rgb(36, 49, 207)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "3349e2",
                        "name": "<b>Full Install DD-1</b>",
                        "type": "bar",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:18:14c0b9",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(89, 189, 207)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "d377d6",
                        "name": "<b>NOAC-Premises</b>",
                        "type": "bar",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:18:809759",
                        "marker": {
                            "color": "rgb(204, 0, 40)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "a977b5",
                        "name": "<b>NOAC-Other Reasons</b>",
                        "type": "bar",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:18:899731",
                        "marker": {
                            "color": "rgb(173, 170, 179)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "fc44da",
                        "name": "<b>Total</b>",
                        "type": "bar",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:18:4c7273",
                        "marker": {
                            "line": {
                                "color": "rgb(38, 235, 45)"
                            },
                            "color": "rgb(67, 133, 21)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "f1ec52",
                        "fill": "tonextx",
                        "line": {
                            "dash": "dot"
                        },
                        "mode": "markers+lines",
                        "name": "<b>AD Success TPJ (mins)</b>",
                        "type": "scatter",
                        "xsrc": "soadx909:18:b06af6",
                        "ysrc": "soadx909:17:ca7ce0",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(27, 26, 27)",
                            "symbol": "cross-open"
                        },
                        "fillcolor": "rgba(228, 217, 228, 0.5)",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 22
                        },
                        "text": "<b>Number of AD Ontario- 13th Feb-13th MarĀ "
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            8.5
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>NPA</b>"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "size": 19
                        },
                        "zeroline": false,
                        "autorange": true,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            246.31578947368422
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Number of AD Initiated</b>"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 1.0457926376851319,
                        "y": 1.1213991769547325
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            46.50832466181061,
                            110.49167533818938
                        ],
                        "title": {
                            "font": {
                                "size": 18,
                                "color": "rgb(84, 94, 184)"
                            },
                            "text": "<b>AD Success TPJ (mins)</b>"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "size": 11
                        },
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "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/~soadx909",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-01-31 20:09:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "soadx909",
                "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:42:39.795953Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~johngatop/0.embed",
            "fid": "johngatop:0",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/johngatop:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/johngatop:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/johngatop:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/johngatop:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/johngatop:0",
                "plots": "https://api.plotly.com/v2/plots/johngatop:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=johngatop"
            },
            "owner": "johngatop",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~johngatop/0/",
            "world_readable": true,
            "date_modified": "2019-04-04T23:28:48.111Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~johngatop/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0a3c5e7e-a779-48eb-8ba2-c7915fa1788d",
                        "type": "scatter",
                        "xsrc": "johngatop:1:ccf99e",
                        "ysrc": "johngatop:1:18d71c"
                    },
                    {
                        "uid": "556becc8-4dd6-442d-b1f6-fe628acbfc11",
                        "type": "scatter",
                        "xsrc": "johngatop:1:ccf99e",
                        "ysrc": "johngatop:1:534d77"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~johngatop",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 18:40:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "johngatop",
                "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:42:28.993259Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Crim318/4.embed",
            "fid": "Crim318:4",
            "filename": "basic-bar",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Crim318:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Crim318:4/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Crim318/4/8_OLBCKQTOX5WKJHUGOJUGEXW5IEFKN6.png",
                "list-thumb": "https://api.plotly.com/v2/files/Crim318:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Crim318:4",
                "plots": "https://api.plotly.com/v2/plots/Crim318:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=Crim318"
            },
            "owner": "Crim318",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Crim318/4/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:50:42.978Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Crim318/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2ba38ff0-8a4d-441b-99c4-99df9633e541",
                        "type": "bar",
                        "xsrc": "Crim318:5:fcfca2",
                        "ysrc": "Crim318:5:5f5112"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Crim318",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.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-03-17 20:17:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Crim318",
                "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:41:00.530656Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ametaxas/59.embed",
            "fid": "ametaxas:59",
            "filename": "Top Category Seen Impression Clicks",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ametaxas:59/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ametaxas:59/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ametaxas/59/8_NJZ86LYGXLSHG6LI8UZ7X4U0R509R7.png",
                "list-thumb": "https://api.plotly.com/v2/files/ametaxas:59/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ametaxas:59",
                "plots": "https://api.plotly.com/v2/plots/ametaxas:59",
                "parent": "https://api.plotly.com/v2/folders/home?user=ametaxas"
            },
            "owner": "ametaxas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Top Category Seen Impressions Clicked",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~ametaxas/59/top-category-seen-impressions-clicked/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:49:05.822Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ametaxas/59/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d4eed16c-4b40-11e9-99ae-98e0d9a53081",
                        "line": {
                            "color": "#C446A2"
                        },
                        "name": "Fashion & Style",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:5acfd9",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed3ba-4b40-11e9-8a78-98e0d9a53081",
                        "line": {
                            "color": "#4FB6D8"
                        },
                        "name": "Celebrity News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:980dd7",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed50c-4b40-11e9-b7e7-98e0d9a53081",
                        "line": {
                            "color": "#06C5F5"
                        },
                        "name": "Apartments & Residential Rentals",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:b563db",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed61c-4b40-11e9-bf32-98e0d9a53081",
                        "line": {
                            "color": "#165DBB"
                        },
                        "name": "Childhood Education",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:ae82bd",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed71e-4b40-11e9-aa84-98e0d9a53081",
                        "line": {
                            "color": "#B33C29"
                        },
                        "name": "Social Networks",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:0ff81b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed81a-4b40-11e9-b984-98e0d9a53081",
                        "line": {
                            "color": "#ECBA0C"
                        },
                        "name": "Mobile & Wireless",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1d1dcb",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eed914-4b40-11e9-8da6-98e0d9a53081",
                        "line": {
                            "color": "#C1BF52"
                        },
                        "name": "Travel",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:8047f4",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeda0c-4b40-11e9-abc9-98e0d9a53081",
                        "line": {
                            "color": "#E57D6D"
                        },
                        "name": "Directories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:980dd7",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eedb08-4b40-11e9-8536-98e0d9a53081",
                        "line": {
                            "color": "#62A59C"
                        },
                        "name": "Culture",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:59d7bf",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eedc02-4b40-11e9-84ab-98e0d9a53081",
                        "line": {
                            "color": "#E9B5F3"
                        },
                        "name": "Language Resources",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:59d7bf",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eedcf4-4b40-11e9-9fd4-98e0d9a53081",
                        "line": {
                            "color": "#C1B919"
                        },
                        "name": "Web Apps & Online Tools",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:cb77df",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeddec-4b40-11e9-a269-98e0d9a53081",
                        "line": {
                            "color": "#5A9EE3"
                        },
                        "name": "Real Estate Listings",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:b22259",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eedee6-4b40-11e9-890b-98e0d9a53081",
                        "line": {
                            "color": "#3916D6"
                        },
                        "name": "Pets",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a1b5b0",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eedfd8-4b40-11e9-a3e1-98e0d9a53081",
                        "line": {
                            "color": "#B3ED2B"
                        },
                        "name": "Computer & Video Games",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:cb77df",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee0d0-4b40-11e9-b3c6-98e0d9a53081",
                        "line": {
                            "color": "#465675"
                        },
                        "name": "Cheats & Walkthroughs",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:0e8139",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee1c0-4b40-11e9-b1cf-98e0d9a53081",
                        "line": {
                            "color": "#900779"
                        },
                        "name": "Cooking & Recipes",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:29bdaa",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee2b0-4b40-11e9-98ed-98e0d9a53081",
                        "line": {
                            "color": "#62C6F4"
                        },
                        "name": "World News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:3b8794",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee3a8-4b40-11e9-b89d-98e0d9a53081",
                        "line": {
                            "color": "#783746"
                        },
                        "name": "(undefined)",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:c057d4",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee49a-4b40-11e9-a7f5-98e0d9a53081",
                        "line": {
                            "color": "#C4AAA2"
                        },
                        "name": "Food & Drink",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:f2dd6a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee594-4b40-11e9-be13-98e0d9a53081",
                        "line": {
                            "color": "#D750F5"
                        },
                        "name": "Luggage & Travel Accessories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:930a06",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee686-4b40-11e9-887d-98e0d9a53081",
                        "line": {
                            "color": "#3839AC"
                        },
                        "name": "(undefined)",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:c0eb27",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee774-4b40-11e9-bc33-98e0d9a53081",
                        "line": {
                            "color": "#4825C7"
                        },
                        "name": "Apartments & Residential Rentals",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:c7dd45",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee8be-4b40-11e9-9079-98e0d9a53081",
                        "line": {
                            "color": "#F2E2FE"
                        },
                        "name": "Childhood Education",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:bcdbf5",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eee974-4b40-11e9-a23f-98e0d9a53081",
                        "line": {
                            "color": "#01CF5F"
                        },
                        "name": "Cheats & Walkthroughs",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:bb8e2a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeea30-4b40-11e9-a379-98e0d9a53081",
                        "line": {
                            "color": "#4A6C38"
                        },
                        "name": "TV & Video",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a5c29c",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeeae4-4b40-11e9-98b8-98e0d9a53081",
                        "line": {
                            "color": "#5ED744"
                        },
                        "name": "Cooking & Recipes",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:ba7e2c",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeeba2-4b40-11e9-a92e-98e0d9a53081",
                        "line": {
                            "color": "#0DD2B9"
                        },
                        "name": "Real Estate Listings",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a73cbc",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeec58-4b40-11e9-88da-98e0d9a53081",
                        "line": {
                            "color": "#2477FC"
                        },
                        "name": "Social Networks",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:cd240d",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeed0a-4b40-11e9-aa44-98e0d9a53081",
                        "line": {
                            "color": "#8EE017"
                        },
                        "name": "Travel",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:ca57ba",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeedbe-4b40-11e9-a125-98e0d9a53081",
                        "line": {
                            "color": "#4CE760"
                        },
                        "name": "Computers & Electronics",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:46c8df",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeee7a-4b40-11e9-9308-98e0d9a53081",
                        "line": {
                            "color": "#22EB2D"
                        },
                        "name": "Directories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:3bbc7f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeef30-4b40-11e9-9b17-98e0d9a53081",
                        "line": {
                            "color": "#95A21D"
                        },
                        "name": "Undisclosed",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:58f9ad",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeefe4-4b40-11e9-805c-98e0d9a53081",
                        "line": {
                            "color": "#8AC5C4"
                        },
                        "name": "Fashion & Style",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:282ec5",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef098-4b40-11e9-8fc8-98e0d9a53081",
                        "line": {
                            "color": "#42E7D7"
                        },
                        "name": "Culture",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:7dd219",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef158-4b40-11e9-bd5a-98e0d9a53081",
                        "line": {
                            "color": "#18FF12"
                        },
                        "name": "Celebrity News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:7e7bd9",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef20a-4b40-11e9-a956-98e0d9a53081",
                        "line": {
                            "color": "#B7256B"
                        },
                        "name": "Mobile & Wireless",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:98cf30",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef2c8-4b40-11e9-9609-98e0d9a53081",
                        "line": {
                            "color": "#45B7B1"
                        },
                        "name": "Computer & Video Games",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:2878af",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef37a-4b40-11e9-a501-98e0d9a53081",
                        "line": {
                            "color": "#471445"
                        },
                        "name": "Pets",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a7f6a2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef430-4b40-11e9-b24d-98e0d9a53081",
                        "line": {
                            "color": "#EA5D03"
                        },
                        "name": "World News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:ffb5f4",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef4f8-4b40-11e9-a96c-98e0d9a53081",
                        "line": {
                            "color": "#F23BF1"
                        },
                        "name": "Language Resources",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:12708f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef5b6-4b40-11e9-9ed7-98e0d9a53081",
                        "line": {
                            "color": "#DF18EC"
                        },
                        "name": "(undefined)",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:dbb39c",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef67e-4b40-11e9-8207-98e0d9a53081",
                        "line": {
                            "color": "#F72B88"
                        },
                        "name": "Apartments & Residential Rentals",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:c7dd45",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef750-4b40-11e9-81bd-98e0d9a53081",
                        "line": {
                            "color": "#414062"
                        },
                        "name": "Childhood Education",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:bcdbf5",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef818-4b40-11e9-88ea-98e0d9a53081",
                        "line": {
                            "color": "#F42DE4"
                        },
                        "name": "Cheats & Walkthroughs",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:bb8e2a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef8e2-4b40-11e9-9c3a-98e0d9a53081",
                        "line": {
                            "color": "#A09208"
                        },
                        "name": "TV & Video",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:4272cf",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eef99e-4b40-11e9-b952-98e0d9a53081",
                        "line": {
                            "color": "#2827A1"
                        },
                        "name": "Cooking & Recipes",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:b93e4d",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefa5c-4b40-11e9-9c99-98e0d9a53081",
                        "line": {
                            "color": "#B9450E"
                        },
                        "name": "Real Estate Listings",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a9b07b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefb24-4b40-11e9-b38c-98e0d9a53081",
                        "line": {
                            "color": "#5C5601"
                        },
                        "name": "Social Networks",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:bd2c41",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefbf6-4b40-11e9-9c4e-98e0d9a53081",
                        "line": {
                            "color": "#BCC9EA"
                        },
                        "name": "Travel",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:3f2a1a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefce6-4b40-11e9-bbe7-98e0d9a53081",
                        "line": {
                            "color": "#4BCAD1"
                        },
                        "name": "Computers & Electronics",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1ea8e2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefdc2-4b40-11e9-8c7b-98e0d9a53081",
                        "line": {
                            "color": "#5EB2EF"
                        },
                        "name": "Directories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:26b1f2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eefe8a-4b40-11e9-a505-98e0d9a53081",
                        "line": {
                            "color": "#35E9B2"
                        },
                        "name": "Undisclosed",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:eb8e04",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4eeff52-4b40-11e9-8479-98e0d9a53081",
                        "line": {
                            "color": "#866839"
                        },
                        "name": "Fashion & Style",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:c21e90",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef001a-4b40-11e9-b65a-98e0d9a53081",
                        "line": {
                            "color": "#5FEC87"
                        },
                        "name": "Culture",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:d2e127",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef00e2-4b40-11e9-9810-98e0d9a53081",
                        "line": {
                            "color": "#8CC9DC"
                        },
                        "name": "Celebrity News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a4c84f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef019e-4b40-11e9-87e3-98e0d9a53081",
                        "line": {
                            "color": "#BD1EFB"
                        },
                        "name": "Mobile & Wireless",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:d712f1",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef025e-4b40-11e9-b254-98e0d9a53081",
                        "line": {
                            "color": "#AD99AF"
                        },
                        "name": "Computer & Video Games",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:efc28b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0312-4b40-11e9-a141-98e0d9a53081",
                        "line": {
                            "color": "#91AF5C"
                        },
                        "name": "Pets",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:e979de",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef03e4-4b40-11e9-966c-98e0d9a53081",
                        "line": {
                            "color": "#3C0226"
                        },
                        "name": "World News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1f9066",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef04ac-4b40-11e9-979c-98e0d9a53081",
                        "line": {
                            "color": "#07392E"
                        },
                        "name": "Language Resources",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:076945",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0574-4b40-11e9-aa38-98e0d9a53081",
                        "line": {
                            "color": "#F03F6D"
                        },
                        "name": "(undefined)",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:88085c",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef063a-4b40-11e9-9314-98e0d9a53081",
                        "line": {
                            "color": "#8856EA"
                        },
                        "name": "Apartments & Residential Rentals",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:6caa08",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0706-4b40-11e9-9dc7-98e0d9a53081",
                        "line": {
                            "color": "#6D0392"
                        },
                        "name": "Childhood Education",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:3c4807",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef07cc-4b40-11e9-9059-98e0d9a53081",
                        "line": {
                            "color": "#CF4A70"
                        },
                        "name": "Cheats & Walkthroughs",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:dfd3a6",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0894-4b40-11e9-af45-98e0d9a53081",
                        "line": {
                            "color": "#BBEBE9"
                        },
                        "name": "TV & Video",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a23021",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0952-4b40-11e9-8e92-98e0d9a53081",
                        "line": {
                            "color": "#C72F2C"
                        },
                        "name": "Cooking & Recipes",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:263c8a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0a1a-4b40-11e9-8c7a-98e0d9a53081",
                        "line": {
                            "color": "#51104F"
                        },
                        "name": "Real Estate Listings",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:47cf82",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0ad8-4b40-11e9-af9c-98e0d9a53081",
                        "line": {
                            "color": "#0A94F2"
                        },
                        "name": "Social Networks",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:8995f7",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0b8c-4b40-11e9-93d1-98e0d9a53081",
                        "line": {
                            "color": "#2D7FFD"
                        },
                        "name": "Travel",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:d8d779",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0c4a-4b40-11e9-90d5-98e0d9a53081",
                        "line": {
                            "color": "#EA2A53"
                        },
                        "name": "Computers & Electronics",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1ea8e2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0cf4-4b40-11e9-b548-98e0d9a53081",
                        "line": {
                            "color": "#0FC4C8"
                        },
                        "name": "Directories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:f940d5",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0da8-4b40-11e9-8444-98e0d9a53081",
                        "line": {
                            "color": "#4BC0CA"
                        },
                        "name": "Undisclosed",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:2e887e",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0e66-4b40-11e9-a5c1-98e0d9a53081",
                        "line": {
                            "color": "#783653"
                        },
                        "name": "Fashion & Style",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:2275ca",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0f1a-4b40-11e9-87b3-98e0d9a53081",
                        "line": {
                            "color": "#F6C6C0"
                        },
                        "name": "Culture",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:67aabd",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef0fcc-4b40-11e9-a529-98e0d9a53081",
                        "line": {
                            "color": "#61D5C6"
                        },
                        "name": "Celebrity News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a4c84f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef108c-4b40-11e9-acbe-98e0d9a53081",
                        "line": {
                            "color": "#DE0230"
                        },
                        "name": "Mobile & Wireless",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:20031a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1154-4b40-11e9-b835-98e0d9a53081",
                        "line": {
                            "color": "#CCD776"
                        },
                        "name": "Computer & Video Games",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:efc28b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef121c-4b40-11e9-86af-98e0d9a53081",
                        "line": {
                            "color": "#48E69A"
                        },
                        "name": "Pets",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1b7df2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef12e4-4b40-11e9-abff-98e0d9a53081",
                        "line": {
                            "color": "#8AE583"
                        },
                        "name": "World News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:996565",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef13ac-4b40-11e9-87b1-98e0d9a53081",
                        "line": {
                            "color": "#43E032"
                        },
                        "name": "Language Resources",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:9f1355",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1462-4b40-11e9-8cce-98e0d9a53081",
                        "line": {
                            "color": "#E8C8B4"
                        },
                        "name": "(undefined)",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:88085c",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1514-4b40-11e9-83ce-98e0d9a53081",
                        "line": {
                            "color": "#5AB3B5"
                        },
                        "name": "Apartments & Residential Rentals",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:6caa08",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef15c8-4b40-11e9-8a11-98e0d9a53081",
                        "line": {
                            "color": "#B1FCE8"
                        },
                        "name": "Childhood Education",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:3c4807",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef167a-4b40-11e9-9510-98e0d9a53081",
                        "line": {
                            "color": "#78A957"
                        },
                        "name": "Cheats & Walkthroughs",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:dfd3a6",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1730-4b40-11e9-8abd-98e0d9a53081",
                        "line": {
                            "color": "#9C3168"
                        },
                        "name": "TV & Video",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a23021",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef17e4-4b40-11e9-ab0a-98e0d9a53081",
                        "line": {
                            "color": "#1C5037"
                        },
                        "name": "Cooking & Recipes",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:263c8a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1898-4b40-11e9-a3e2-98e0d9a53081",
                        "line": {
                            "color": "#0910D5"
                        },
                        "name": "Real Estate Listings",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:47cf82",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef194c-4b40-11e9-8d2d-98e0d9a53081",
                        "line": {
                            "color": "#8B6790"
                        },
                        "name": "Social Networks",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:8995f7",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1a00-4b40-11e9-bbbf-98e0d9a53081",
                        "line": {
                            "color": "#D8094F"
                        },
                        "name": "Travel",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:d8d779",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1abe-4b40-11e9-8def-98e0d9a53081",
                        "line": {
                            "color": "#02B4F9"
                        },
                        "name": "Computers & Electronics",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1ea8e2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1b74-4b40-11e9-bbe4-98e0d9a53081",
                        "line": {
                            "color": "#62B4CF"
                        },
                        "name": "Directories",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:f940d5",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1c26-4b40-11e9-9a63-98e0d9a53081",
                        "line": {
                            "color": "#1883C4"
                        },
                        "name": "Undisclosed",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:2e887e",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1ce4-4b40-11e9-829a-98e0d9a53081",
                        "line": {
                            "color": "#8C1623"
                        },
                        "name": "Fashion & Style",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:2275ca",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1d98-4b40-11e9-b1de-98e0d9a53081",
                        "line": {
                            "color": "#2AECCF"
                        },
                        "name": "Culture",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:67aabd",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1e4c-4b40-11e9-a769-98e0d9a53081",
                        "line": {
                            "color": "#E6B8EA"
                        },
                        "name": "Celebrity News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:a4c84f",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1f34-4b40-11e9-9e7c-98e0d9a53081",
                        "line": {
                            "color": "#CC6B95"
                        },
                        "name": "Mobile & Wireless",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:20031a",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef1ff0-4b40-11e9-9eb9-98e0d9a53081",
                        "line": {
                            "color": "#6A5C65"
                        },
                        "name": "Computer & Video Games",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:efc28b",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef20a4-4b40-11e9-8d87-98e0d9a53081",
                        "line": {
                            "color": "#9F45D1"
                        },
                        "name": "Pets",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:1b7df2",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef2158-4b40-11e9-88fe-98e0d9a53081",
                        "line": {
                            "color": "#D4C707"
                        },
                        "name": "World News",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:996565",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d4ef220c-4b40-11e9-b9e7-98e0d9a53081",
                        "line": {
                            "color": "#AFB4B3"
                        },
                        "name": "Language Resources",
                        "type": "scatter",
                        "xsrc": "ametaxas:60:62e393",
                        "ysrc": "ametaxas:60:9f1355",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": "Top Category Seen Impressions Clicked",
                    "xaxis": {
                        "range": [
                            "2016-07-14",
                            "2016-07-28"
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ametaxas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-11-29 20:54:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ametaxas",
                "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:40:21.862783Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cok8/21.embed",
            "fid": "cok8:21",
            "filename": "Golfchange",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cok8:21/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/cok8:21/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cok8/21/8_3WNFRCW2VYER7LENE5EHVKA3A1T2T6.png",
                "list-thumb": "https://api.plotly.com/v2/files/cok8:21/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cok8:21",
                "plots": "https://api.plotly.com/v2/plots/cok8:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=cok8"
            },
            "owner": "cok8",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cok8/21/",
            "world_readable": true,
            "date_modified": "2019-03-20T19:57:05.515Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cok8/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a2588277-2832-4e3b-8072-c27c632a8452",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cok8:22:9dab25",
                        "ysrc": "cok8:22:73ed3f"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cok8",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-09 23:38:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cok8",
                "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:40:13.744601Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BenjaBi/18.embed",
            "fid": "BenjaBi:18",
            "filename": "basic-bar",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/18/9_6YT4TVHYTGAV2EQBF5N0EBEZNWYXK1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/18/2_BGXDR9W6AJN6G0EFJ8RRB9EBQDTK48.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/18/8_04YG6B4ACES3YAJR16HDFJMQYQTAHO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/BenjaBi/18/9_6YT4TVHYTGAV2EQBF5N0EBEZNWYXK1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BenjaBi:18",
                "plots": "https://api.plotly.com/v2/plots/BenjaBi:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=BenjaBi"
            },
            "owner": "BenjaBi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~BenjaBi/18/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:40:14.762Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BenjaBi/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0806feb1-d92b-4cf1-8a16-bdab24bcc43b",
                        "type": "bar",
                        "xsrc": "BenjaBi:19:e8a3b8",
                        "ysrc": "BenjaBi:19:63b9f7"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~BenjaBi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.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-03 05:10:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BenjaBi",
                "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:39:28.390347Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asra/3.embed",
            "fid": "asra:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asra:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asra:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asra/3/8_GLYFBM11IMFBPE6OR4XVEQFITBE6K8.png",
                "list-thumb": "https://api.plotly.com/v2/files/asra:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asra:3",
                "plots": "https://api.plotly.com/v2/plots/asra:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=asra"
            },
            "owner": "asra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~asra/3/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:39:28.405Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asra/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "asra:2:36be39",
                        "ysrc": "asra:2:df8c29"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Reads vs Preprocessed Reads"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5,
                            105
                        ],
                        "title": {
                            "text": "Coverage %"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            136.8421052631579
                        ],
                        "title": {
                            "text": "Preprocessed Reads (millions)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 18:35:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asra",
                "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:35:54.883728Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pierricm/18.embed",
            "fid": "pierricm:18",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pierricm:18/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pierricm:18/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pierricm:18/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pierricm:18/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pierricm:18",
                "plots": "https://api.plotly.com/v2/plots/pierricm:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=pierricm"
            },
            "owner": "pierricm",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PC2 vs PC1",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~pierricm/18/pc2-vs-pc1/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:35:55.310Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pierricm/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "dcc9bfeb-b8f0-40cb-9c1e-d56755f5a2d9",
                        "mode": "markers",
                        "name": "New space",
                        "type": "scatter",
                        "xsrc": "pierricm:19:803cc3",
                        "ysrc": "pierricm:19:5f56d3",
                        "marker": {
                            "line": {
                                "color": "rgba(100, 0, 150, 0.9)",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "rgba(100, 0, 150, 0.9)",
                            "opacity": 0.8
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "PC1"
                        },
                        "showline": false
                    },
                    "yaxis": {
                        "title": {
                            "text": "PC2"
                        },
                        "showline": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pierricm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-10 12:43:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pierricm",
                "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:35:48.480905Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~asra/1.embed",
            "fid": "asra:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/asra:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/asra:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/asra/1/8_4J9U85Q8T5ENU12XB1Y31PTC9OC0UH.png",
                "list-thumb": "https://api.plotly.com/v2/files/asra:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/asra:1",
                "plots": "https://api.plotly.com/v2/plots/asra:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=asra"
            },
            "owner": "asra",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~asra/1/",
            "world_readable": true,
            "date_modified": "2019-03-20T18:35:48.547Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~asra/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "asra:0:2c6c7c",
                        "ysrc": "asra:0:51d0dc",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5,
                            105
                        ],
                        "title": {
                            "text": "Coverage %"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            136.8421052631579
                        ],
                        "title": {
                            "text": "Preprocessed reads (millions)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~asra",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 18:35:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "asra",
                "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:35:17.464097Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iDrwish/12.embed",
            "fid": "iDrwish:12",
            "filename": "d3-world-map",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/iDrwish:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iDrwish/12/2_O62V2UOSYTF9NPSXEI9G484X0R6VUB.png",
                "block-thumb": "https://api.plotly.com/v2/files/iDrwish:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/iDrwish:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iDrwish:12",
                "plots": "https://api.plotly.com/v2/plots/iDrwish:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=iDrwish"
            },
            "owner": "iDrwish",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Halan Expanding Regionally",
            "views": 60,
            "web_url": "https://chart-studio.plotly.com/~iDrwish/12/halan-expanding-regionally/",
            "world_readable": true,
            "date_modified": "2019-05-22T10:19:42.982Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iDrwish/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c31900e7-8389-4018-b448-1582a3567e0f",
                        "type": "choropleth",
                        "zsrc": "iDrwish:13:c36982",
                        "marker": {
                            "line": {
                                "color": "rgb(180,180,180)",
                                "width": 0.5
                            }
                        },
                        "textsrc": "iDrwish:13:dee472",
                        "colorscale": [
                            [
                                0,
                                "rgb(5, 10, 172)"
                            ],
                            [
                                0.35,
                                "rgb(40, 60, 190)"
                            ],
                            [
                                0.5,
                                "rgb(70, 100, 245)"
                            ],
                            [
                                0.6,
                                "rgb(90, 120, 245)"
                            ],
                            [
                                0.7,
                                "rgb(106, 137, 247)"
                            ],
                            [
                                1,
                                "rgb(220, 220, 220)"
                            ]
                        ],
                        "showlegend": false,
                        "locationssrc": "iDrwish:13:f77a38",
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "layout": {
                    "geo": {
                        "showframe": false,
                        "projection": {
                            "type": "equirectangular"
                        },
                        "showcoastlines": false
                    },
                    "title": {
                        "text": "Halan Expanding Regionally"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iDrwish",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/RGW1LB3E8RR1Y8WBULLK6RLMJQ901O.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "Schizophrenic Ninja",
                "nickname": "Mohamed Darwish",
                "website": "mohameddarwish.com",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-03-03 13:54:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iDrwish",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}