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/taemie:91?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "creation_time": "2024-05-03T03:29:42.570826Z",
    "comments": {
        "results": [],
        "count": 0
    },
    "parented": true,
    "embed_url": "https://chart-studio.plotly.com/~taemie/91.embed",
    "fid": "taemie:91",
    "filename": "Plot 91",
    "filetype": "plot",
    "img_url": "https://storage.googleapis.com/plotly-prod-images/taemie/91/9_BVC7NV813DQYUS6ZMLBVK4Y13ND1OQ.png",
    "image_urls": {
        "default": "https://storage.googleapis.com/plotly-prod-images/taemie/91/2_03VPOF62I19D9E75BEQDFQOHAIBLAH.png",
        "block-thumb": "https://storage.googleapis.com/plotly-prod-images/taemie/91/8_2PH5EUACRV1AJM5QS38HO1XUSCK87K.png",
        "list-thumb": "https://storage.googleapis.com/plotly-prod-images/taemie/91/9_BVC7NV813DQYUS6ZMLBVK4Y13ND1OQ.png"
    },
    "api_urls": {
        "files": "https://api.plotly.com/v2/files/taemie:91",
        "plots": "https://api.plotly.com/v2/plots/taemie:91",
        "parent": "https://api.plotly.com/v2/folders/home?user=taemie"
    },
    "owner": "taemie",
    "parent": -1,
    "preview": "",
    "referencers": [],
    "references": [],
    "title": "",
    "views": 1,
    "web_url": "https://chart-studio.plotly.com/~taemie/91/",
    "world_readable": true,
    "date_modified": "2024-05-03T03:29:42.583Z",
    "stars": {
        "results": [],
        "count": 0
    },
    "collaborators": {
        "results": [],
        "count": 0
    },
    "subfolder_count": null,
    "refresh_interval": null,
    "organize_view_url": "https://chart-studio.plotly.com/~taemie/91/",
    "current_user_permission": "read",
    "is_theme": null,
    "is_template": null,
    "autosize": true,
    "caption": "",
    "figure": {
        "data": [
            {
                "line": {
                    "color": "#636efa"
                },
                "mode": "lines",
                "name": "94102",
                "type": "scatter",
                "xsrc": "taemie:90:c1ec0e",
                "ysrc": "taemie:90:77d14f",
                "xaxis": "x25",
                "yaxis": "y25",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94102",
                "orientation": "v",
                "hovertemplate": "Zipcode=94102<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#EF553B"
                },
                "mode": "lines",
                "name": "94103",
                "type": "scatter",
                "xsrc": "taemie:90:71ac58",
                "ysrc": "taemie:90:d5654c",
                "xaxis": "x26",
                "yaxis": "y26",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94103",
                "orientation": "v",
                "hovertemplate": "Zipcode=94103<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#00cc96"
                },
                "mode": "lines",
                "name": "94104",
                "type": "scatter",
                "xsrc": "taemie:90:4f4faa",
                "ysrc": "taemie:90:6de103",
                "xaxis": "x27",
                "yaxis": "y27",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94104",
                "orientation": "v",
                "hovertemplate": "Zipcode=94104<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#ab63fa"
                },
                "mode": "lines",
                "name": "94105",
                "type": "scatter",
                "xsrc": "taemie:90:cbe8e2",
                "ysrc": "taemie:90:2ba872",
                "xaxis": "x28",
                "yaxis": "y28",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94105",
                "orientation": "v",
                "hovertemplate": "Zipcode=94105<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FFA15A"
                },
                "mode": "lines",
                "name": "94107",
                "type": "scatter",
                "xsrc": "taemie:90:d043c3",
                "ysrc": "taemie:90:f3b540",
                "xaxis": "x21",
                "yaxis": "y21",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94107",
                "orientation": "v",
                "hovertemplate": "Zipcode=94107<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#19d3f3"
                },
                "mode": "lines",
                "name": "94108",
                "type": "scatter",
                "xsrc": "taemie:90:942cb2",
                "ysrc": "taemie:90:cb1423",
                "xaxis": "x22",
                "yaxis": "y22",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94108",
                "orientation": "v",
                "hovertemplate": "Zipcode=94108<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FF6692"
                },
                "mode": "lines",
                "name": "94109",
                "type": "scatter",
                "xsrc": "taemie:90:98db31",
                "ysrc": "taemie:90:fe8be7",
                "xaxis": "x23",
                "yaxis": "y23",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94109",
                "orientation": "v",
                "hovertemplate": "Zipcode=94109<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#B6E880"
                },
                "mode": "lines",
                "name": "94110",
                "type": "scatter",
                "xsrc": "taemie:90:671b3f",
                "ysrc": "taemie:90:6ab1f3",
                "xaxis": "x24",
                "yaxis": "y24",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94110",
                "orientation": "v",
                "hovertemplate": "Zipcode=94110<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FF97FF"
                },
                "mode": "lines",
                "name": "94111",
                "type": "scatter",
                "xsrc": "taemie:90:80324b",
                "ysrc": "taemie:90:e6be79",
                "xaxis": "x17",
                "yaxis": "y17",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94111",
                "orientation": "v",
                "hovertemplate": "Zipcode=94111<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FECB52"
                },
                "mode": "lines",
                "name": "94112",
                "type": "scatter",
                "xsrc": "taemie:90:100ba9",
                "ysrc": "taemie:90:e58dc0",
                "xaxis": "x18",
                "yaxis": "y18",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94112",
                "orientation": "v",
                "hovertemplate": "Zipcode=94112<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#636efa"
                },
                "mode": "lines",
                "name": "94114",
                "type": "scatter",
                "xsrc": "taemie:90:823f83",
                "ysrc": "taemie:90:1f42f6",
                "xaxis": "x19",
                "yaxis": "y19",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94114",
                "orientation": "v",
                "hovertemplate": "Zipcode=94114<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#EF553B"
                },
                "mode": "lines",
                "name": "94115",
                "type": "scatter",
                "xsrc": "taemie:90:43fcb4",
                "ysrc": "taemie:90:8daf47",
                "xaxis": "x20",
                "yaxis": "y20",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94115",
                "orientation": "v",
                "hovertemplate": "Zipcode=94115<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#00cc96"
                },
                "mode": "lines",
                "name": "94116",
                "type": "scatter",
                "xsrc": "taemie:90:718e63",
                "ysrc": "taemie:90:b2f99a",
                "xaxis": "x13",
                "yaxis": "y13",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94116",
                "orientation": "v",
                "hovertemplate": "Zipcode=94116<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#ab63fa"
                },
                "mode": "lines",
                "name": "94117",
                "type": "scatter",
                "xsrc": "taemie:90:ea0f52",
                "ysrc": "taemie:90:df18a8",
                "xaxis": "x14",
                "yaxis": "y14",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94117",
                "orientation": "v",
                "hovertemplate": "Zipcode=94117<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FFA15A"
                },
                "mode": "lines",
                "name": "94118",
                "type": "scatter",
                "xsrc": "taemie:90:8ceaea",
                "ysrc": "taemie:90:9f89f7",
                "xaxis": "x15",
                "yaxis": "y15",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94118",
                "orientation": "v",
                "hovertemplate": "Zipcode=94118<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#19d3f3"
                },
                "mode": "lines",
                "name": "94121",
                "type": "scatter",
                "xsrc": "taemie:90:bd50e5",
                "ysrc": "taemie:90:b438ee",
                "xaxis": "x16",
                "yaxis": "y16",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94121",
                "orientation": "v",
                "hovertemplate": "Zipcode=94121<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FF6692"
                },
                "mode": "lines",
                "name": "94122",
                "type": "scatter",
                "xsrc": "taemie:90:4b47a7",
                "ysrc": "taemie:90:33fa1b",
                "xaxis": "x9",
                "yaxis": "y9",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94122",
                "orientation": "v",
                "hovertemplate": "Zipcode=94122<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#B6E880"
                },
                "mode": "lines",
                "name": "94123",
                "type": "scatter",
                "xsrc": "taemie:90:89ae7a",
                "ysrc": "taemie:90:d71e51",
                "xaxis": "x10",
                "yaxis": "y10",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94123",
                "orientation": "v",
                "hovertemplate": "Zipcode=94123<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FF97FF"
                },
                "mode": "lines",
                "name": "94124",
                "type": "scatter",
                "xsrc": "taemie:90:3f0a08",
                "ysrc": "taemie:90:e3b585",
                "xaxis": "x11",
                "yaxis": "y11",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94124",
                "orientation": "v",
                "hovertemplate": "Zipcode=94124<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FECB52"
                },
                "mode": "lines",
                "name": "94127",
                "type": "scatter",
                "xsrc": "taemie:90:8db94e",
                "ysrc": "taemie:90:726ac9",
                "xaxis": "x12",
                "yaxis": "y12",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94127",
                "orientation": "v",
                "hovertemplate": "Zipcode=94127<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#636efa"
                },
                "mode": "lines",
                "name": "94129",
                "type": "scatter",
                "xsrc": "taemie:90:0e442e",
                "ysrc": "taemie:90:7e04bb",
                "xaxis": "x5",
                "yaxis": "y5",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94129",
                "orientation": "v",
                "hovertemplate": "Zipcode=94129<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#EF553B"
                },
                "mode": "lines",
                "name": "94130",
                "type": "scatter",
                "xsrc": "taemie:90:675664",
                "ysrc": "taemie:90:9e2f6f",
                "xaxis": "x6",
                "yaxis": "y6",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94130",
                "orientation": "v",
                "hovertemplate": "Zipcode=94130<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#00cc96"
                },
                "mode": "lines",
                "name": "94131",
                "type": "scatter",
                "xsrc": "taemie:90:b5f38e",
                "ysrc": "taemie:90:a4c0d8",
                "xaxis": "x7",
                "yaxis": "y7",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94131",
                "orientation": "v",
                "hovertemplate": "Zipcode=94131<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#ab63fa"
                },
                "mode": "lines",
                "name": "94132",
                "type": "scatter",
                "xsrc": "taemie:90:61540a",
                "ysrc": "taemie:90:bacdb7",
                "xaxis": "x8",
                "yaxis": "y8",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94132",
                "orientation": "v",
                "hovertemplate": "Zipcode=94132<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FFA15A"
                },
                "mode": "lines",
                "name": "94133",
                "type": "scatter",
                "xsrc": "taemie:90:0c66b2",
                "ysrc": "taemie:90:c2ede8",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94133",
                "orientation": "v",
                "hovertemplate": "Zipcode=94133<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#19d3f3"
                },
                "mode": "lines",
                "name": "94134",
                "type": "scatter",
                "xsrc": "taemie:90:ffae64",
                "ysrc": "taemie:90:35b61f",
                "xaxis": "x2",
                "yaxis": "y2",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94134",
                "orientation": "v",
                "hovertemplate": "Zipcode=94134<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#FF6692"
                },
                "mode": "lines",
                "name": "94158",
                "type": "scatter",
                "xsrc": "taemie:90:a014ed",
                "ysrc": "taemie:90:3ab660",
                "xaxis": "x3",
                "yaxis": "y3",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "94158",
                "orientation": "v",
                "hovertemplate": "Zipcode=94158<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            },
            {
                "line": {
                    "color": "#B6E880"
                },
                "mode": "lines",
                "name": "Unknown",
                "type": "scatter",
                "xsrc": "taemie:90:1ac70f",
                "ysrc": "taemie:90:2278f7",
                "xaxis": "x4",
                "yaxis": "y4",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "stackgroup": "1",
                "fillpattern": {
                    "shape": ""
                },
                "legendgroup": "Unknown",
                "orientation": "v",
                "hovertemplate": "Zipcode=Unknown<br>Date=%{x|%m/%d}<br>Attendance=%{y}<extra></extra>"
            }
        ],
        "layout": {
            "title": {
                "text": "Daily Attendance per Zipcode (unit: employees"
            },
            "width": 1000,
            "xaxis": {
                "dtick": 7,
                "tick0": "12/01",
                "title": {
                    "text": "Date"
                },
                "anchor": "y",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "tickmode": "auto",
                "tickformat": "%m/%d"
            },
            "yaxis": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x",
                "domain": [
                    0.0,
                    0.08285714285714285
                ]
            },
            "height": 800,
            "legend": {
                "title": {
                    "text": "Zipcode"
                },
                "tracegroupgap": 0
            },
            "xaxis2": {
                "dtick": 7,
                "tick0": "12/01",
                "title": {
                    "text": "Date"
                },
                "anchor": "y2",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d"
            },
            "xaxis3": {
                "dtick": 7,
                "tick0": "12/01",
                "title": {
                    "text": "Date"
                },
                "anchor": "y3",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d"
            },
            "xaxis4": {
                "dtick": 7,
                "tick0": "12/01",
                "title": {
                    "text": "Date"
                },
                "anchor": "y4",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d"
            },
            "xaxis5": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y5",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis6": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y6",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis7": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y7",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis8": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y8",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis9": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y9",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "yaxis2": {
                "anchor": "x2",
                "domain": [
                    0.0,
                    0.08285714285714285
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis3": {
                "anchor": "x3",
                "domain": [
                    0.0,
                    0.08285714285714285
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis4": {
                "anchor": "x4",
                "domain": [
                    0.0,
                    0.08285714285714285
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis5": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x5",
                "domain": [
                    0.15285714285714286,
                    0.2357142857142857
                ],
                "matches": "y"
            },
            "yaxis6": {
                "anchor": "x6",
                "domain": [
                    0.15285714285714286,
                    0.2357142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis7": {
                "anchor": "x7",
                "domain": [
                    0.15285714285714286,
                    0.2357142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis8": {
                "anchor": "x8",
                "domain": [
                    0.15285714285714286,
                    0.2357142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis9": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x9",
                "domain": [
                    0.3057142857142857,
                    0.38857142857142857
                ],
                "matches": "y"
            },
            "xaxis10": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y10",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis11": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y11",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis12": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y12",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis13": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y13",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis14": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y14",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis15": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y15",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis16": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y16",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis17": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y17",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis18": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y18",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis19": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y19",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis20": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y20",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis21": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y21",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis22": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y22",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis23": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y23",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis24": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y24",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis25": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y25",
                "domain": [
                    0.0,
                    0.22
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis26": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y26",
                "domain": [
                    0.26,
                    0.48
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis27": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y27",
                "domain": [
                    0.52,
                    0.74
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "xaxis28": {
                "dtick": 7,
                "tick0": "12/01",
                "anchor": "y28",
                "domain": [
                    0.78,
                    1.0
                ],
                "nticks": 5,
                "matches": "x",
                "tickmode": "auto",
                "tickformat": "%m/%d",
                "showticklabels": false
            },
            "yaxis10": {
                "anchor": "x10",
                "domain": [
                    0.3057142857142857,
                    0.38857142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis11": {
                "anchor": "x11",
                "domain": [
                    0.3057142857142857,
                    0.38857142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis12": {
                "anchor": "x12",
                "domain": [
                    0.3057142857142857,
                    0.38857142857142857
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis13": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x13",
                "domain": [
                    0.4585714285714286,
                    0.5414285714285714
                ],
                "matches": "y"
            },
            "yaxis14": {
                "anchor": "x14",
                "domain": [
                    0.4585714285714286,
                    0.5414285714285714
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis15": {
                "anchor": "x15",
                "domain": [
                    0.4585714285714286,
                    0.5414285714285714
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis16": {
                "anchor": "x16",
                "domain": [
                    0.4585714285714286,
                    0.5414285714285714
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis17": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x17",
                "domain": [
                    0.6114285714285714,
                    0.6942857142857143
                ],
                "matches": "y"
            },
            "yaxis18": {
                "anchor": "x18",
                "domain": [
                    0.6114285714285714,
                    0.6942857142857143
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis19": {
                "anchor": "x19",
                "domain": [
                    0.6114285714285714,
                    0.6942857142857143
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis20": {
                "anchor": "x20",
                "domain": [
                    0.6114285714285714,
                    0.6942857142857143
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis21": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x21",
                "domain": [
                    0.7642857142857142,
                    0.8471428571428571
                ],
                "matches": "y"
            },
            "yaxis22": {
                "anchor": "x22",
                "domain": [
                    0.7642857142857142,
                    0.8471428571428571
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis23": {
                "anchor": "x23",
                "domain": [
                    0.7642857142857142,
                    0.8471428571428571
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis24": {
                "anchor": "x24",
                "domain": [
                    0.7642857142857142,
                    0.8471428571428571
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis25": {
                "title": {
                    "text": "Attendance"
                },
                "anchor": "x25",
                "domain": [
                    0.9171428571428571,
                    1.0
                ],
                "matches": "y"
            },
            "yaxis26": {
                "anchor": "x26",
                "domain": [
                    0.9171428571428571,
                    1.0
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis27": {
                "anchor": "x27",
                "domain": [
                    0.9171428571428571,
                    1.0
                ],
                "matches": "y",
                "showticklabels": false
            },
            "yaxis28": {
                "anchor": "x28",
                "domain": [
                    0.9171428571428571,
                    1.0
                ],
                "matches": "y",
                "showticklabels": false
            },
            "template": {
                "data": {
                    "bar": [
                        {
                            "type": "bar",
                            "marker": {
                                "line": {
                                    "color": "#E5ECF6",
                                    "width": 0.5
                                },
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            },
                            "error_x": {
                                "color": "#2a3f5f"
                            },
                            "error_y": {
                                "color": "#2a3f5f"
                            }
                        }
                    ],
                    "pie": [
                        {
                            "type": "pie",
                            "automargin": true
                        }
                    ],
                    "table": [
                        {
                            "type": "table",
                            "cells": {
                                "fill": {
                                    "color": "#EBF0F8"
                                },
                                "line": {
                                    "color": "white"
                                }
                            },
                            "header": {
                                "fill": {
                                    "color": "#C8D4E3"
                                },
                                "line": {
                                    "color": "white"
                                }
                            }
                        }
                    ],
                    "carpet": [
                        {
                            "type": "carpet",
                            "aaxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "#2a3f5f",
                                "minorgridcolor": "white",
                                "startlinecolor": "#2a3f5f"
                            },
                            "baxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "#2a3f5f",
                                "minorgridcolor": "white",
                                "startlinecolor": "#2a3f5f"
                            }
                        }
                    ],
                    "mesh3d": [
                        {
                            "type": "mesh3d",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "contour": [
                        {
                            "type": "contour",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "heatmap": [
                        {
                            "type": "heatmap",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "scatter": [
                        {
                            "type": "scatter",
                            "fillpattern": {
                                "size": 10,
                                "fillmode": "overlay",
                                "solidity": 0.2
                            }
                        }
                    ],
                    "surface": [
                        {
                            "type": "surface",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "barpolar": [
                        {
                            "type": "barpolar",
                            "marker": {
                                "line": {
                                    "color": "#E5ECF6",
                                    "width": 0.5
                                },
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            }
                        }
                    ],
                    "heatmapgl": [
                        {
                            "type": "heatmapgl",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "histogram": [
                        {
                            "type": "histogram",
                            "marker": {
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            }
                        }
                    ],
                    "parcoords": [
                        {
                            "line": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "type": "parcoords"
                        }
                    ],
                    "scatter3d": [
                        {
                            "line": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "type": "scatter3d",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattergl": [
                        {
                            "type": "scattergl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "choropleth": [
                        {
                            "type": "choropleth",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattergeo": [
                        {
                            "type": "scattergeo",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2d": [
                        {
                            "type": "histogram2d",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "scatterpolar": [
                        {
                            "type": "scatterpolar",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "contourcarpet": [
                        {
                            "type": "contourcarpet",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattercarpet": [
                        {
                            "type": "scattercarpet",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattermapbox": [
                        {
                            "type": "scattermapbox",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterpolargl": [
                        {
                            "type": "scatterpolargl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterternary": [
                        {
                            "type": "scatterternary",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2dcontour": [
                        {
                            "type": "histogram2dcontour",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ]
                },
                "layout": {
                    "geo": {
                        "bgcolor": "white",
                        "showland": true,
                        "lakecolor": "white",
                        "landcolor": "#E5ECF6",
                        "showlakes": true,
                        "subunitcolor": "white"
                    },
                    "font": {
                        "color": "#2a3f5f"
                    },
                    "polar": {
                        "bgcolor": "#E5ECF6",
                        "radialaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "angularaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        }
                    },
                    "scene": {
                        "xaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        },
                        "yaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        },
                        "zaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        }
                    },
                    "title": {
                        "x": 0.05
                    },
                    "xaxis": {
                        "ticks": "",
                        "title": {
                            "standoff": 15
                        },
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white",
                        "zerolinewidth": 2
                    },
                    "yaxis": {
                        "ticks": "",
                        "title": {
                            "standoff": 15
                        },
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white",
                        "zerolinewidth": 2
                    },
                    "mapbox": {
                        "style": "light"
                    },
                    "ternary": {
                        "aaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "baxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "caxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "bgcolor": "#E5ECF6"
                    },
                    "colorway": [
                        "#636efa",
                        "#EF553B",
                        "#00cc96",
                        "#ab63fa",
                        "#FFA15A",
                        "#19d3f3",
                        "#FF6692",
                        "#B6E880",
                        "#FF97FF",
                        "#FECB52"
                    ],
                    "coloraxis": {
                        "colorbar": {
                            "ticks": "",
                            "outlinewidth": 0
                        }
                    },
                    "hovermode": "closest",
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#8e0152"
                            ],
                            [
                                0.1,
                                "#c51b7d"
                            ],
                            [
                                0.2,
                                "#de77ae"
                            ],
                            [
                                0.3,
                                "#f1b6da"
                            ],
                            [
                                0.4,
                                "#fde0ef"
                            ],
                            [
                                0.5,
                                "#f7f7f7"
                            ],
                            [
                                0.6,
                                "#e6f5d0"
                            ],
                            [
                                0.7,
                                "#b8e186"
                            ],
                            [
                                0.8,
                                "#7fbc41"
                            ],
                            [
                                0.9,
                                "#4d9221"
                            ],
                            [
                                1,
                                "#276419"
                            ]
                        ],
                        "sequential": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "align": "left"
                    },
                    "plot_bgcolor": "#E5ECF6",
                    "paper_bgcolor": "white",
                    "shapedefaults": {
                        "line": {
                            "color": "#2a3f5f"
                        }
                    },
                    "autotypenumbers": "strict",
                    "annotationdefaults": {
                        "arrowhead": 0,
                        "arrowcolor": "#2a3f5f",
                        "arrowwidth": 1
                    }
                }
            },
            "showlegend": false,
            "annotations": [
                {
                    "x": 0.11,
                    "y": 0.08285714285714285,
                    "font": {},
                    "text": "Zipcode=94133",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.08285714285714285,
                    "font": {},
                    "text": "Zipcode=94134",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.08285714285714285,
                    "font": {},
                    "text": "Zipcode=94158",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.08285714285714285,
                    "font": {},
                    "text": "Zipcode=Unknown",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 0.2357142857142857,
                    "font": {},
                    "text": "Zipcode=94129",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.2357142857142857,
                    "font": {},
                    "text": "Zipcode=94130",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.2357142857142857,
                    "font": {},
                    "text": "Zipcode=94131",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.2357142857142857,
                    "font": {},
                    "text": "Zipcode=94132",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 0.38857142857142857,
                    "font": {},
                    "text": "Zipcode=94122",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.38857142857142857,
                    "font": {},
                    "text": "Zipcode=94123",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.38857142857142857,
                    "font": {},
                    "text": "Zipcode=94124",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.38857142857142857,
                    "font": {},
                    "text": "Zipcode=94127",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 0.5414285714285714,
                    "font": {},
                    "text": "Zipcode=94116",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.5414285714285714,
                    "font": {},
                    "text": "Zipcode=94117",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.5414285714285714,
                    "font": {},
                    "text": "Zipcode=94118",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.5414285714285714,
                    "font": {},
                    "text": "Zipcode=94121",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 0.6942857142857143,
                    "font": {},
                    "text": "Zipcode=94111",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.6942857142857143,
                    "font": {},
                    "text": "Zipcode=94112",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.6942857142857143,
                    "font": {},
                    "text": "Zipcode=94114",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.6942857142857143,
                    "font": {},
                    "text": "Zipcode=94115",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 0.8471428571428571,
                    "font": {},
                    "text": "Zipcode=94107",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 0.8471428571428571,
                    "font": {},
                    "text": "Zipcode=94108",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 0.8471428571428571,
                    "font": {},
                    "text": "Zipcode=94109",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 0.8471428571428571,
                    "font": {},
                    "text": "Zipcode=94110",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.11,
                    "y": 1.0,
                    "font": {},
                    "text": "Zipcode=94102",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.37,
                    "y": 1.0,
                    "font": {},
                    "text": "Zipcode=94103",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.63,
                    "y": 1.0,
                    "font": {},
                    "text": "Zipcode=94104",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                },
                {
                    "x": 0.89,
                    "y": 1.0,
                    "font": {},
                    "text": "Zipcode=94105",
                    "xref": "paper",
                    "yref": "paper",
                    "xanchor": "center",
                    "yanchor": "bottom",
                    "showarrow": false
                }
            ]
        }
    },
    "height": 800,
    "width": 1000,
    "user": {
        "profile_url": "https://chart-studio.plotly.com/~taemie",
        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
        "bio": "",
        "nickname": "",
        "website": "",
        "stream_tokens": null,
        "feature_set_id": null,
        "csrf_token": null,
        "date_joined": "2024-05-01 04:45:27",
        "mapbox_access_tokens": null,
        "has_password": null,
        "username": "taemie",
        "email": null,
        "is_active": null,
        "readonly": null,
        "is_dash_creator": null,
        "dash_created_count": null,
        "is_chart_creator": null,
        "charts_created_count": null
    }
}