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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIxKzAxJTNBMjQlM0EzNy4yNzA2MDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMSswMSUzQTQ2JTNBNDAuMjY2MTMzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-21T01:46:40.266133Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Frank7/3.embed",
            "fid": "Frank7:3",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Frank7/3/9_QTXQXFWD902GB2YQ3XT1SLXHB1U1UO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Frank7/3/2_7UF7FDC6CNSVFC44T3KLMSXIGIRMS9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Frank7/3/8_YINSJU81MKD88291O30LGYD6B808FM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Frank7/3/9_QTXQXFWD902GB2YQ3XT1SLXHB1U1UO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Frank7:3",
                "plots": "https://api.plotly.com/v2/plots/Frank7:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Frank7"
            },
            "owner": "Frank7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Increasing vs Decreasing",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Frank7/3/increasing-vs-decreasing/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:46:40.906Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Frank7/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "85c65e6c-213f-4c86-9932-afc9e4329358",
                        "line": {
                            "color": "#3D9970"
                        },
                        "name": "Increasing",
                        "type": "box",
                        "xsrc": "Frank7:4:594ac9",
                        "ysrc": "Frank7:4:8c7bc2",
                        "boxpoints": false,
                        "fillcolor": "#3D9970",
                        "showlegend": false,
                        "whiskerwidth": 0
                    },
                    {
                        "uid": "eddb9588-5b61-4897-a885-82e91b038972",
                        "line": {
                            "color": "#FF4136"
                        },
                        "name": "Decreasing",
                        "type": "box",
                        "xsrc": "Frank7:4:d175fe",
                        "ysrc": "Frank7:4:db2749",
                        "boxpoints": false,
                        "fillcolor": "#FF4136",
                        "showlegend": false,
                        "whiskerwidth": 0
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Frank7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 01:23:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Frank7",
                "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-21T01:44:47.385892Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Frank7/1.embed",
            "fid": "Frank7:1",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Frank7/1/9_Q1DEVN7EOBERCPC3J38B63Y7FJSN8G.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Frank7/1/2_KTKN4U81G6SVL5GSXX6XEF27571AGG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Frank7/1/8_95VQY3KGC0N35KJJEHUJ5XL8L82NGW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Frank7/1/9_Q1DEVN7EOBERCPC3J38B63Y7FJSN8G.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Frank7:1",
                "plots": "https://api.plotly.com/v2/plots/Frank7:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Frank7"
            },
            "owner": "Frank7",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Increasing vs Decreasing",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Frank7/1/increasing-vs-decreasing/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:44:47.844Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Frank7/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c8492dbf-68e1-42b7-a0c7-05035bf39f51",
                        "line": {
                            "color": "#3D9970"
                        },
                        "name": "Increasing",
                        "type": "box",
                        "xsrc": "Frank7:2:6a1361",
                        "ysrc": "Frank7:2:c84775",
                        "boxpoints": false,
                        "fillcolor": "#3D9970",
                        "showlegend": false,
                        "whiskerwidth": 0
                    },
                    {
                        "uid": "f8514fe6-b2de-4e17-b497-fc9b6903c6bf",
                        "line": {
                            "color": "#FF4136"
                        },
                        "name": "Decreasing",
                        "type": "box",
                        "xsrc": "Frank7:2:a699cc",
                        "ysrc": "Frank7:2:87b704",
                        "boxpoints": false,
                        "fillcolor": "#FF4136",
                        "showlegend": false,
                        "whiskerwidth": 0
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Frank7",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-21 01:23:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Frank7",
                "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-21T01:43:22.977735Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ruby.chau/5.embed",
            "fid": "ruby.chau:5",
            "filename": "Lab4, Plot1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ruby.chau/5/9_1BO48OJI05826Y1HJXNQ7OT9SJU4DR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ruby.chau/5/2_RUTDJ93Z0YFSSJ90EIV2RA2YEMV2RJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ruby.chau/5/8_AXVJEFXKZY3U45VJ8OXNZNGT5XHO3W.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ruby.chau/5/9_1BO48OJI05826Y1HJXNQ7OT9SJU4DR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ruby.chau:5",
                "plots": "https://api.plotly.com/v2/plots/ruby.chau:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=ruby.chau"
            },
            "owner": "ruby.chau",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~ruby.chau/5/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:43:22.990Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ruby.chau/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(14, 13, 13)",
                            "width": 1
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "ruby.chau:4:b5f529",
                        "ysrc": "ruby.chau:4:0373ca",
                        "marker": {
                            "color": "rgb(249, 1, 18)",
                            "symbol": "circle-open"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 10,
                        "family": "Arial"
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 5,
                        "range": [
                            56.545004233700254,
                            82.75499576629974
                        ],
                        "title": {
                            "font": {
                                "size": 10
                            },
                            "text": "Hardness (RHA)"
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 150,
                        "range": [
                            48.02175496688742,
                            854.8482450331126
                        ],
                        "title": {
                            "font": {
                                "size": 10
                            },
                            "text": "Temperature (<sup>o</sup>C)"
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "margin": {
                        "l": 75,
                        "r": 72,
                        "pad": 4
                    },
                    "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/~ruby.chau",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-01-26 18:27:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ruby.chau",
                "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-21T01:41:43.128858Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~emparedeslopez/5.embed",
            "fid": "emparedeslopez:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/emparedeslopez/5/9_R9EBATXYDM9HDM4USHI911Z2BEZ92P.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/emparedeslopez/5/2_9RCL47OPXKVJ5CP4DW59AKJEJDMF8R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/emparedeslopez/5/8_1V0N2T3QCU8P51LIE179FLZ8NT3W4L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/emparedeslopez/5/9_R9EBATXYDM9HDM4USHI911Z2BEZ92P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/emparedeslopez:5",
                "plots": "https://api.plotly.com/v2/plots/emparedeslopez:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=emparedeslopez"
            },
            "owner": "emparedeslopez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~emparedeslopez/5/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:41:43.142Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~emparedeslopez/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "2017 Female ELA MCAS scaled scores",
                        "type": "box",
                        "xsrc": "emparedeslopez:4:cbbdbb",
                        "boxpoints": "outliers"
                    },
                    {
                        "name": "2012 Female ELA MCAS scores",
                        "type": "box",
                        "xsrc": "emparedeslopez:4:424e95",
                        "boxpoints": "outliers"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "2012 vs. 2017 Female ELA MCAS score comparison"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            220.88888888888889,
                            283.1111111111111
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "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/~emparedeslopez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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-13 14:56:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "emparedeslopez",
                "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-21T01:41:07.531387Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gabrielfribeiro/0.embed",
            "fid": "gabrielfribeiro:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/gabrielfribeiro/0/9_98OGTSAN3ADQQ15KC2LSLA3KDF5SFM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gabrielfribeiro/0/2_ROWH3IBHUSMRJRHYW6G11WJUCAKLYW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gabrielfribeiro/0/8_3LKDNGNI1QW1QQ48AEIWQMSVOIE53Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/gabrielfribeiro/0/9_98OGTSAN3ADQQ15KC2LSLA3KDF5SFM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gabrielfribeiro:0",
                "plots": "https://api.plotly.com/v2/plots/gabrielfribeiro:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=gabrielfribeiro"
            },
            "owner": "gabrielfribeiro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Setting Colorbar range Manually",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~gabrielfribeiro/0/setting-colorbar-range-manually/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:41:08.316Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gabrielfribeiro/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "087abbe1-0c89-48c5-8550-f15f78c9bcfe",
                        "type": "contour",
                        "xsrc": "gabrielfribeiro:1:df2fe2",
                        "ysrc": "gabrielfribeiro:1:821f52",
                        "zsrc": "gabrielfribeiro:1:-7be36a,df2fe2,821f52",
                        "colorbar": {
                            "nticks": 10,
                            "tickmode": "array",
                            "tickvalssrc": "gabrielfribeiro:1:7be36a"
                        },
                        "colorscale": "Viridis"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 12.0,
                            "color": "#000000"
                        },
                        "text": "Setting Colorbar range Manually"
                    },
                    "width": 500,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0.0,
                            1.0
                        ],
                        "ticks": "inside",
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.0,
                            1.0
                        ],
                        "ticks": "inside",
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 400,
                    "margin": {
                        "b": 52,
                        "l": 80,
                        "r": 63,
                        "t": 57,
                        "pad": 0
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gabrielfribeiro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.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-21 01:32:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gabrielfribeiro",
                "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-21T01:40:31.524175Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Britlil/3.embed",
            "fid": "Britlil:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Britlil/3/9_DS5UC3A9ZZ3KMFD35Q64HNAFEIY2LM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Britlil/3/2_15PA46PO335FZ9F68BWEFOJYYLWKE7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Britlil/3/8_AC2XC0HVWJL98A2FIM6CYB0TVRLR53.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Britlil/3/9_DS5UC3A9ZZ3KMFD35Q64HNAFEIY2LM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Britlil:3",
                "plots": "https://api.plotly.com/v2/plots/Britlil:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Britlil"
            },
            "owner": "Britlil",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~Britlil/3/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:40:31.538Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Britlil/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Britlil:2:4c4f47",
                        "ysrc": "Britlil:2:5f3219"
                    },
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Britlil:2:4c4f47",
                        "ysrc": "Britlil:2:a02667"
                    },
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Britlil:2:4c4f47",
                        "ysrc": "Britlil:2:7a42c9"
                    },
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Britlil:2:4c4f47",
                        "ysrc": "Britlil:2:6c1388"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Weight change of dyalisis "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            40
                        ],
                        "title": {
                            "text": "time (minutes)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.9944444444444445,
                            3.8944444444444444
                        ],
                        "title": {
                            "text": "Weight (grams)"
                        },
                        "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/~Britlil",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 01:07:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Britlil",
                "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-21T01:39:11.904300Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~brsteward/3.embed",
            "fid": "brsteward:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/brsteward/3/9_Q53PZ0CXV1QZ4AJQLKAPP6Q4FWMUYB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/brsteward/3/2_BCYYD9OCR3MGBAONLUY8TULB7EAIJX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/brsteward/3/8_PZWK1DIJYLTWLRFIKCID2IFBHX4ZV7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/brsteward/3/9_Q53PZ0CXV1QZ4AJQLKAPP6Q4FWMUYB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/brsteward:3",
                "plots": "https://api.plotly.com/v2/plots/brsteward:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=brsteward"
            },
            "owner": "brsteward",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~brsteward/3/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:39:11.926Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~brsteward/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Case I",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:6f2d04",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 0, 0)"
                        },
                        "error_y": {
                            "type": "data",
                            "color": "rgb(255, 0, 0)",
                            "width": 10,
                            "visible": true,
                            "arraysrc": "brsteward:2:e96f7b",
                            "symmetric": true
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Case II",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:3ba7a1",
                        "marker": {
                            "size": 10
                        },
                        "error_y": {
                            "type": "data",
                            "width": 10,
                            "visible": true,
                            "arraysrc": "brsteward:2:5a4c5f",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "name": "Case III",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:48a25b",
                        "marker": {
                            "size": 10
                        },
                        "error_y": {
                            "type": "data",
                            "width": 10,
                            "visible": true,
                            "arraysrc": "brsteward:2:da4355",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "name": "Case IV",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:2a70f8",
                        "marker": {
                            "size": 10,
                            "color": "rgb(243, 255, 0)"
                        },
                        "error_y": {
                            "type": "data",
                            "width": 10,
                            "visible": true,
                            "arraysrc": "brsteward:2:1649f1",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "name": "Case V",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:015ac4",
                        "marker": {
                            "size": 10
                        },
                        "error_y": {
                            "type": "data",
                            "width": 9,
                            "visible": true,
                            "arraysrc": "brsteward:2:b37c66",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "name": "Case VI",
                        "type": "scatter",
                        "xsrc": "brsteward:2:860548",
                        "ysrc": "brsteward:2:3ee443",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 0, 0)"
                        },
                        "error_y": {
                            "type": "data",
                            "width": 10,
                            "visible": true,
                            "arraysrc": "brsteward:2:60cc65",
                            "symmetric": true
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 28
                        },
                        "text": "Q1: Part B"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.7522514243705201,
                            5.24774857562948
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Particles"
                        },
                        "nticks": 5,
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": true,
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "type": "log",
                        "range": [
                            0,
                            7
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Iterations"
                        },
                        "tickfont": {
                            "size": 18
                        },
                        "autorange": false
                    },
                    "legend": {
                        "font": {
                            "size": 22
                        }
                    },
                    "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/~brsteward",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.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": "2018-11-20 22:13:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "brsteward",
                "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-21T01:37:19.808540Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~touzani/2.embed",
            "fid": "touzani:2",
            "filename": "Energy Production Jan 1985--Jan 2018",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/touzani/2/9_S51SEHWOWTNLIPVI7UE5R9IN3RGBKB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/touzani/2/2_KRFD0DHQB4ZP58OYIOSA27I8GW7BU1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/touzani/2/8_KJTCS56A8UW85AZ3J9900XQUUATK77.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/touzani/2/9_S51SEHWOWTNLIPVI7UE5R9IN3RGBKB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/touzani:2",
                "plots": "https://api.plotly.com/v2/plots/touzani:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=touzani"
            },
            "owner": "touzani",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Energy Production Jan 1985--Jan 2018",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~touzani/2/energy-production-jan-1985-jan-2018/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:50:16.301Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~touzani/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a40bd04d-e19a-4741-9610-147dabdb7b39",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "touzani:3:9a66ef",
                        "ysrc": "touzani:3:a2938c"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Energy Production Jan 1985--Jan 2018"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~touzani",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.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-21 01:30:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "touzani",
                "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-21T01:35:47.464851Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~touzani/0.embed",
            "fid": "touzani:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/touzani/0/9_9YO3BH9R14LXYAE2712MYOWJQERU22.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/touzani/0/2_FZYJ41FT1RK4SPHY7S9OXC2EK0DZ4X.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/touzani/0/8_5YKB5R9BIWKZ4I3QSD2K63QZLJ0M0Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/touzani/0/9_9YO3BH9R14LXYAE2712MYOWJQERU22.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/touzani:0",
                "plots": "https://api.plotly.com/v2/plots/touzani:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=touzani"
            },
            "owner": "touzani",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs DATE",
            "views": 7,
            "web_url": "https://chart-studio.plotly.com/~touzani/0/observed-vs-date/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:35:47.915Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~touzani/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "83248996-b22e-463d-a737-ee984b20946b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "touzani:1:af4f00",
                        "ysrc": "touzani:1:f80722",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "0fd63b3a-ee84-49a3-aa5f-b59a2acc8eb8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "touzani:1:af4f00",
                        "ysrc": "touzani:1:dd7031",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "30dd17b2-8f15-48f0-930c-a2e8a9d8343e",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "touzani:1:af4f00",
                        "ysrc": "touzani:1:b74ac9",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "17eff64d-2a02-4772-8f48-62a66126a2d8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Energy Production",
                        "type": "scatter",
                        "xsrc": "touzani:1:af4f00",
                        "ysrc": "touzani:1:8e0d54",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-06-30 00:00:00",
                            "1971-07-31 00:00:00"
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "DATE"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            51.610615,
                            133.109285
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Observed"
                        },
                        "anchor": "x",
                        "domain": [
                            0.8075679172056921,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "height": 288,
                    "margin": {
                        "b": 41,
                        "l": 54,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-06-30 00:00:00",
                            "1971-07-31 00:00:00"
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "DATE"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-06-30 00:00:00",
                            "1971-07-31 00:00:00"
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "DATE"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "1970-06-30 00:00:00",
                            "1971-07-31 00:00:00"
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "DATE"
                        },
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 6,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            59.862418125,
                            106.25864437499999
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Trend"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.5383786114704613,
                            0.7308106942647692
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.8833698127155907,
                            1.161829134861002
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Seasonal"
                        },
                        "anchor": "x3",
                        "domain": [
                            0.26918930573523064,
                            0.46162138852953855
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.9083849480348273,
                            1.0850968372456615
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 10.0,
                                "color": "#000000"
                            },
                            "text": "Residual"
                        },
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.19243208279430785
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~touzani",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.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-21 01:30:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "touzani",
                "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-21T01:24:37.270606Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jodo1991/9.embed",
            "fid": "jodo1991:9",
            "filename": "No_of_fraud_transaction_per_transaction-map",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jodo1991/9/9_MWJHOTK154TBOK46X8D3X9CMRAT2BA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jodo1991/9/2_4VLKORQNU6CTSC8FKP60GBSEECCFB9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jodo1991/9/8_9ZN0Z5A84F6RYPDFIB1DO41R75XCJP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jodo1991/9/9_MWJHOTK154TBOK46X8D3X9CMRAT2BA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jodo1991:9",
                "plots": "https://api.plotly.com/v2/plots/jodo1991:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=jodo1991"
            },
            "owner": "jodo1991",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Total Number of fradulant transactions per total number of transactions in each state <br>(Hover for breakdown)",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jodo1991/9/total-number-of-fradulant-transactions-per-total-number-of-transactions-in-each-/",
            "world_readable": true,
            "date_modified": "2019-03-21T01:24:37.683Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jodo1991/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d7f2241b-2861-4292-956b-392babec7d62",
                        "type": "choropleth",
                        "zsrc": "jodo1991:10:626c42",
                        "marker": {
                            "line": {
                                "color": "rgb(255,255,255)",
                                "width": 2
                            }
                        },
                        "textsrc": "jodo1991:10:0b73e2",
                        "colorbar": {
                            "title": {
                                "text": "No of fraud. Tran. per total number of transactions"
                            }
                        },
                        "locationmode": "USA-states",
                        "locationssrc": "jodo1991:10:57ca26",
                        "autocolorscale": true
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "lakecolor": "rgb(255, 255, 255)",
                        "showlakes": true,
                        "projection": {
                            "type": "albers usa"
                        }
                    },
                    "title": {
                        "text": "Total Number of fradulant transactions per total number of transactions in each state <br>(Hover for breakdown)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jodo1991",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-01-20 21:01:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jodo1991",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}