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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzEzJTNBMjclM0EzNi4wNjUyNDAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysxMyUzQTM4JTNBMDUuNTI1NTY0JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T13:38:05.525564Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~eliasgander/12.embed",
            "fid": "eliasgander:12",
            "filename": "churn_rate_example_2_plot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/eliasgander:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/eliasgander/12/2_OM7MKUHKUJJRJF7OCIZETXI2MH64RI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/eliasgander/12/8_J90JJAL4H0W7RZIC660XQUIZSH79VL.png",
                "list-thumb": "https://api.plotly.com/v2/files/eliasgander:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/eliasgander:12",
                "plots": "https://api.plotly.com/v2/plots/eliasgander:12",
                "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/12/",
            "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/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "eliasgander:9:491b6a",
                        "ysrc": "eliasgander:9:dfd4a1",
                        "stackgroup": 1
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 16,
                        "color": "rgb(0, 0, 0)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.6077654709020944,
                            531.7947870393326
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "Time [ms]"
                        },
                        "showline": true,
                        "zeroline": false,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 2,
                        "showspikes": false,
                        "zerolinewidth": 10
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.09165815022994381,
                            61.5026188042923
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "Memory [MB]"
                        },
                        "showline": true,
                        "zeroline": false,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 2,
                        "showspikes": false,
                        "zerolinewidth": 10
                    },
                    "margin": {
                        "b": 0,
                        "l": 50,
                        "r": 30,
                        "t": 0
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 320,
                            "y0": 40,
                            "y1": 40,
                            "line": {
                                "color": "#444444",
                                "width": 3
                            },
                            "type": "line",
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 110,
                            "x1": 320,
                            "y0": 45,
                            "y1": 45,
                            "line": {
                                "color": "#444444",
                                "width": 3
                            },
                            "type": "line",
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 200,
                            "x1": 320,
                            "y0": 50,
                            "y1": 50,
                            "line": {
                                "color": "rgb(255, 0, 0)",
                                "width": 3
                            },
                            "type": "line",
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 250,
                            "x1": 450,
                            "y0": 55,
                            "y1": 55,
                            "line": {
                                "color": "#444444",
                                "width": 3
                            },
                            "type": "line",
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 270,
                            "x1": 500,
                            "y0": 60,
                            "y1": 60,
                            "line": {
                                "color": "#444444",
                                "width": 3
                            },
                            "opacity": 0.5,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 110,
                            "x1": 110,
                            "y0": 0,
                            "y1": 45,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 200,
                            "x1": 200,
                            "y0": 0,
                            "y1": 50,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 250,
                            "x1": 250,
                            "y0": 0,
                            "y1": 55,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 320,
                            "x1": 320,
                            "y0": 0,
                            "y1": 50,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 270,
                            "x1": 270,
                            "y0": 0,
                            "y1": 60,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 450,
                            "x1": 450,
                            "y0": 0,
                            "y1": 55,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        },
                        {
                            "x0": 500,
                            "x1": 500,
                            "y0": 0,
                            "y1": 60,
                            "line": {
                                "dash": "dot",
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "pan",
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 346,
                            "y": 39.59632089933573,
                            "font": {
                                "size": 20
                            },
                            "text": "①",
                            "showarrow": false
                        },
                        {
                            "x": 346,
                            "y": 45.03321410321922,
                            "font": {
                                "size": 20
                            },
                            "text": "②",
                            "showarrow": false
                        },
                        {
                            "x": 346,
                            "y": 50.32703117015841,
                            "font": {
                                "size": 20,
                                "color": "rgb(255, 0, 0)"
                            },
                            "text": "③",
                            "showarrow": false
                        },
                        {
                            "x": 477.89848793779197,
                            "y": 55.0485436893204,
                            "font": {
                                "size": 20
                            },
                            "text": "④",
                            "showarrow": false
                        },
                        {
                            "x": 526.9326632721159,
                            "y": 60.12774655084314,
                            "font": {
                                "size": 20
                            },
                            "text": "⑤",
                            "showarrow": false
                        }
                    ]
                }
            },
            "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:37:15.666836Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thomaslv02/58.embed",
            "fid": "thomaslv02:58",
            "filename": "templumfminfreqfiltercomp",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/58/9_MLQXDFP798WA41S4EZIFC3ZCYOUK3P.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thomaslv02:58/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thomaslv02:58/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/58/9_MLQXDFP798WA41S4EZIFC3ZCYOUK3P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thomaslv02:58",
                "plots": "https://api.plotly.com/v2/plots/thomaslv02:58",
                "parent": "https://api.plotly.com/v2/folders/home?user=thomaslv02"
            },
            "owner": "thomaslv02",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Données théoriques avec fréquence filtrée (Teff, lum, fmin)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thomaslv02/58/donnees-theoriques-avec-frequence-filtree-teff-lum-fmin/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:37:48.283Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thomaslv02/58/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "496e6fa5-cdb4-4006-a103-5cc91d70c8e4",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "thomaslv02:59:385254",
                        "ysrc": "thomaslv02:59:95e30d",
                        "zsrc": "thomaslv02:59:94b800",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "size": 2,
                            "opacity": 0.8,
                            "colorbar": {
                                "x": 0,
                                "y": 0.5,
                                "title": {
                                    "text": "Masse (M/Msol)"
                                }
                            },
                            "colorsrc": "thomaslv02:59:0a224a",
                            "colorscale": "Viridis"
                        }
                    },
                    {
                        "uid": "d80b416b-7756-44cd-9706-4ca2c644bc6b",
                        "type": "surface",
                        "xsrc": "thomaslv02:59:9673f8,8c7c29,b1c1d5,0c3db3,5f76b1,ee9b80,fd57c9,b2cd29,17746a,489a5f,83c1fc,2d0528,0c1e7c,aae5b0,393b78,ef0a16,88cc71,0e205c,ceb827,2da9c5",
                        "ysrc": "thomaslv02:59:70277a,131d87,f62c2e,90d856,b4d413,f51f20,8f70a9,9b6cc9,51be29,ab7a71,852db5,6bbf1b,85472d,fbdf25,7966cb,e6c8bb,2810f1,e14693,59bdaf,616c21",
                        "zsrc": "thomaslv02:59:757372,c65ad1,6914de,0cda3d,cd8171,7815dd,995c0d,db4565,d9c295,db880f,af9769,7bf076,b490dd,7b887e,653f04,d46603,52b780,119fb0,a32842,3e7d7a",
                        "opacity": 0.7,
                        "colorbar": {
                            "x": 1,
                            "y": 0.5,
                            "title": {
                                "text": "fmin (uHz)"
                            }
                        },
                        "colorscale": "RdBu"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "Température (K)"
                            },
                            "autorange": "reversed",
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204, 204)"
                        },
                        "yaxis": {
                            "title": {
                                "text": "Luminosité (loglsl)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        },
                        "zaxis": {
                            "range": [
                                150.26539,
                                777.88556
                            ],
                            "title": {
                                "text": "fmin (uHz)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        }
                    },
                    "title": {
                        "text": "Données théoriques avec fréquence filtrée (Teff, lum, fmin)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thomaslv02",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.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-07 15:25:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thomaslv02",
                "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:35:19.552735Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thiefsy/4.embed",
            "fid": "thiefsy:4",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/thiefsy:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thiefsy:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thiefsy:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/thiefsy:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thiefsy:4",
                "plots": "https://api.plotly.com/v2/plots/thiefsy:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=thiefsy"
            },
            "owner": "thiefsy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Boxplot of Sale Price by garage size",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thiefsy/4/boxplot-of-sale-price-by-garage-size/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:35:19.975Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thiefsy/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "089759cf-ff1b-4848-876b-1db218619737",
                        "name": "no garage",
                        "type": "box",
                        "ysrc": "thiefsy:5:bf5adb",
                        "marker": {
                            "color": "rgb(214, 12, 140)"
                        }
                    },
                    {
                        "uid": "b81430de-738b-4557-b721-94d549a8939e",
                        "name": "1-car garage",
                        "type": "box",
                        "ysrc": "thiefsy:5:21539d",
                        "marker": {
                            "color": "rgb(0, 128, 128)"
                        }
                    },
                    {
                        "uid": "54676dca-eb44-4197-bdff-2dc0ecace652",
                        "name": "2-cars garage",
                        "type": "box",
                        "ysrc": "thiefsy:5:055e1e",
                        "marker": {
                            "color": "rgb(12, 102, 14)"
                        }
                    },
                    {
                        "uid": "38cddf10-231f-4c8c-bf8c-950a980c53bb",
                        "name": "3-cars garage",
                        "type": "box",
                        "ysrc": "thiefsy:5:52fadf",
                        "marker": {
                            "color": "rgb(10, 0, 100)"
                        }
                    },
                    {
                        "uid": "cae8347c-25f4-485a-a239-33be98269a82",
                        "name": "4-cars garage",
                        "type": "box",
                        "ysrc": "thiefsy:5:d8832b",
                        "marker": {
                            "color": "rgb(100, 0, 10)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Boxplot of Sale Price by garage size"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thiefsy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:31:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thiefsy",
                "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:34:27.391825Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thiefsy/2.embed",
            "fid": "thiefsy:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/thiefsy:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thiefsy:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thiefsy:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/thiefsy:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thiefsy:2",
                "plots": "https://api.plotly.com/v2/plots/thiefsy:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=thiefsy"
            },
            "owner": "thiefsy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Histogram of House Sale Price for both with and with no Central air conditioning",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thiefsy/2/histogram-of-house-sale-price-for-both-with-and-with-no-central-air-conditioning/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:34:27.865Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thiefsy/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4f1c0051-ce8a-4536-8851-abf99e7c8a00",
                        "name": "With Central air conditioning",
                        "type": "histogram",
                        "xsrc": "thiefsy:3:bf5997",
                        "opacity": 0.75
                    },
                    {
                        "uid": "ec5ee74e-2b0d-43d5-bcfb-d315e550f6f4",
                        "name": "No Central air conditioning",
                        "type": "histogram",
                        "xsrc": "thiefsy:3:e2ecad",
                        "opacity": 0.75
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Histogram of House Sale Price for both with and with no Central air conditioning"
                    },
                    "barmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thiefsy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:31:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thiefsy",
                "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:33:03.362402Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thiefsy/0.embed",
            "fid": "thiefsy:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/thiefsy:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/thiefsy/0/2_GOLKVOH93FDA16BN2ZCZKK28RT5AXG.png",
                "block-thumb": "https://api.plotly.com/v2/files/thiefsy:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/thiefsy:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thiefsy:0",
                "plots": "https://api.plotly.com/v2/plots/thiefsy:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=thiefsy"
            },
            "owner": "thiefsy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Boxplot of Sale Price by air conditioning",
            "views": 19,
            "web_url": "https://chart-studio.plotly.com/~thiefsy/0/boxplot-of-sale-price-by-air-conditioning/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:33:03.809Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thiefsy/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1b099d2e-1532-4674-8d1b-1113e86878a5",
                        "name": "With air conditioning",
                        "type": "box",
                        "ysrc": "thiefsy:1:5f8073",
                        "marker": {
                            "color": "rgb(214, 12, 140)"
                        }
                    },
                    {
                        "uid": "e3fccebd-0164-44d6-b3e6-c45ee3320e78",
                        "name": "no air conditioning",
                        "type": "box",
                        "ysrc": "thiefsy:1:aa9352",
                        "marker": {
                            "color": "rgb(0, 128, 128)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Boxplot of Sale Price by air conditioning"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thiefsy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 13:31:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thiefsy",
                "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:33:02.431459Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thomaslv02/56.embed",
            "fid": "thomaslv02:56",
            "filename": "templumfmaxfreqfiltercomp",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/56/9_DNDYIHOKOSJKTBI9LKKVMJ9CIIZJYO.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/thomaslv02:56/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/thomaslv02:56/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/thomaslv02/56/9_DNDYIHOKOSJKTBI9LKKVMJ9CIIZJYO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thomaslv02:56",
                "plots": "https://api.plotly.com/v2/plots/thomaslv02:56",
                "parent": "https://api.plotly.com/v2/folders/home?user=thomaslv02"
            },
            "owner": "thomaslv02",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Données théoriques avec fréquence filtrée (Teff, lum, fmax)",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thomaslv02/56/donnees-theoriques-avec-frequence-filtree-teff-lum-fmax/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:33:40.087Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thomaslv02/56/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4a6d53d9-cc10-429f-9055-229c7d1b8df4",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "thomaslv02:57:b08f69",
                        "ysrc": "thomaslv02:57:e25da9",
                        "zsrc": "thomaslv02:57:bfc476",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "size": 2,
                            "opacity": 0.8,
                            "colorbar": {
                                "x": 0,
                                "y": 0.5,
                                "title": {
                                    "text": "Masse (M/Msol)"
                                }
                            },
                            "colorsrc": "thomaslv02:57:940be0",
                            "colorscale": "Viridis"
                        }
                    },
                    {
                        "uid": "82cd1b67-9da6-4759-8e4c-1f3c257eabff",
                        "type": "surface",
                        "xsrc": "thomaslv02:57:9283a0,67a8a5,7117b9,02506c,eb76e5,ff1121,fe7e75,0794af,ae4c39,d9bb14,005a24,fbe00d,36bc88,a287cc,5b6d64,277718,0ea863,b8988e,08de4d,1293f0",
                        "ysrc": "thomaslv02:57:831512,a09978,c38b0c,140ea8,ef2945,c6f783,d82726,299e77,4ea185,7f2e26,bdb745,c8c900,da74e6,f0ece9,26c50c,d6dbba,6f955c,3970ef,ad2891,aed1f0",
                        "zsrc": "thomaslv02:57:df4c9b,da1218,fe606b,f4d15e,ec6176,edef9f,21c462,9c8d1a,6f5dd9,cdad62,666837,11cd26,b781a6,41bc64,59fe43,a493fe,6ef4b6,1103de,48fae7,1e6131",
                        "opacity": 0.7,
                        "colorbar": {
                            "x": 1,
                            "y": 0.5,
                            "title": {
                                "text": "fmax (uHz)"
                            }
                        },
                        "colorscale": "RdBu"
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "Température (K)"
                            },
                            "autorange": "reversed",
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204, 204)"
                        },
                        "yaxis": {
                            "title": {
                                "text": "Luminosité (loglsl)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        },
                        "zaxis": {
                            "range": [
                                4.65380558265187e-310,
                                777.88556
                            ],
                            "title": {
                                "text": "fmax (uHz)"
                            },
                            "gridcolor": "rgb(255, 255, 255)",
                            "zerolinecolor": "rgb(255, 255, 255)",
                            "showbackground": true,
                            "backgroundcolor": "rgb(204, 204,204)"
                        }
                    },
                    "title": {
                        "text": "Données théoriques avec fréquence filtrée (Teff, lum, fmax)"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thomaslv02",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.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-07 15:25:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thomaslv02",
                "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:31:26.931131Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~parrianitiziano/346.embed",
            "fid": "parrianitiziano:346",
            "filename": "3842399_baseline_new_gamma_2217959_ca_new_gamma",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/parrianitiziano/346/9_YOTD5VJ0Z1FO6H95Q29300D81MJSIL.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/parrianitiziano:346/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/parrianitiziano:346/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/parrianitiziano/346/9_YOTD5VJ0Z1FO6H95Q29300D81MJSIL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/parrianitiziano:346",
                "plots": "https://api.plotly.com/v2/plots/parrianitiziano:346",
                "parent": "https://api.plotly.com/v2/folders/home?user=parrianitiziano"
            },
            "owner": "parrianitiziano",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "3842399_baseline_new_gamma_2217959_ca_new_gamma",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~parrianitiziano/346/_3842399-baseline-new-gamma-2217959-ca-new-gamma/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:31:27.572Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~parrianitiziano/346/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5b0ab7e0-d761-4542-827a-c719c52bf6d3",
                        "mode": "markers",
                        "name": "2217959_ca_new_gamma",
                        "type": "scattermapbox",
                        "latsrc": "parrianitiziano:347:a1746f",
                        "lonsrc": "parrianitiziano:347:704357",
                        "marker": {
                            "size": 18,
                            "colorsrc": "parrianitiziano:347:a376ec",
                            "colorscale": "Jet"
                        },
                        "textsrc": "parrianitiziano:347:bad071"
                    },
                    {
                        "uid": "84484511-ea6d-470d-9fa9-6f2043b9da8c",
                        "mode": "markers",
                        "name": "3842399_baseline_new_gamma",
                        "type": "scattermapbox",
                        "latsrc": "parrianitiziano:347:c7f2a6",
                        "lonsrc": "parrianitiziano:347:26faa1",
                        "marker": {
                            "size": 12,
                            "colorsrc": "parrianitiziano:347:954236",
                            "colorscale": "Jet"
                        },
                        "textsrc": "parrianitiziano:347:48e4ae"
                    },
                    {
                        "uid": "b950089f-d0e6-45d3-b631-e8f575f9e172",
                        "mode": "markers",
                        "name": "depots",
                        "type": "scattermapbox",
                        "latsrc": "parrianitiziano:347:b9b817",
                        "lonsrc": "parrianitiziano:347:d8ff89",
                        "marker": {
                            "size": 30,
                            "colorsrc": "parrianitiziano:347:a536f8",
                            "colorscale": "Jet"
                        },
                        "textsrc": "parrianitiziano:347:eecfb1"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "3842399_baseline_new_gamma_2217959_ca_new_gamma"
                    },
                    "mapbox": {
                        "zoom": 10,
                        "pitch": 0,
                        "center": {
                            "lat": 44.49946897,
                            "lon": 11.34559726
                        },
                        "bearing": 0
                    },
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~parrianitiziano",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-10-10 17:07:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "parrianitiziano",
                "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:30:42.633397Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~testing.web017/4.embed",
            "fid": "testing.web017:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/testing.web017/4/9_HS525CARY2OC7SR4D4Q57YRXE74FD7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/testing.web017/4/2_CA4E45PND5APFP2VL616HD3KA2DZJA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/testing.web017/4/8_5JQV7BF1T1UESADFYK1AWJRD0UL1TS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/testing.web017/4/9_HS525CARY2OC7SR4D4Q57YRXE74FD7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/testing.web017:4",
                "plots": "https://api.plotly.com/v2/plots/testing.web017:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=testing.web017"
            },
            "owner": "testing.web017",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~testing.web017/4/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:30:42.648Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~testing.web017/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "dx": 20,
                        "x0": 10,
                        "line": {
                            "shape": "linear"
                        },
                        "mode": "markers",
                        "name": "Events",
                        "type": "scatter",
                        "xsrc": "testing.web017:3:b7d56f",
                        "ysrc": "testing.web017:3:239f8d",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 11,
                            "color": "rgb(180, 31, 143)",
                            "maxdisplayed": 0
                        },
                        "error_x": {
                            "type": "percent",
                            "color": "#1f77b4",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoveron": "points",
                        "opacity": 0.97,
                        "textsrc": "testing.web017:3:3ccff8",
                        "visible": true,
                        "hoverinfo": "text",
                        "stackgaps": "interpolate",
                        "cliponaxis": true,
                        "hoverlabel": {
                            "align": "left"
                        },
                        "stackgroup": "",
                        "orientation": "h",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Hover over the points to see the text"
                    },
                    "xaxis": {
                        "type": "date",
                        "dtick": 0.5,
                        "range": [
                            "2019-06-10 09:24:56.5793",
                            "2019-06-30 23:30:27.258"
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Event Dates"
                        },
                        "nticks": 0,
                        "tickmode": "auto",
                        "autorange": false,
                        "showspikes": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.951627088830255,
                            1.3227792436235708
                        ],
                        "showline": false,
                        "autorange": false,
                        "showspikes": false,
                        "showticklabels": false
                    },
                    "autosize": true,
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": "2019-06-20 05:30:00.03",
                            "y": 0.2,
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Event Two",
                            "xref": "x",
                            "yref": "paper",
                            "align": "center",
                            "axref": "x",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 1
                        },
                        {
                            "x": "2019-06-15 05:30:00.01",
                            "y": 0.22,
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Event One",
                            "yref": "paper",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": "2019-06-25 05:30:00.05",
                            "y": 0.2,
                            "ax": "2019-06-25 18:21:53.2153",
                            "ay": 1,
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Event Three",
                            "xref": "x",
                            "yref": "paper",
                            "align": "center",
                            "axref": "x",
                            "ayref": "pixel",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "arrowhead": 0,
                            "showarrow": false
                        }
                    ],
                    "hidesources": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~testing.web017",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.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-09-07 05:40:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "testing.web017",
                "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:30:03.202957Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yiwilliamzhang/48.embed",
            "fid": "yiwilliamzhang:48",
            "filename": "plot from API (24)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yiwilliamzhang:48/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yiwilliamzhang:48/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yiwilliamzhang/48/8_ST83H34UB6BW7LFUAXRBQP7JEZS7SP.png",
                "list-thumb": "https://api.plotly.com/v2/files/yiwilliamzhang:48/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yiwilliamzhang:48",
                "plots": "https://api.plotly.com/v2/plots/yiwilliamzhang:48",
                "parent": "https://api.plotly.com/v2/folders/home?user=yiwilliamzhang"
            },
            "owner": "yiwilliamzhang",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "IWC, TCA, SSA, RBA, TCA, GFK, JDA, CORAL, JGSA, JTM, MEDA",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~yiwilliamzhang/48/iwc-tca-ssa-rba-tca-gfk-jda-coral-jgsa-jtm-meda/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:30:03.676Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yiwilliamzhang/48/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "109108ce-55c7-4fa1-b071-e781c68df463",
                        "name": "IWC",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:e2bcee",
                        "marker": {
                            "color": "hsl(0.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "717a7292-b4f6-4cb5-976d-79749d12b42d",
                        "name": "TCA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:f49978",
                        "marker": {
                            "color": "hsl(36.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "cd274350-8475-4630-8d72-1deed2a78cbf",
                        "name": "SSA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:42af81",
                        "marker": {
                            "color": "hsl(72.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "739afbc4-19de-4531-95f9-a85928f4bdc0",
                        "name": "RBA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:03189e",
                        "marker": {
                            "color": "hsl(108.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "c920566d-94e4-48d0-aabf-50f7a0f99ae1",
                        "name": "TCA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:55a030",
                        "marker": {
                            "color": "hsl(144.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "fadad488-f1f2-4b33-b69c-a697e7f4cad5",
                        "name": "GFK",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:86312e",
                        "marker": {
                            "color": "hsl(180.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "959a30ff-3071-4dfa-b778-bc3d8cd57b67",
                        "name": "JDA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:1bb01e",
                        "marker": {
                            "color": "hsl(216.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "8a9c8b59-d1c4-4e70-aeaf-0d51d7c0f9c3",
                        "name": "CORAL",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:e4b6ad",
                        "marker": {
                            "color": "hsl(252.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "8bb8ddff-4ce2-427a-97ea-dd06f0e51259",
                        "name": "JGSA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:8d1b65",
                        "marker": {
                            "color": "hsl(288.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "3f3386a7-7022-4388-b598-cf58a8f9ea8f",
                        "name": "JTM",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:986986",
                        "marker": {
                            "color": "hsl(324.0,50%,50%)"
                        },
                        "orientation": "h"
                    },
                    {
                        "uid": "37e38ef5-b969-4388-9d0c-ed921391e826",
                        "name": "MEDA",
                        "type": "box",
                        "xsrc": "yiwilliamzhang:49:639d53",
                        "marker": {
                            "color": "hsl(360.0,50%,50%)"
                        },
                        "orientation": "h"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yiwilliamzhang",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-27 12:36:52",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yiwilliamzhang",
                "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:27:36.065240Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rajdeep.sarkar/38.embed",
            "fid": "rajdeep.sarkar:38",
            "filename": "plot from API (9)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/rajdeep.sarkar:38/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/rajdeep.sarkar:38/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/rajdeep.sarkar:38/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/rajdeep.sarkar:38/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rajdeep.sarkar:38",
                "plots": "https://api.plotly.com/v2/plots/rajdeep.sarkar:38",
                "parent": "https://api.plotly.com/v2/folders/home?user=rajdeep.sarkar"
            },
            "owner": "rajdeep.sarkar",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Observed vs Event Date",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~rajdeep.sarkar/38/observed-vs-event-date/",
            "world_readable": true,
            "date_modified": "2019-06-17T13:27:36.475Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rajdeep.sarkar/38/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "aa233b9c-9103-11e9-8749-9cad9789cfee",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Frequency",
                        "type": "scatter",
                        "xsrc": "rajdeep.sarkar:39:499428",
                        "ysrc": "rajdeep.sarkar:39:e5d5e5",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "uid": "aa2e614c-9103-11e9-bcbb-9cad9789cfee",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Frequency",
                        "type": "scatter",
                        "xsrc": "rajdeep.sarkar:39:499428",
                        "ysrc": "rajdeep.sarkar:39:e49909",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "aa3c9b98-9103-11e9-add1-9cad9789cfee",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Frequency",
                        "type": "scatter",
                        "xsrc": "rajdeep.sarkar:39:499428",
                        "ysrc": "rajdeep.sarkar:39:e1b34a",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "aa457636-9103-11e9-879f-9cad9789cfee",
                        "line": {
                            "dash": "solid",
                            "color": "rgba (31, 119, 180, 1)",
                            "width": 1.5
                        },
                        "mode": "lines",
                        "name": "Frequency",
                        "type": "scatter",
                        "xsrc": "rajdeep.sarkar:39:499428",
                        "ysrc": "rajdeep.sarkar:39:3b69f7",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    }
                ],
                "layout": {
                    "width": 432,
                    "xaxis": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-01-15 13:12:00",
                            "1971-09-11 10:48:00"
                        ],
                        "ticks": "inside",
                        "title": "Event Date",
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -2.1500000000000004,
                            89.15
                        ],
                        "ticks": "inside",
                        "title": "Observed",
                        "anchor": "x",
                        "domain": [
                            0.8120532382894842,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "height": 288,
                    "margin": {
                        "b": 41,
                        "l": 47,
                        "r": 14,
                        "t": 14,
                        "pad": 0
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-01-15 13:12:00",
                            "1971-09-11 10:48:00"
                        ],
                        "ticks": "inside",
                        "title": "Event Date",
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "xaxis3": {
                        "side": "top",
                        "type": "date",
                        "range": [
                            "1970-01-15 13:12:00",
                            "1971-09-11 10:48:00"
                        ],
                        "ticks": "inside",
                        "title": "Event Date",
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "xaxis4": {
                        "side": "bottom",
                        "type": "date",
                        "range": [
                            "1970-01-15 13:12:00",
                            "1971-09-11 10:48:00"
                        ],
                        "ticks": "inside",
                        "title": "Event Date",
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            5.442788461538462,
                            62.97067307692308
                        ],
                        "ticks": "inside",
                        "title": "Trend",
                        "anchor": "x2",
                        "domain": [
                            0.5413688255263227,
                            0.7293155872368386
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.9135847880850303,
                            1.1239523229376263
                        ],
                        "ticks": "inside",
                        "title": "Seasonal",
                        "anchor": "x3",
                        "domain": [
                            0.27068441276316135,
                            0.45863117447367713
                        ],
                        "mirror": "ticks",
                        "nticks": 4,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0.2625444105952627,
                            1.981006846405112
                        ],
                        "ticks": "inside",
                        "title": "Residual",
                        "anchor": "x4",
                        "domain": [
                            0.0,
                            0.18794676171051578
                        ],
                        "mirror": "ticks",
                        "nticks": 5,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 10.0
                        },
                        "zeroline": false,
                        "titlefont": {
                            "size": 10.0,
                            "color": "#000000"
                        }
                    },
                    "autosize": false,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 288,
            "width": 432,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rajdeep.sarkar",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-11-27 18:17:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rajdeep.sarkar",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}