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=cj0xJnA9MjAxOS0wNi0xNysxMyUzQTUwJTNBMzcuMTIyNDE4JTJCMDAlM0EwMA%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=cD0yMDE5LTA2LTE3KzEzJTNBNTAlM0E0MS40NjIyNjUlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxNCUzQTAyJTNBMzcuNTc5Mjg0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T14:02:37.579284Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Chiron/0.embed",
            "fid": "Chiron:0",
            "filename": "simple-3d-scatter",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Chiron:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Chiron/0/2_1TFTD8TOT0Y3R9US6OIPRX24S96O2R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Chiron/0/8_YZX96OOS3OWTYE14CG5IEF64HG2SHV.png",
                "list-thumb": "https://api.plotly.com/v2/files/Chiron:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Chiron:0",
                "plots": "https://api.plotly.com/v2/plots/Chiron:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=Chiron"
            },
            "owner": "Chiron",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 70,
            "web_url": "https://chart-studio.plotly.com/~Chiron/0/",
            "world_readable": true,
            "date_modified": "2019-11-05T14:00:55.550Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Chiron/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "PCD",
                        "type": "scatter3d",
                        "xsrc": "Chiron:13:5b3e27",
                        "ysrc": "Chiron:13:167dc9",
                        "zsrc": "Chiron:13:be88c5",
                        "marker": {
                            "size": 2,
                            "opacity": 0.8,
                            "colorbar": {
                                "x": 0.8,
                                "y": 0.6,
                                "len": 0.5,
                                "thickness": 15
                            },
                            "colorsrc": "Chiron:13:723259",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0.0,
                                    "#440154"
                                ],
                                [
                                    0.1111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.2222222222222222,
                                    "#3e4989"
                                ],
                                [
                                    0.3333333333333333,
                                    "#31688e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#26828e"
                                ],
                                [
                                    0.5555555555555556,
                                    "#1f9e89"
                                ],
                                [
                                    0.6666666666666666,
                                    "#35b779"
                                ],
                                [
                                    0.7777777777777778,
                                    "#6ece58"
                                ],
                                [
                                    0.8888888888888888,
                                    "#b5de2b"
                                ],
                                [
                                    1.0,
                                    "#fde725"
                                ]
                            ]
                        }
                    },
                    {
                        "mode": "lines",
                        "name": "Stand",
                        "type": "scatter3d",
                        "xsrc": "Chiron:13:f9feed",
                        "ysrc": "Chiron:13:5bed4b",
                        "zsrc": "Chiron:13:266000",
                        "marker": {
                            "size": 5,
                            "color": "black"
                        }
                    },
                    {
                        "mode": "lines",
                        "name": "buildings",
                        "type": "scatter3d",
                        "xsrc": "Chiron:13:c1cd69",
                        "ysrc": "Chiron:13:7272df",
                        "zsrc": "Chiron:13:774a25",
                        "marker": {
                            "size": 3,
                            "color": "red"
                        }
                    },
                    {
                        "mode": "lines",
                        "name": "buildings",
                        "type": "scatter3d",
                        "xsrc": "Chiron:13:485d29",
                        "ysrc": "Chiron:13:8525a6",
                        "zsrc": "Chiron:13:d3c6c2",
                        "marker": {
                            "size": 3,
                            "color": "red"
                        }
                    },
                    {
                        "mode": "lines",
                        "name": "buildings",
                        "type": "scatter3d",
                        "xsrc": "Chiron:13:329281",
                        "ysrc": "Chiron:13:9875bd",
                        "zsrc": "Chiron:13:714988",
                        "marker": {
                            "size": 3,
                            "color": "red"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "aspectmode": "manual",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 0.5
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "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.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Chiron",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 12:25:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Chiron",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:59:52.218120Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yyyyyywwwwz/2.embed",
            "fid": "yyyyyywwwwz:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yyyyyywwwwz:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yyyyyywwwwz:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yyyyyywwwwz/2/8_83LHOTQBCGK5RW2XHGBGXLTOCH9QQO.png",
                "list-thumb": "https://api.plotly.com/v2/files/yyyyyywwwwz:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yyyyyywwwwz:2",
                "plots": "https://api.plotly.com/v2/plots/yyyyyywwwwz:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=yyyyyywwwwz"
            },
            "owner": "yyyyyywwwwz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "IWC, SSA, RBA, TCA, GFK, JDA, CORAL, JGSA, TJM, MEDA",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~yyyyyywwwwz/2/iwc-ssa-rba-tca-gfk-jda-coral-jgsa-tjm-meda/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:59:54.002Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yyyyyywwwwz/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5d83c072-719e-4d39-8213-d623a167c204",
                        "name": "IWC",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:ca08c2",
                        "marker": {
                            "color": "hsl(0.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "8b655b19-e080-4a0c-840b-20de6f24d80f",
                        "name": "SSA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:d773d0",
                        "marker": {
                            "color": "hsl(40.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "d24c8b6a-27a2-4d10-a394-7c75cf32f1e1",
                        "name": "RBA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:e6b80e",
                        "marker": {
                            "color": "hsl(80.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "f2ea7a45-96c3-4d74-9de3-4673514a5890",
                        "name": "TCA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:b9a9f8",
                        "marker": {
                            "color": "hsl(120.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "8c624055-5d03-440a-86cf-194790b6ed10",
                        "name": "GFK",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:76453f",
                        "marker": {
                            "color": "hsl(160.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "1e8b4b6b-e0a0-4ee7-b467-4700c1a2ee75",
                        "name": "JDA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:cf38e5",
                        "marker": {
                            "color": "hsl(200.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "cdec96aa-7de4-4e26-adfb-e0ad78c112f7",
                        "name": "CORAL",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:c4c33e",
                        "marker": {
                            "color": "hsl(240.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "e0d8f663-7ea5-4d60-9297-cfcec1da798b",
                        "name": "JGSA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:b6ac1b",
                        "marker": {
                            "color": "hsl(280.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "0b0f0289-af46-4ab3-b72e-49a0060881ce",
                        "name": "TJM",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:6a2f9e",
                        "marker": {
                            "color": "hsl(320.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "4202944d-8c5c-4317-b7ca-87e3489c5bbf",
                        "name": "MEDA",
                        "type": "box",
                        "xsrc": "yyyyyywwwwz:3:e52343",
                        "marker": {
                            "color": "hsl(360.0,50%,50%)"
                        },
                        "orientation": "h"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yyyyyywwwwz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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": "2019-06-17 13:38:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yyyyyywwwwz",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:57:02.153211Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~reenac/9.embed",
            "fid": "reenac:9",
            "filename": "OCT images per month",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/reenac/9/9_M2I2E85CKJCUH8794B309XBMIR32FH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/reenac/9/2_ACYD6KZZ9GK0TEB2TS11B51QIWNAG9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/reenac/9/8_8NOTV9TP9TRI5B9IGX6T0SWRX9FNH2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/reenac/9/9_M2I2E85CKJCUH8794B309XBMIR32FH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/reenac:9",
                "plots": "https://api.plotly.com/v2/plots/reenac:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=reenac"
            },
            "owner": "reenac",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://chart-studio.plotly.com/~reenac/9/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:57:02.165Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~reenac/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "reenac:8:601fee",
                        "ysrc": "reenac:8:93a4f4",
                        "marker": {
                            "size": 7,
                            "color": "rgb(118, 109, 248)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 24
                        },
                        "text": "Number of Topcon OCT images captured per month (October 2007 - April 2019)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -8.244796828543112,
                            146.24479682854312
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Month/Year"
                        },
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": true,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1746.6272483521395,
                            28095.62724835214
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Number of Topcon OCT images"
                        },
                        "tickfont": {
                            "size": 14,
                            "family": "Droid Sans"
                        },
                        "autorange": true,
                        "tickformat": "",
                        "showexponent": "all",
                        "separatethousands": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~reenac",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-07-19 10:47:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "reenac",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:55:56.093493Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eliasgander/13.embed",
            "fid": "eliasgander:13",
            "filename": "churn_rate_example_2_table",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/eliasgander:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eliasgander/13/2_GB6MS5CW0ZF6NP0454NZEF4KX0DWFK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eliasgander/13/8_5VXVVR2S2N63ZK06AGQRIAPSCCAHVD.png",
                "list-thumb": "https://api.plotly.com/v2/files/eliasgander:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eliasgander:13",
                "plots": "https://api.plotly.com/v2/plots/eliasgander:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=eliasgander"
            },
            "owner": "eliasgander",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~eliasgander/13/",
            "world_readable": true,
            "date_modified": "2019-07-15T09:13:31.975Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~eliasgander/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "columnwidth": "V"
                            }
                        },
                        "mode": "markers",
                        "type": "table",
                        "cells": {
                            "fill": {
                                "meta": {
                                    "columnNames": {
                                        "color": "U"
                                    }
                                },
                                "colorsrc": "eliasgander:9:75fdfa*"
                            },
                            "font": {
                                "meta": {
                                    "columnNames": {
                                        "color": "T"
                                    }
                                },
                                "colorsrc": "eliasgander:9:a12f6f*"
                            },
                            "line": {
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "values": "N - O - P - Q - R - S"
                                }
                            },
                            "height": 28,
                            "valuessrc": "eliasgander:9:8fb2f8,66d9f6,0206c3,8dee25,5e8be3,4e414b*"
                        },
                        "header": {
                            "fill": {
                                "meta": {
                                    "columnNames": {
                                        "color": "U"
                                    }
                                },
                                "colorsrc": "eliasgander:9:75fdfa"
                            },
                            "font": {
                                "meta": {
                                    "columnNames": {
                                        "color": "T"
                                    }
                                },
                                "colorsrc": "eliasgander:9:a12f6f"
                            },
                            "line": {
                                "width": 0
                            },
                            "meta": {
                                "columnNames": {
                                    "values": "M"
                                }
                            },
                            "valuessrc": "eliasgander:9:b3aa68"
                        },
                        "columnwidthsrc": "eliasgander:9:700220"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 16,
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "font": {
                            "size": 17
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "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/~eliasgander",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-04 13:47:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "eliasgander",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:54:55.367747Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jshap2000/0.embed",
            "fid": "jshap2000:0",
            "filename": "basic-bar",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jshap2000/0/9_I7B7S7HFKY8KFYS0GCHIQ62XVH9PHG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jshap2000/0/2_XYMXD63VBMQ74ZWO31DT7SM8DFYJ3A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jshap2000/0/8_XPF96GAOMS8U0FYIAYJX2HO8TUVAUB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jshap2000/0/9_I7B7S7HFKY8KFYS0GCHIQ62XVH9PHG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jshap2000:0",
                "plots": "https://api.plotly.com/v2/plots/jshap2000:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=jshap2000"
            },
            "owner": "jshap2000",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~jshap2000/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T17:04:26.615Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jshap2000/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1beaa496-4097-484d-8517-8ee8bf7168fd",
                        "type": "bar",
                        "xsrc": "jshap2000:1:d5e9fd",
                        "ysrc": "jshap2000:1:662655"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jshap2000",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:18:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jshap2000",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:54:22.068963Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Arnault_Martin/34.embed",
            "fid": "Arnault_Martin:34",
            "filename": "styled-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Arnault_Martin:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Arnault_Martin:34/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Arnault_Martin/34/8_QUG1NXOA81H4ML8ONN1FWTINCTFXA2.png",
                "list-thumb": "https://api.plotly.com/v2/files/Arnault_Martin:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Arnault_Martin:34",
                "plots": "https://api.plotly.com/v2/plots/Arnault_Martin:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=Arnault_Martin"
            },
            "owner": "Arnault_Martin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time Series of Dataset #3 -- Detrended and de-seasonalized",
            "views": 81,
            "web_url": "https://chart-studio.plotly.com/~Arnault_Martin/34/time-series-of-dataset-3-detrended-and-de-seasonalized/",
            "world_readable": true,
            "date_modified": "2019-06-20T11:19:08.816Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Arnault_Martin/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8bc473f9-3ba4-4169-83ba-4098f090c07f",
                        "mode": "lines",
                        "name": "time_series_55",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:35:f20455",
                        "ysrc": "Arnault_Martin:35:f3bdab"
                    },
                    {
                        "uid": "0405d234-99c2-4b01-83a1-d0a0d9746624",
                        "mode": "lines",
                        "name": "time_series_69",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:35:f20455",
                        "ysrc": "Arnault_Martin:35:1d2c3f"
                    },
                    {
                        "uid": "b4c4c853-4092-41d4-8933-c158a40b16a6",
                        "mode": "lines",
                        "name": "time_series_74",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:35:f20455",
                        "ysrc": "Arnault_Martin:35:2f60b9"
                    },
                    {
                        "uid": "de326c25-7425-48c9-aa96-ee27c679cf28",
                        "mode": "lines",
                        "name": "time_series_96",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:35:f20455",
                        "ysrc": "Arnault_Martin:35:75250c"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time Series of Dataset #3 -- Detrended and de-seasonalized"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Date"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of visits"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Arnault_Martin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-19 10:36:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Arnault_Martin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:53:46.275483Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Arnault_Martin/32.embed",
            "fid": "Arnault_Martin:32",
            "filename": "filename_jeroen",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Arnault_Martin:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Arnault_Martin:32/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Arnault_Martin:32/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Arnault_Martin:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Arnault_Martin:32",
                "plots": "https://api.plotly.com/v2/plots/Arnault_Martin:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=Arnault_Martin"
            },
            "owner": "Arnault_Martin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "time_series_55, time_series_69, time_series_74, time_series_96",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Arnault_Martin/32/time-series-55-time-series-69-time-series-74-time-series-96/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:53:46.739Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Arnault_Martin/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5596a60b-a6d7-4a72-9b45-b9ec41fc143f",
                        "mode": "lines",
                        "name": "time_series_55",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:33:2e5d80",
                        "ysrc": "Arnault_Martin:33:e9b784"
                    },
                    {
                        "uid": "bc30beb5-3e70-4de6-aab7-dd1b07585e7c",
                        "mode": "lines",
                        "name": "time_series_69",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:33:2e5d80",
                        "ysrc": "Arnault_Martin:33:fb0d06"
                    },
                    {
                        "uid": "feed4c31-68a7-4ebe-b82c-2cccfa24a2bf",
                        "mode": "lines",
                        "name": "time_series_74",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:33:2e5d80",
                        "ysrc": "Arnault_Martin:33:8c9bd9"
                    },
                    {
                        "uid": "ab241fe2-9789-46dd-a0f2-926bc5c90f0a",
                        "mode": "lines",
                        "name": "time_series_96",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:33:2e5d80",
                        "ysrc": "Arnault_Martin:33:792400"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Arnault_Martin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-19 10:36:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Arnault_Martin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:53:13.605280Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SebastienCelles/41.embed",
            "fid": "SebastienCelles:41",
            "filename": "Mouse over",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/SebastienCelles:41/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/SebastienCelles:41/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SebastienCelles/41/8_ONMWW83MZ4ZF6WRG3BMSIDWLSLC8Y4.png",
                "list-thumb": "https://api.plotly.com/v2/files/SebastienCelles:41/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SebastienCelles:41",
                "plots": "https://api.plotly.com/v2/plots/SebastienCelles:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=SebastienCelles"
            },
            "owner": "SebastienCelles",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~SebastienCelles/41/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:54:39.660Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SebastienCelles/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "79a199fc-4a66-4bdf-bc3f-1009ecaf6939",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "a",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SebastienCelles:40:e9a8e7",
                        "ysrc": "SebastienCelles:40:1dea0c"
                    },
                    {
                        "uid": "396ac988-64bc-423d-85fc-a3b549e2ee2b",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "b",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SebastienCelles:40:e9a8e7",
                        "ysrc": "SebastienCelles:40:e889a4"
                    },
                    {
                        "uid": "821fd6bb-a366-411b-9a96-4951fb90f172",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "c",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "SebastienCelles:40:e9a8e7",
                        "ysrc": "SebastienCelles:40:a21250"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            30
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "showspikes": false,
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7222222222222222,
                            6.277777777777778
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "showspikes": false,
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SebastienCelles",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2013-12-04 21:30:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SebastienCelles",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:51:47.995336Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~profbayo/12.embed",
            "fid": "profbayo:12",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/profbayo:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/profbayo:12/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/profbayo:12/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/profbayo:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/profbayo:12",
                "plots": "https://api.plotly.com/v2/plots/profbayo:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=profbayo"
            },
            "owner": "profbayo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Granularity",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~profbayo/12/granularity/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:51:48.403Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~profbayo/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "45c46b24-803d-4c6c-a295-47508f22a4cb",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:905b6d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "31c05dca-4320-415e-a9ab-597006e8b6b9",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:0899bf",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "734c13fd-0a8c-4cc8-81ed-98007021ceda",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:f1ed35",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ff5084df-b065-4b58-a038-3e0bf2adc2f5",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:b2f630",
                        "ysrc": "profbayo:13:f1ed35",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "06614387-15c1-4fce-a2b9-2bc338d19f53",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:be622e",
                        "ysrc": "profbayo:13:f1ed35",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "5d5f8da2-84a4-4dac-a6ba-8248430059f5",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:79d58d",
                        "ysrc": "profbayo:13:812611",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "2220e57c-326f-47e3-8114-60e65ba8efe6",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:def646",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "7cc4ce89-441d-41a5-9119-3aa848c156cd",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:796185",
                        "ysrc": "profbayo:13:def646",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "a25d5bb0-4380-4ded-937e-c197c7a1ca5b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:def646",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "cea597b4-c7ed-49af-83dc-d333394e36cf",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:2fd29d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "2deaa5f6-e806-47e5-9d30-5b0112b0b501",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:b92b0d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "1d04df4b-d73b-472f-b757-8c08e97d3454",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:b92b0d",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "58024391-e645-4ec8-b71e-d359f5504dfa",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:9d7db6",
                        "ysrc": "profbayo:13:5e0ff1",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "da5fecb8-1dfe-4216-80e9-58e0a4630856",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:63e26a",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "99c9be8c-cb31-41f0-84fe-6381bb5d648b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:de8c8e",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "67dd6d50-b034-410c-9b33-1f95f1b94626",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:94224f",
                        "ysrc": "profbayo:13:de8c8e",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "24711bac-9a55-4715-ac34-a945c8d9cbb4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:9d7db6",
                        "ysrc": "profbayo:13:859255",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "705f9ffd-317f-4812-ad08-02e9ca9be8b1",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:9d7db6",
                        "ysrc": "profbayo:13:859255",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "6ac08e30-1598-42f4-88ff-54ea22d13850",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:cff7e7",
                        "ysrc": "profbayo:13:f85a46",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "25a36d92-5ee0-4df4-8a36-ca21c7bc1e31",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:cc3dee",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "ce839780-7b43-4c5e-9c36-a1ef92978273",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:50ae68",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "b7fb1455-a838-48f2-8b13-20bc470eea27",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:17f6ef",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "d16aa0bb-7faa-4f41-ae54-0daf62603d1d",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:3b3f2e",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "e291989d-2b66-4c99-bf4c-dae91fd30540",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:3b3f2e",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "913e10f5-0acd-49ca-8fe6-fff6689a14bc",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:9d7db6",
                        "ysrc": "profbayo:13:3b3f2e",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "230af6c1-1194-4efc-a41c-1397efb1b361",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:be622e",
                        "ysrc": "profbayo:13:10c29c",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "f46d6c2c-a2ad-40ee-8585-8b39f0da366b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:9d7db6",
                        "ysrc": "profbayo:13:5d6fb2",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "04947b43-96b6-4362-8228-2be50e8973c4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:6a839f",
                        "ysrc": "profbayo:13:5d6fb2",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "c2455677-e8f2-46a2-b558-373880cb524b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "profbayo:13:be622e",
                        "ysrc": "profbayo:13:10c29c",
                        "marker": {
                            "color": "white"
                        },
                        "showlegend": false
                    },
                    {
                        "uid": "06d9a4b7-942a-4b76-bf41-16303f13de6d",
                        "name": "CCAM",
                        "type": "scatter",
                        "xsrc": "profbayo:13:58f9ca",
                        "ysrc": "profbayo:13:5d6fb2",
                        "marker": {
                            "size": 1,
                            "color": "rgb(1, 1, 0)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    },
                    {
                        "uid": "a6275dfb-e3c4-4a20-b28f-482dde9e654c",
                        "name": "DIAG",
                        "type": "scatter",
                        "xsrc": "profbayo:13:58f9ca",
                        "ysrc": "profbayo:13:10c29c",
                        "marker": {
                            "size": 1,
                            "color": "rgb(0, 255, 100)"
                        },
                        "hoverinfo": "none",
                        "showlegend": true
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Granularity"
                    },
                    "width": 900,
                    "xaxis": {
                        "type": "date",
                        "showgrid": false,
                        "zeroline": false,
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "day",
                                    "count": 7,
                                    "label": "1w",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            19
                        ],
                        "showgrid": false,
                        "ticktext": [
                            "8147435CCAM",
                            "8147435DIAG",
                            "7527641DIAG",
                            "2911796DIAG",
                            "2266136DIAG",
                            "13000421DIAG",
                            "13000421CCAM",
                            "11110008DIAG",
                            "11110008CCAM",
                            "10504366DIAG",
                            "10501679DIAG",
                            "10501679CCAM",
                            "10500711CCAM",
                            "10500366CCAM",
                            "10147CCAM",
                            "10147DIAG",
                            "10020DIAG",
                            "10020CCAM"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17
                        ],
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 600,
                    "shapes": [
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 16.8,
                            "y1": 17.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 15.8,
                            "y1": 16.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 14.8,
                            "y1": 15.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2012-03-01",
                            "x1": "2012-04-01",
                            "y0": 14.8,
                            "y1": 15.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2014-03-01",
                            "x1": "2014-04-01",
                            "y0": 14.8,
                            "y1": 15.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2016-03-01",
                            "x1": "2016-04-01",
                            "y0": 13.8,
                            "y1": 14.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 12.8,
                            "y1": 13.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-11-01",
                            "x1": "2010-12-01",
                            "y0": 12.8,
                            "y1": 13.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 12.8,
                            "y1": 13.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 11.8,
                            "y1": 12.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 10.8,
                            "y1": 11.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 10.8,
                            "y1": 11.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-04-01",
                            "y0": 9.8,
                            "y1": 10.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 8.8,
                            "y1": 9.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 7.8,
                            "y1": 8.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2011-05-01",
                            "x1": "2011-06-01",
                            "y0": 7.8,
                            "y1": 8.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-04-01",
                            "y0": 6.8,
                            "y1": 7.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-04-01",
                            "y0": 6.8,
                            "y1": 7.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-08-01",
                            "x1": "2010-09-01",
                            "y0": 5.8,
                            "y1": 6.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 4.8,
                            "y1": 5.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 3.8,
                            "y1": 4.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 2.8,
                            "y1": 3.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-04-01",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2014-03-01",
                            "x1": "2014-04-01",
                            "y0": 0.8,
                            "y1": 1.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-04-01",
                            "y0": -0.2,
                            "y1": 0.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2010-03-01",
                            "x1": "2010-04-01",
                            "y0": -0.2,
                            "y1": 0.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(1, 1, 0)"
                        },
                        {
                            "x0": "2014-03-01",
                            "x1": "2014-04-01",
                            "y0": 0.8,
                            "y1": 1.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(0, 255, 100)"
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~profbayo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-13 13:39:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "profbayo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T13:50:41.462265Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Arnault_Martin/30.embed",
            "fid": "Arnault_Martin:30",
            "filename": "Onk-time-series-Onkidonkey",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Arnault_Martin:30/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Arnault_Martin:30/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Arnault_Martin:30/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Arnault_Martin:30/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Arnault_Martin:30",
                "plots": "https://api.plotly.com/v2/plots/Arnault_Martin:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=Arnault_Martin"
            },
            "owner": "Arnault_Martin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "time_series_55, time_series_69, time_series_74, time_series_96",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Arnault_Martin/30/time-series-55-time-series-69-time-series-74-time-series-96/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:51:54.437Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Arnault_Martin/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b9dacff2-ddee-44fe-b11f-76bb8bb71976",
                        "mode": "lines",
                        "name": "time_series_55",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:31:0a6b5d",
                        "ysrc": "Arnault_Martin:31:72a2a1"
                    },
                    {
                        "uid": "3a66b3d2-01ca-4698-97f8-9cb6dbfc949c",
                        "mode": "lines",
                        "name": "time_series_69",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:31:0a6b5d",
                        "ysrc": "Arnault_Martin:31:6ce82f"
                    },
                    {
                        "uid": "e20d3fde-fc4b-4ed4-81dc-e8c37ec5d7fb",
                        "mode": "lines",
                        "name": "time_series_74",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:31:0a6b5d",
                        "ysrc": "Arnault_Martin:31:eaf352"
                    },
                    {
                        "uid": "4ef07b8a-7118-49b5-8959-b36905a6369f",
                        "mode": "lines",
                        "name": "time_series_96",
                        "type": "scatter",
                        "xsrc": "Arnault_Martin:31:0a6b5d",
                        "ysrc": "Arnault_Martin:31:260bc8"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Arnault_Martin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-05-19 10:36:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Arnault_Martin",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}