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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTAzLTIwKzIwJTNBMjglM0E0Mi45MjUyNzIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wMy0yMCsyMCUzQTMyJTNBMjEuNzAwMTIwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-03-20T20:32:21.700120Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~IslamEssam/7.embed",
            "fid": "IslamEssam:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/IslamEssam:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/IslamEssam:7/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/IslamEssam:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/IslamEssam:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/IslamEssam:7",
                "plots": "https://api.plotly.com/v2/plots/IslamEssam:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=IslamEssam"
            },
            "owner": "IslamEssam",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~IslamEssam/7/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:32:21.714Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~IslamEssam/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "276a17",
                        "fill": "none",
                        "line": {
                            "width": 4.1
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "IslamEssam:6:15a25f",
                        "ysrc": "IslamEssam:6:dc50c5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "#636efa"
                        },
                        "hoveron": "points+fills",
                        "textsrc": "IslamEssam:6:dc50c5",
                        "hoverinfo": "x+y+name",
                        "showlegend": false,
                        "hovertemplate": ""
                    },
                    {
                        "uid": "61f00f",
                        "mode": "lines",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "276a17",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 1.1111122702975246e-19,
                                        "value": 1
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 1.6197105494584622e-18,
                                        "value": 0.05999999999999998
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -0.12033341159896715,
                            27.820497769429444
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "C(mm)<br>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 10,
                        "tickmode": "linear",
                        "autorange": false,
                        "gridwidth": 0,
                        "automargin": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -1.4704155905142056,
                                27.820497769429444
                            ],
                            "yaxis": {
                                "rangemode": "match"
                            },
                            "visible": true,
                            "autorange": true
                        },
                        "zerolinewidth": 10,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            26
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "M(mm)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 10,
                        "tickmode": "linear",
                        "autorange": false,
                        "showspikes": true
                    },
                    "legend": {
                        "x": 0.94,
                        "y": 1,
                        "font": {
                            "size": 11
                        },
                        "orientation": "v"
                    },
                    "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"
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgb(247, 252, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~IslamEssam",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-10-22 19:01:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "IslamEssam",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:32:02.354847Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/30.embed",
            "fid": "i.f.student:30",
            "filename": "plot from API (14)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/30/9_8NOF17D3TA2KYZIN6JYGFLZ408DGTH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/30/2_B1HU6R9BTN401SB2RLQ0UFBP6HPK1C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/30/8_0PMC9NQDOC0YBUZ51ZK4VFC4HME4DF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/30/9_8NOF17D3TA2KYZIN6JYGFLZ408DGTH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:30",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Figure 8 <br>Target 2.4: Higher number of undernourished people in countries with climate extremes",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/30/figure-8-target-24-higher-number-of-undernourished-people-in-countries-with-clim/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:32:02.897Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~i.f.student/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a887adf1-e046-4dda-86ec-0a657fb488e5",
                        "name": "Absolute",
                        "type": "bar",
                        "xsrc": "i.f.student:31:a26e52",
                        "ysrc": "i.f.student:31:9b1c5e"
                    },
                    {
                        "uid": "e22d5652-a584-469e-81e1-d3db18344807",
                        "mode": "markers",
                        "name": "Absolute",
                        "type": "scatter",
                        "xsrc": "i.f.student:31:a26e52",
                        "ysrc": "i.f.student:31:9b1c5e",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgb(255,127,14)",
                                "width": 10
                            }
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Figure 8 <br>Target 2.4: Higher number of undernourished people in countries with climate extremes"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "rgb(31,119,180)"
                            },
                            "text": "Absolute"
                        },
                        "tickfont": {
                            "color": "rgb(31,119,180)"
                        }
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "color": "rgb(255,127,14)"
                            },
                            "text": "Percentage"
                        },
                        "anchor": "free",
                        "position": 1,
                        "showgrid": false,
                        "tickfont": {
                            "color": "rgb(255,127,14)"
                        },
                        "overlaying": "y"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~i.f.student",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 16:46:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "i.f.student",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:31:39.184375Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~i.f.student/28.embed",
            "fid": "i.f.student:28",
            "filename": "plot from API (13)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/i.f.student/28/9_WRKBD39H2PXUDH6SI66ZD1QV518PLZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/i.f.student/28/2_1MMOV4PEH9YDPIO4NRR4RXRP6JMKKR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/28/8_CWHWQZNAEPJ6CBHURF9PYACFMZ61R7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/i.f.student/28/9_WRKBD39H2PXUDH6SI66ZD1QV518PLZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/i.f.student:28",
                "plots": "https://api.plotly.com/v2/plots/i.f.student:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=i.f.student"
            },
            "owner": "i.f.student",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Figure 8 <br>Target 2.4: Higher number of undernourished people in countries with climate extremes",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~i.f.student/28/figure-8-target-24-higher-number-of-undernourished-people-in-countries-with-clim/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:31:39.769Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~i.f.student/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "84db103e-a356-46e8-850d-e896f2e9aed1",
                        "name": "Absolute",
                        "type": "bar",
                        "xsrc": "i.f.student:29:75ea8a",
                        "ysrc": "i.f.student:29:072c95"
                    },
                    {
                        "uid": "e6f59071-23d4-4927-8bac-d0a965ccab22",
                        "mode": "markers",
                        "name": "Absolute",
                        "type": "scatter",
                        "xsrc": "i.f.student:29:75ea8a",
                        "ysrc": "i.f.student:29:072c95",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgb(255,127,14)",
                                "width": 10
                            }
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Figure 8 <br>Target 2.4: Higher number of undernourished people in countries with climate extremes"
                    },
                    "yaxis": {
                        "range": [
                            0,
                            800000000
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(31,119,180)"
                            },
                            "text": "Absolute"
                        },
                        "tickfont": {
                            "color": "rgb(31,119,180)"
                        }
                    },
                    "yaxis2": {
                        "side": "right",
                        "range": [
                            12.6,
                            17.3
                        ],
                        "title": {
                            "font": {
                                "color": "rgb(255,127,14)"
                            },
                            "text": "Percentage"
                        },
                        "anchor": "free",
                        "position": 1,
                        "showgrid": false,
                        "tickfont": {
                            "color": "rgb(255,127,14)"
                        },
                        "overlaying": "y"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~i.f.student",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/82.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 16:46:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "i.f.student",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:30:05.441676Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~srikanthvaibhav/0.embed",
            "fid": "srikanthvaibhav:0",
            "filename": "DOS_Si",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/srikanthvaibhav/0/9_6SH4BH9Z2SQELZ817UY6JB79BUSDTZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/srikanthvaibhav/0/2_KD51C0L135TX5L74JPP8RC7UMCKWBP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/srikanthvaibhav/0/8_Q0QRV0DEZPJOUE986Q1BIRS39NFZJC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/srikanthvaibhav/0/9_6SH4BH9Z2SQELZ817UY6JB79BUSDTZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/srikanthvaibhav:0",
                "plots": "https://api.plotly.com/v2/plots/srikanthvaibhav:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=srikanthvaibhav"
            },
            "owner": "srikanthvaibhav",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Density of states of Silicon",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~srikanthvaibhav/0/density-of-states-of-silicon/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:30:06.071Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~srikanthvaibhav/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9a0f8cc2-3df2-46b6-8325-e934000ea7b1",
                        "fill": "tozeroy",
                        "line": {
                            "color": "#444444"
                        },
                        "mode": "lines",
                        "name": "total DOS",
                        "type": "scatter",
                        "xsrc": "srikanthvaibhav:1:ce270e",
                        "ysrc": "srikanthvaibhav:1:41d22b"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Density of states of Silicon"
                    },
                    "xaxis": {
                        "range": [
                            0.01,
                            3
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Density of states"
                        },
                        "mirror": "ticks",
                        "showgrid": true,
                        "showline": true,
                        "linewidth": 2,
                        "tickwidth": 2
                    },
                    "yaxis": {
                        "ticks": "inside",
                        "title": {
                            "text": "$E - E_f \\quad / \\quad \\text{eV}$"
                        },
                        "mirror": "ticks",
                        "showgrid": true,
                        "showline": true,
                        "linewidth": 2,
                        "tickwidth": 2,
                        "zerolinewidth": 2
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~srikanthvaibhav",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-20 20:25:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "srikanthvaibhav",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:29:31.204437Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~salcalvo/20.embed",
            "fid": "salcalvo:20",
            "filename": "foo",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/salcalvo/20/9_QORFX5E13R5QXM1RTQRDIHUXQ7UFAE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/salcalvo/20/2_V68DAUH3EBDVOFQHVUZKAET80PQQEO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/salcalvo/20/8_1SDHD8OSJ85H1DT0WL6VTW8W62SVSO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/salcalvo/20/9_QORFX5E13R5QXM1RTQRDIHUXQ7UFAE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/salcalvo:20",
                "plots": "https://api.plotly.com/v2/plots/salcalvo:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=salcalvo"
            },
            "owner": "salcalvo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "VWAP vs. Volume-Weighted Median (10 minute fix period)",
            "views": 236,
            "web_url": "https://chart-studio.plotly.com/~salcalvo/20/vwap-vs-volume-weighted-median-10-minute-fix-period/",
            "world_readable": true,
            "date_modified": "2019-04-02T16:22:22.115Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~salcalvo/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "dd5067f9-dd0f-48fc-8628-3b14d7d1dc2b",
                        "name": "Bitstamp",
                        "type": "histogram",
                        "xsrc": "salcalvo:21:9fdcd4",
                        "xbins": {
                            "end": 10,
                            "size": 0.1,
                            "start": -10
                        },
                        "opacity": 0.6,
                        "histnorm": "probability"
                    },
                    {
                        "uid": "0520c606-d07d-42b1-b729-809cfa314c0b",
                        "name": "Coinbase",
                        "type": "histogram",
                        "xsrc": "salcalvo:21:18fd6e",
                        "xbins": {
                            "end": 10,
                            "size": 0.1,
                            "start": -10
                        },
                        "opacity": 0.6,
                        "histnorm": "probability"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "VWAP vs. Volume-Weighted Median (10 minute fix period)"
                    },
                    "barmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~salcalvo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-06 00:34:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "salcalvo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:29:17.528031Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PythonPlotBot/3248.embed",
            "fid": "PythonPlotBot:3248",
            "filename": "plot from API (474)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3248/9_R7UYEQHNSHEQGZ02ADEVRPCLUWX9DW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3248/2_6XSWJ7QFG3U809F9P2ELW6L74V0SWU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3248/8_CKB221IKAJFWLOJTC2FCKHMWXVTD0A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3248/9_R7UYEQHNSHEQGZ02ADEVRPCLUWX9DW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PythonPlotBot:3248",
                "plots": "https://api.plotly.com/v2/plots/PythonPlotBot:3248",
                "parent": "https://api.plotly.com/v2/folders/home?user=PythonPlotBot"
            },
            "owner": "PythonPlotBot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Double Y Axis Example",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~PythonPlotBot/3248/double-y-axis-example/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:29:18.848Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PythonPlotBot/3248/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ce03280b-ac98-4ec7-8d0c-546bbcc2c2cb",
                        "name": "yaxis data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:a18002"
                    },
                    {
                        "uid": "bbc56428-4638-4d4f-894a-c036fd35d3e1",
                        "name": "yaxis2 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:c88108",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "96884a71-c319-4f0a-9126-63ab75f2078d",
                        "name": "yaxis3 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:a18002",
                        "xaxis": "x2",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "234fb2d1-fe64-4ae2-acae-0e505567ced9",
                        "name": "yaxis4 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:c88108",
                        "xaxis": "x2",
                        "yaxis": "y4"
                    },
                    {
                        "uid": "af9597f5-f594-4334-a2a6-76b599877d88",
                        "name": "yaxis5 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:a18002",
                        "xaxis": "x3",
                        "yaxis": "y5"
                    },
                    {
                        "uid": "4231ba36-0141-48f1-9919-fba5c512cd21",
                        "name": "yaxis6 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:c88108",
                        "xaxis": "x3",
                        "yaxis": "y6"
                    },
                    {
                        "uid": "f43edeef-8e1e-4f36-84fc-4379aab95773",
                        "name": "yaxis7 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:a18002",
                        "xaxis": "x4",
                        "yaxis": "y7"
                    },
                    {
                        "uid": "79769b46-a2bc-4a81-8846-2d7339a7dc7a",
                        "name": "yaxis8 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3252:8137e4",
                        "ysrc": "PythonPlotBot:3252:c88108",
                        "xaxis": "x4",
                        "yaxis": "y8"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Double Y Axis Example"
                    },
                    "width": 1000,
                    "xaxis": {
                        "title": {
                            "text": "xaxis title"
                        },
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis": {
                        "type": "log",
                        "title": {
                            "text": "yaxis title"
                        },
                        "anchor": "x",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "x": 1.1
                    },
                    "xaxis2": {
                        "title": {
                            "text": "xaxis2 title"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "title": {
                            "text": "xaxis3 title"
                        },
                        "anchor": "y5",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "xaxis4": {
                        "title": {
                            "text": "xaxis4, title"
                        },
                        "anchor": "y7",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "text": "yaxis2 title"
                        },
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "type": "log",
                        "title": {
                            "text": "yaxis3 title"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "side": "right",
                        "title": {
                            "text": "yaxis4 title"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.6,
                            1.0
                        ],
                        "overlaying": "y3"
                    },
                    "yaxis5": {
                        "type": "log",
                        "title": {
                            "text": "yaxis5 title"
                        },
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis6": {
                        "side": "right",
                        "title": {
                            "text": "yaxis6 title"
                        },
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.4
                        ],
                        "overlaying": "y5"
                    },
                    "yaxis7": {
                        "type": "log",
                        "title": {
                            "text": "yaxis7 title"
                        },
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis8": {
                        "side": "right",
                        "title": {
                            "text": "yaxis8 title"
                        },
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.4
                        ],
                        "overlaying": "y7"
                    }
                }
            },
            "height": 500,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PythonPlotBot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-02-14 21:07:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PythonPlotBot",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:29:05.678314Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peaddiso/78.embed",
            "fid": "peaddiso:78",
            "filename": "plot from API (12)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peaddiso/78/9_V0E5EOUWRNJWB61I9GCTLLQFXZACB0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peaddiso/78/2_UEGR4FJ1B5C1DZJX8ORLWSIBDVQ8XN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/78/8_NYDUBDUSNHROMBIT68XGYLIQ7ZQRK8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/78/9_V0E5EOUWRNJWB61I9GCTLLQFXZACB0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peaddiso:78",
                "plots": "https://api.plotly.com/v2/plots/peaddiso:78",
                "parent": "https://api.plotly.com/v2/folders/home?user=peaddiso"
            },
            "owner": "peaddiso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Summary of Positive and Negative Reviews",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~peaddiso/78/summary-of-positive-and-negative-reviews/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:29:06.224Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peaddiso/78/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c4245263-798d-43f8-b9a2-90f0bddc6623",
                        "type": "bar",
                        "xsrc": "peaddiso:79:8acb52",
                        "ysrc": "peaddiso:79:3f5d69",
                        "marker": {
                            "colorsrc": "peaddiso:79:b04cd8",
                            "showscale": true,
                            "colorscale": "Portland",
                            "reversescale": true
                        },
                        "textsrc": "peaddiso:79:34e28c"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Summary of Positive and Negative Reviews"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Review Opinion"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of Reviews"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peaddiso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-17 02:28:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peaddiso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:28:53.286921Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peaddiso/76.embed",
            "fid": "peaddiso:76",
            "filename": "plot from API (11)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peaddiso/76/9_YI78RNU9GGXEVGWHFARQV6C1QHIZKH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peaddiso/76/2_79ZD9YTETEHYUCKGNJFWYUSTM1MB7A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/76/8_ZBCOV5KRWLRMDN2K7MVL5PPNS1I52M.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/76/9_YI78RNU9GGXEVGWHFARQV6C1QHIZKH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peaddiso:76",
                "plots": "https://api.plotly.com/v2/plots/peaddiso:76",
                "parent": "https://api.plotly.com/v2/folders/home?user=peaddiso"
            },
            "owner": "peaddiso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Negative Reviews for Different Hotel Branches",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~peaddiso/76/negative-reviews-for-different-hotel-branches/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:28:53.820Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peaddiso/76/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c6e73b63-e34a-4c3c-82bc-44eccdbfa1a2",
                        "type": "bar",
                        "xsrc": "peaddiso:77:657564",
                        "ysrc": "peaddiso:77:487234",
                        "textsrc": "peaddiso:77:03a108"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Negative Reviews for Different Hotel Branches"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Hotel"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of Reviews"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peaddiso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-17 02:28:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peaddiso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:28:46.937397Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~PythonPlotBot/3247.embed",
            "fid": "PythonPlotBot:3247",
            "filename": "plot from API (473)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3247/9_B5GOTIQCH27LSB9YL5EDIK5ENQ1ON5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3247/2_MCIR9L93AUWS0VPFLCL0XWMBKMGSFQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3247/8_LCK8OMM8UQHZMNZIDCW6TXE1NIERGI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/PythonPlotBot/3247/9_B5GOTIQCH27LSB9YL5EDIK5ENQ1ON5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/PythonPlotBot:3247",
                "plots": "https://api.plotly.com/v2/plots/PythonPlotBot:3247",
                "parent": "https://api.plotly.com/v2/folders/home?user=PythonPlotBot"
            },
            "owner": "PythonPlotBot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Double Y Axis Example",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~PythonPlotBot/3247/double-y-axis-example/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:28:48.276Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~PythonPlotBot/3247/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "ce03280b-ac98-4ec7-8d0c-546bbcc2c2cb",
                        "name": "yaxis data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:70886e"
                    },
                    {
                        "uid": "bbc56428-4638-4d4f-894a-c036fd35d3e1",
                        "name": "yaxis2 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:c4b93c",
                        "yaxis": "y2"
                    },
                    {
                        "uid": "96884a71-c319-4f0a-9126-63ab75f2078d",
                        "name": "yaxis3 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:70886e",
                        "xaxis": "x2",
                        "yaxis": "y3"
                    },
                    {
                        "uid": "234fb2d1-fe64-4ae2-acae-0e505567ced9",
                        "name": "yaxis4 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:c4b93c",
                        "xaxis": "x2",
                        "yaxis": "y4"
                    },
                    {
                        "uid": "af9597f5-f594-4334-a2a6-76b599877d88",
                        "name": "yaxis5 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:70886e",
                        "xaxis": "x3",
                        "yaxis": "y5"
                    },
                    {
                        "uid": "4231ba36-0141-48f1-9919-fba5c512cd21",
                        "name": "yaxis6 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:c4b93c",
                        "xaxis": "x3",
                        "yaxis": "y6"
                    },
                    {
                        "uid": "f43edeef-8e1e-4f36-84fc-4379aab95773",
                        "name": "yaxis7 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:70886e",
                        "xaxis": "x4",
                        "yaxis": "y7"
                    },
                    {
                        "uid": "79769b46-a2bc-4a81-8846-2d7339a7dc7a",
                        "name": "yaxis8 data",
                        "type": "scatter",
                        "xsrc": "PythonPlotBot:3251:7981c7",
                        "ysrc": "PythonPlotBot:3251:c4b93c",
                        "xaxis": "x4",
                        "yaxis": "y8"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Double Y Axis Example"
                    },
                    "width": 1000,
                    "xaxis": {
                        "title": {
                            "text": "xaxis title"
                        },
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis": {
                        "type": "log",
                        "title": {
                            "text": "yaxis title"
                        },
                        "anchor": "x",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "height": 500,
                    "legend": {
                        "x": 1.1
                    },
                    "xaxis2": {
                        "title": {
                            "text": "xaxis2 title"
                        },
                        "anchor": "y3",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "title": {
                            "text": "xaxis3 title"
                        },
                        "anchor": "y5",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "xaxis4": {
                        "title": {
                            "text": "xaxis4, title"
                        },
                        "anchor": "y7",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "text": "yaxis2 title"
                        },
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "type": "log",
                        "title": {
                            "text": "yaxis3 title"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.6,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "side": "right",
                        "title": {
                            "text": "yaxis4 title"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.6,
                            1.0
                        ],
                        "overlaying": "y3"
                    },
                    "yaxis5": {
                        "type": "log",
                        "title": {
                            "text": "yaxis5 title"
                        },
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis6": {
                        "side": "right",
                        "title": {
                            "text": "yaxis6 title"
                        },
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.4
                        ],
                        "overlaying": "y5"
                    },
                    "yaxis7": {
                        "type": "log",
                        "title": {
                            "text": "yaxis7 title"
                        },
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.4
                        ]
                    },
                    "yaxis8": {
                        "side": "right",
                        "title": {
                            "text": "yaxis8 title"
                        },
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.4
                        ],
                        "overlaying": "y7"
                    }
                }
            },
            "height": 500,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~PythonPlotBot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-02-14 21:07:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "PythonPlotBot",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-03-20T20:28:42.925272Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~peaddiso/74.embed",
            "fid": "peaddiso:74",
            "filename": "plot from API (10)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/peaddiso/74/9_WS7FQXBZ6JU0AK5W4DEHY8P1XWBBBV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/peaddiso/74/2_LEOCEMXLNVTCVTYHD75ELGQ6SOP9C0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/74/8_8R5FP9S1NDXP9D6NR0NASPC03UJJ00.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/peaddiso/74/9_WS7FQXBZ6JU0AK5W4DEHY8P1XWBBBV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/peaddiso:74",
                "plots": "https://api.plotly.com/v2/plots/peaddiso:74",
                "parent": "https://api.plotly.com/v2/folders/home?user=peaddiso"
            },
            "owner": "peaddiso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Positive Reviews for Different Hotel Branches",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~peaddiso/74/positive-reviews-for-different-hotel-branches/",
            "world_readable": true,
            "date_modified": "2019-03-20T20:28:43.478Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~peaddiso/74/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "92d6bb44-a8aa-4911-bcbd-8f8334ad8f47",
                        "type": "bar",
                        "xsrc": "peaddiso:75:b04ebf",
                        "ysrc": "peaddiso:75:c1131b",
                        "textsrc": "peaddiso:75:4f262c"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Positive Reviews for Different Hotel Branches"
                    },
                    "width": 900,
                    "xaxis": {
                        "title": {
                            "text": "Hotel"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of Reviews"
                        }
                    }
                }
            },
            "height": null,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~peaddiso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-17 02:28:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "peaddiso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}