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=cj0xJnA9MjAxOS0wMy0yMCsyMiUzQTQyJTNBMzguNDc1MTc0JTJCMDAlM0EwMA%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=cD0yMDE5LTAzLTIwKzIyJTNBNDIlM0E1Ni44NjA5NjclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMiUzQTUxJTNBMDIuMDU0MzE2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T22:51:02.054316Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ekin.akkol/152.embed",
            "fid": "ekin.akkol:152",
            "filename": "plot from API (19)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ekin.akkol/152/9_12VCZ6WZXB2SWO3T27MMUQ1GPLLXEC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ekin.akkol/152/2_TBN1CDYBDMS581J9OPUUEFHHIYETBN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ekin.akkol/152/8_EY1L30O9VKFNKCMKQS89JJUKTASHMP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ekin.akkol/152/9_12VCZ6WZXB2SWO3T27MMUQ1GPLLXEC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ekin.akkol:152",
                "plots": "https://api.plotly.com/v2/plots/ekin.akkol:152",
                "parent": "https://api.plotly.com/v2/folders/home?user=ekin.akkol"
            },
            "owner": "ekin.akkol",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Yangin Sayısı",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ekin.akkol/152/yangin-says/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:51:02.616Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ekin.akkol/152/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9c03dd6f-82f8-4ec4-af29-9a982b043ca6",
                        "line": {
                            "color": "red"
                        },
                        "type": "scatter",
                        "xsrc": "ekin.akkol:153:103524",
                        "ysrc": "ekin.akkol:153:43f4f9"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Yangin Sayısı"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ekin.akkol",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-09 15:03:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ekin.akkol",
                "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-20T22:49:44.326090Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~novatio/22.embed",
            "fid": "novatio:22",
            "filename": "Plot 22",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/novatio/22/9_OC5P5NIKY214TCKMHT8IUQ511EFFZD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/novatio/22/2_609IXHYBH6ZCOM6SSXVH0RQZB8W1NR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/novatio/22/8_AHNQILNFGUGBAISPSKKMHGX24WT8KI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/novatio/22/9_OC5P5NIKY214TCKMHT8IUQ511EFFZD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/novatio:22",
                "plots": "https://api.plotly.com/v2/plots/novatio:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=novatio"
            },
            "owner": "novatio",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~novatio/22/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:49:44.343Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~novatio/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            0.13500495540138752,
                            0.2249950445986125
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7660057859209333,
                            1.1858900675024102
                        ],
                        "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/~novatio",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2018-06-10 01:16:23",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "novatio",
                "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-20T22:46:59.522630Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~racouto/26.embed",
            "fid": "racouto:26",
            "filename": "Clusters_PV_13c_ajust",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/racouto/26/9_48LFCP1C86Q1HNICYDY2Q2NMFO8N8S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/racouto/26/2_VJ0CCZCW3RNXETE7D3O5F1XLK099JF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/racouto/26/8_JU5NRJ4UJ12A7PQSJ9S1F51CF2062O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/racouto/26/9_48LFCP1C86Q1HNICYDY2Q2NMFO8N8S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/racouto:26",
                "plots": "https://api.plotly.com/v2/plots/racouto:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=racouto"
            },
            "owner": "racouto",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Clusters PV´s por Porte, Cluster de Mercado e % Clientes Vinculados",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~racouto/26/clusters-pv-s-por-porte-cluster-de-mercado-e-clientes-vinculados/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:47:00.092Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~racouto/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Cluster 0",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:c94f57",
                        "ysrc": "racouto:27:b35e74",
                        "zsrc": "racouto:27:47ebfb",
                        "marker": {
                            "size": 2,
                            "color": "#1f77b4"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 1",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:d75d03",
                        "ysrc": "racouto:27:a55248",
                        "zsrc": "racouto:27:90afe6",
                        "marker": {
                            "size": 4,
                            "color": "#ff7f0e"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 2",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:30551c",
                        "ysrc": "racouto:27:815fa9",
                        "zsrc": "racouto:27:98959d",
                        "marker": {
                            "size": 6,
                            "color": "#2ca02c"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 3",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:15c4ab",
                        "ysrc": "racouto:27:a5f733",
                        "zsrc": "racouto:27:babafc",
                        "marker": {
                            "size": 8,
                            "color": "#d62728"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 4",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:2b759c",
                        "ysrc": "racouto:27:e764fd",
                        "zsrc": "racouto:27:595119",
                        "marker": {
                            "size": 10,
                            "color": "#9467bd"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 5",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:a9c832",
                        "ysrc": "racouto:27:e4c21a",
                        "zsrc": "racouto:27:830de0",
                        "marker": {
                            "size": 12,
                            "color": "#8c564b"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 6",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:6eb43e",
                        "ysrc": "racouto:27:6d4f92",
                        "zsrc": "racouto:27:40e98a",
                        "marker": {
                            "size": 14,
                            "color": "#e377c2"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 7",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:f4a2f6",
                        "ysrc": "racouto:27:c7f8a1",
                        "zsrc": "racouto:27:b1370f",
                        "marker": {
                            "size": 16,
                            "color": "#7f7f7f"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 8",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:a19461",
                        "ysrc": "racouto:27:aa00fd",
                        "zsrc": "racouto:27:64a0b1",
                        "marker": {
                            "size": 18,
                            "color": "#bcbd22"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 9",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:69b987",
                        "ysrc": "racouto:27:35c953",
                        "zsrc": "racouto:27:e21f8e",
                        "marker": {
                            "size": 18,
                            "color": "#17becf"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 10",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:f20dd1",
                        "ysrc": "racouto:27:758c50",
                        "zsrc": "racouto:27:d9d658",
                        "marker": {
                            "size": 18,
                            "color": "burlywood"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 11",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:35ecb5",
                        "ysrc": "racouto:27:ed52b8",
                        "zsrc": "racouto:27:f335bd",
                        "marker": {
                            "size": 18,
                            "color": "mediumorchid"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Cluster 12",
                        "type": "scatter3d",
                        "xsrc": "racouto:27:b0d541",
                        "ysrc": "racouto:27:5155ae",
                        "zsrc": "racouto:27:bf626a",
                        "marker": {
                            "size": 18,
                            "color": "paleturquoise"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": "Porte",
                            "zeroline": true
                        },
                        "yaxis": {
                            "title": "Cluster de Mercado",
                            "zeroline": true,
                            "showticklabels": false
                        },
                        "zaxis": {
                            "title": "% Vinculados",
                            "zeroline": true
                        }
                    },
                    "title": "Clusters PV´s por Porte, Cluster de Mercado e % Clientes Vinculados"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~racouto",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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": "2018-05-30 20:55:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "racouto",
                "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-20T22:46:03.264507Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mchenbombora/1853.embed",
            "fid": "mchenbombora:1853",
            "filename": "plot from API (523)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1853/9_4LHWNZX3A872BNUDR1LH6BBRQ7WS99.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1853/2_67YEPQSDW4BH0VLKX47I84LCLCCGXO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1853/8_Z8BZARTPZC5I7GM10A6G47XZ6AA0UA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1853/9_4LHWNZX3A872BNUDR1LH6BBRQ7WS99.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mchenbombora:1853",
                "plots": "https://api.plotly.com/v2/plots/mchenbombora:1853",
                "parent": "https://api.plotly.com/v2/folders/home?user=mchenbombora"
            },
            "owner": "mchenbombora",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PDF comparison: ti_surge_state__count",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~mchenbombora/1853/pdf-comparison-ti-surge-state-count/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:46:03.804Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mchenbombora/1853/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "eee2bd74-4b61-11e9-bf89-8a0060b14201",
                        "mode": "lines",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1854:bd1a74",
                        "ysrc": "mchenbombora:1854:da1a13",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": true,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "eee2bed2-4b61-11e9-a1ac-8a0060b14201",
                        "mode": "lines",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1854:08c2dd",
                        "ysrc": "mchenbombora:1854:9f57b1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": true,
                        "legendgroup": "Target"
                    },
                    {
                        "uid": "eee2bf9a-4b61-11e9-9d9e-8a0060b14201",
                        "mode": "markers",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1854:b893f8",
                        "ysrc": "mchenbombora:1854:996474",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "eee2c046-4b61-11e9-a6f2-8a0060b14201",
                        "mode": "markers",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1854:615ba7",
                        "ysrc": "mchenbombora:1854:3ae5e4",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Target"
                    }
                ],
                "layout": {
                    "title": "PDF comparison: ti_surge_state__count",
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mchenbombora",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-10-13 19:54:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mchenbombora",
                "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-20T22:44:37.557322Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mchenbombora/1851.embed",
            "fid": "mchenbombora:1851",
            "filename": "plot from API (522)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1851/9_2I9W5TLSEVUX03EP6PV13VFCCXTCTQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1851/2_A7ZDYZDPKEC5KPEBMXSADUG6OZITYY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1851/8_DP8UQI117HPSB9I9HC639XNHPJ1SCC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1851/9_2I9W5TLSEVUX03EP6PV13VFCCXTCTQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mchenbombora:1851",
                "plots": "https://api.plotly.com/v2/plots/mchenbombora:1851",
                "parent": "https://api.plotly.com/v2/folders/home?user=mchenbombora"
            },
            "owner": "mchenbombora",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PDF comparison: ti_state_ratio",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~mchenbombora/1851/pdf-comparison-ti-state-ratio/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:44:38.120Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mchenbombora/1851/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "bbbfda1c-4b61-11e9-b9f9-8a0060b14201",
                        "mode": "lines",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1852:150996",
                        "ysrc": "mchenbombora:1852:e9a6f2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": true,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "bbbfdb86-4b61-11e9-9a2d-8a0060b14201",
                        "mode": "lines",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1852:29b71a",
                        "ysrc": "mchenbombora:1852:e35a63",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": true,
                        "legendgroup": "Target"
                    },
                    {
                        "uid": "bbbfdc42-4b61-11e9-8e36-8a0060b14201",
                        "mode": "markers",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1852:6b1112",
                        "ysrc": "mchenbombora:1852:5f8228",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "bbbfdcec-4b61-11e9-9a84-8a0060b14201",
                        "mode": "markers",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1852:8b9883",
                        "ysrc": "mchenbombora:1852:20c510",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Target"
                    }
                ],
                "layout": {
                    "title": "PDF comparison: ti_state_ratio",
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mchenbombora",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-10-13 19:54:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mchenbombora",
                "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-20T22:43:32.545943Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mchenbombora/1849.embed",
            "fid": "mchenbombora:1849",
            "filename": "plot from API (521)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1849/9_73Z7J3Z6ZO0YJHC4BZHZ0NHTJYYI2D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1849/2_A0N2X7R72VWDI3X15HPAE2YZ0F3LOP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1849/8_CNRLA84PPFYS4HE7OD8WOOTC73WEHL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mchenbombora/1849/9_73Z7J3Z6ZO0YJHC4BZHZ0NHTJYYI2D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mchenbombora:1849",
                "plots": "https://api.plotly.com/v2/plots/mchenbombora:1849",
                "parent": "https://api.plotly.com/v2/folders/home?user=mchenbombora"
            },
            "owner": "mchenbombora",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "PDF comparison: ti_score__mean",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~mchenbombora/1849/pdf-comparison-ti-score-mean/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:43:33.057Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mchenbombora/1849/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9507cd26-4b61-11e9-a6cb-8a0060b14201",
                        "mode": "lines",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1850:00cd00",
                        "ysrc": "mchenbombora:1850:67e601",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": true,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "9507ce98-4b61-11e9-815b-8a0060b14201",
                        "mode": "lines",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1850:00bc94",
                        "ysrc": "mchenbombora:1850:a33994",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": true,
                        "legendgroup": "Target"
                    },
                    {
                        "uid": "9507cf62-4b61-11e9-a82d-8a0060b14201",
                        "mode": "markers",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1850:661bf4",
                        "ysrc": "mchenbombora:1850:711336",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(31, 119, 180)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Control"
                    },
                    {
                        "uid": "9507d00a-4b61-11e9-8408-8a0060b14201",
                        "mode": "markers",
                        "name": "Target",
                        "type": "scatter",
                        "xsrc": "mchenbombora:1850:b8dfbb",
                        "ysrc": "mchenbombora:1850:278d11",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "symbol": "line-ns-open"
                        },
                        "showlegend": false,
                        "legendgroup": "Target"
                    }
                ],
                "layout": {
                    "title": "PDF comparison: ti_score__mean",
                    "xaxis": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "free",
                        "domain": [
                            0.35,
                            1
                        ],
                        "position": 0.0
                    },
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0,
                            0.25
                        ],
                        "showticklabels": false
                    },
                    "barmode": "overlay",
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mchenbombora",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-10-13 19:54:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mchenbombora",
                "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-20T22:43:29.556423Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~henryqpeng/46.embed",
            "fid": "henryqpeng:46",
            "filename": "Plotly Playground 2019-03-20 15:43:28",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/46/9_3JQ4C0QLOYYQH4Q24RCJTZ65N5TY8N.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/46/2_FPMK9RGOHD25XW19XOYO21OI78DU7D.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/46/8_RT53WMCFE8H5A478KNOZQ54MGPHLXR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/46/9_3JQ4C0QLOYYQH4Q24RCJTZ65N5TY8N.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/henryqpeng:46",
                "plots": "https://api.plotly.com/v2/plots/henryqpeng:46",
                "parent": "https://api.plotly.com/v2/folders/home?user=henryqpeng"
            },
            "owner": "henryqpeng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~henryqpeng/46/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:43:30.311Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~henryqpeng/46/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "37138aa5-6395-48a9-84cc-0c52ddbe3af1",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "ds",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:a4e3cf"
                    },
                    {
                        "uid": "6525bf66-1d30-4b2d-8465-c3a068cf5dd0",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:549042"
                    },
                    {
                        "uid": "a585db24-aff3-4501-b8ab-046cd0374afd",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:9a4162"
                    },
                    {
                        "uid": "2d33b5b8-8527-4071-ab09-92d121108377",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:ba9308"
                    },
                    {
                        "uid": "9123619f-ab7d-4bac-aa92-a29e5125b119",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:b05fa4"
                    },
                    {
                        "uid": "2de908eb-cb08-4e47-bd18-e84f6179f399",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "trend_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:58a3cc"
                    },
                    {
                        "uid": "22f9fd6e-10bd-4b5c-868b-b1989f0a005f",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:d21d4d"
                    },
                    {
                        "uid": "aca818d9-cf14-4246-aa3e-7505fdcf0061",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:d21d4d"
                    },
                    {
                        "uid": "300def06-f68e-4aca-b7ac-770d67c2d31c",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(251, 128, 114, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "additive_terms_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:d21d4d"
                    },
                    {
                        "uid": "c07e8ad2-6de0-430d-a0ca-03807905e40a",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:590e1f"
                    },
                    {
                        "uid": "151c19b4-1897-416d-a3ca-63507761dd14",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 177, 211, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:590e1f"
                    },
                    {
                        "uid": "58db305c-75b3-4e79-8bdc-602cc02c3aca",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "weekly_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:590e1f"
                    },
                    {
                        "uid": "3cc46060-bd1c-42cd-84a7-de7f0b2900aa",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:5b553b"
                    },
                    {
                        "uid": "2a9c5f4b-bc34-4892-b7f7-cfb759d831ff",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:5b553b"
                    },
                    {
                        "uid": "9ddb4084-dfba-4c9d-8761-22d3ff2c880b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yearly_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:5b553b"
                    },
                    {
                        "uid": "c5da2e2e-60c0-4d50-99ff-b53ea2e21e52",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219, 64, 82, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:3a7d8f"
                    },
                    {
                        "uid": "1c621ead-3c72-4d19-a2ba-bdfaa5d361f8",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0, 128, 128, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms_lower",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:3a7d8f"
                    },
                    {
                        "uid": "5c115963-1225-4688-af92-15a50ae4caa1",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 255, 51, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "multiplicative_terms_upper",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:3a7d8f"
                    },
                    {
                        "uid": "2dd9301b-d9c6-46f3-98ef-7ab144a086a9",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 128, 0, 0.8999999999999999)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "yhat",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:47:ed877a",
                        "ysrc": "henryqpeng:47:438ca1"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "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/~henryqpeng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 00:01:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "henryqpeng",
                "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-20T22:43:18.001716Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~henryqpeng/44.embed",
            "fid": "henryqpeng:44",
            "filename": "Plotly Playground 2019-03-20 15:43:17",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/44/9_XUOPPSJCCHC4CBQXB3A5U544WGCDNF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/44/2_70OJFMXXSYYLMJ5S6TLNEVJWB6AV88.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/44/8_GZ93TTSZSAP8UPL1942MPATY6AE5Q3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/44/9_XUOPPSJCCHC4CBQXB3A5U544WGCDNF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/henryqpeng:44",
                "plots": "https://api.plotly.com/v2/plots/henryqpeng:44",
                "parent": "https://api.plotly.com/v2/folders/home?user=henryqpeng"
            },
            "owner": "henryqpeng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~henryqpeng/44/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:43:18.444Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~henryqpeng/44/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c46d6a11-ecd1-4e9c-83e8-caeb5511e0b2",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "ds",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:45:ee8b6e",
                        "ysrc": "henryqpeng:45:69176b"
                    },
                    {
                        "uid": "2ea714ef-cba4-4c52-82b6-adcf6f71959c",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "y",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:45:ee8b6e",
                        "ysrc": "henryqpeng:45:4a888d"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "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/~henryqpeng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 00:01:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "henryqpeng",
                "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-20T22:42:59.957418Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~henryqpeng/42.embed",
            "fid": "henryqpeng:42",
            "filename": "Plotly Playground 2019-03-20 15:42:59",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/42/9_RWSZ7HZTMWQ65WI982JNVIPAIXJAYT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/42/2_BNLPE5837BE50GCU43ZPYIE7C5JX2R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/42/8_G6FVW0PYR38ZXCYAHMN7GGL6SPWATC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/henryqpeng/42/9_RWSZ7HZTMWQ65WI982JNVIPAIXJAYT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/henryqpeng:42",
                "plots": "https://api.plotly.com/v2/plots/henryqpeng:42",
                "parent": "https://api.plotly.com/v2/folders/home?user=henryqpeng"
            },
            "owner": "henryqpeng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "{'font': {'color': '#4D5663'}}",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~henryqpeng/42/font-color-4d5663/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:43:00.417Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~henryqpeng/42/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0ba4fcbc-c768-404c-8e28-9d5dabd5ba97",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "ds",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:43:e4444d",
                        "ysrc": "henryqpeng:43:744791"
                    },
                    {
                        "uid": "20c27ae8-cec2-4310-8933-8c4f7b415d85",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "y",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "henryqpeng:43:e4444d",
                        "ysrc": "henryqpeng:43:671816"
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "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/~henryqpeng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-14 00:01:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "henryqpeng",
                "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-20T22:42:56.860967Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~amper/61563.embed",
            "fid": "amper:61563",
            "filename": "03-19-19_ds-1635_alg-5421_param-1206_showamps-True-state_res-SEC",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/amper/61563/9_6F8O3X6HC8DD2OCSTJO24D263PJAON.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/amper/61563/2_8LVF2VJMR425L5V31BKWSFPSAM0O3I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/amper/61563/8_0H9WWK05AZIIH5ZU94WHPABQN8SV8V.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/amper/61563/9_6F8O3X6HC8DD2OCSTJO24D263PJAON.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/amper:61563",
                "plots": "https://api.plotly.com/v2/plots/amper:61563",
                "parent": "https://api.plotly.com/v2/folders/home?user=amper"
            },
            "owner": "amper",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "03-19-19_ds-1635_alg-5421_param-1206_showamps-True-state_res-SEC",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~amper/61563/_03-19-19-ds-1635-alg-5421-param-1206-showamps-true-state-res-sec/",
            "world_readable": true,
            "date_modified": "2019-03-20T22:42:58.247Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~amper/61563/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "737b0a3f-da59-4a59-b20b-384a19ca656c",
                        "mode": "lines",
                        "name": "Off",
                        "type": "scattergl",
                        "xsrc": "amper:61564:b80db1",
                        "ysrc": "amper:61564:850f19",
                        "marker": {
                            "line": {
                                "color": "rgb(248, 19, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(248, 19, 0)"
                        }
                    },
                    {
                        "uid": "b0843ba8-bdfd-4626-b837-ae09ba9ac5ee",
                        "mode": "lines",
                        "name": "Idle",
                        "type": "scattergl",
                        "xsrc": "amper:61564:b80db1",
                        "ysrc": "amper:61564:cd0918",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 205, 0)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(255, 205, 0)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "7e4b4681-5090-4d3f-9ab4-9e350628ec99",
                        "mode": "lines",
                        "name": "Production",
                        "type": "scattergl",
                        "xsrc": "amper:61564:b80db1",
                        "ysrc": "amper:61564:23c084",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 166, 73)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(0, 166, 73)"
                        },
                        "connectgaps": false
                    },
                    {
                        "uid": "acd39310-41ee-4164-bb34-57258fee762f",
                        "mode": "lines",
                        "name": "Other",
                        "type": "scattergl",
                        "xsrc": "amper:61564:b80db1",
                        "ysrc": "amper:61564:219556",
                        "marker": {
                            "line": {
                                "color": "rgb(169,169,169)",
                                "width": 1
                            },
                            "size": 1,
                            "color": "rgb(169,169,169)"
                        }
                    }
                ],
                "layout": {
                    "title": "03-19-19_ds-1635_alg-5421_param-1206_showamps-True-state_res-SEC"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~amper",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.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": "2017-03-17 16:47:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "amper",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}