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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA3LTE1KzE1JTNBMzMlM0E1Ni4yMjY4NTIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNy0xNSsxNyUzQTIyJTNBMzcuNzU1NDkwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-15T17:22:37.755490Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~laschumacher/69.embed",
            "fid": "laschumacher:69",
            "filename": "Taus_peels_transferahead_3goodreps",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/laschumacher/69/9_60MR0OKN2J981B6371YS98GVONNGRU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/laschumacher/69/2_BMJGRF3MAXO86TJU06WHG03YZVYHD3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/laschumacher/69/8_8AFNPCADG5CMLA8A94O4VOLGQXGCW6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/laschumacher/69/9_60MR0OKN2J981B6371YS98GVONNGRU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/laschumacher:69",
                "plots": "https://api.plotly.com/v2/plots/laschumacher:69",
                "parent": "https://api.plotly.com/v2/folders/home?user=laschumacher"
            },
            "owner": "laschumacher",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~laschumacher/69/",
            "world_readable": true,
            "date_modified": "2025-07-15T17:46:51.749Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~laschumacher/69/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "348 #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:0101ae",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "348 headless #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:20b864",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "348 #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:b2e56e",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "348 headless #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:f05432",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "Spot1 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:41e4a6",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "F"
                            }
                        },
                        "name": "1Headless 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:1b365b",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "G"
                            }
                        },
                        "name": "Spot1 6/18",
                        "type": "box",
                        "ysrc": "laschumacher:68:7b3ae0",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "H"
                            }
                        },
                        "name": "1Headless 6/18",
                        "type": "box",
                        "ysrc": "laschumacher:68:e78a7c",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AD"
                            }
                        },
                        "name": "348 #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:d8b593",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(239, 85, 59)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AE"
                            }
                        },
                        "name": "348 headless #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:57fa9c",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "J"
                            }
                        },
                        "name": "400 #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:93c6b2",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "K"
                            }
                        },
                        "name": "400 headless #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:3d7950",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "L"
                            }
                        },
                        "name": "400 #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:0df3d7",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "M"
                            }
                        },
                        "name": "400 headless #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:29533d",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "N"
                            }
                        },
                        "name": "400 #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:12c7c3",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "O"
                            }
                        },
                        "name": "400 headless #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:98e9f8",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "P"
                            }
                        },
                        "name": "Spot2 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:d19d5c",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Q"
                            }
                        },
                        "name": "2Headless 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:8290f1",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(25, 211, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "R"
                            }
                        },
                        "name": "Spot2 6/18",
                        "type": "box",
                        "ysrc": "laschumacher:68:039192",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 102, 146)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "S"
                            }
                        },
                        "name": "2Headless 6/18",
                        "type": "box",
                        "ysrc": "laschumacher:68:1ff78d",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "U"
                            }
                        },
                        "name": "480 #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:53bb55",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "V"
                            }
                        },
                        "name": "480 headless #1",
                        "type": "box",
                        "ysrc": "laschumacher:68:05adfd",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "W"
                            }
                        },
                        "name": "480 #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:df8df4",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "X"
                            }
                        },
                        "name": "480 headless #2",
                        "type": "box",
                        "ysrc": "laschumacher:68:80fe86",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Y"
                            }
                        },
                        "name": "Spot3 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:7bb05c",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Z"
                            }
                        },
                        "name": "3Headless 6/16",
                        "type": "box",
                        "ysrc": "laschumacher:68:50f6a7",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "line": {
                            "color": "rgb(182, 232, 128)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "AA"
                            }
                        },
                        "name": "480 #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:d8828a",
                        "jitter": 1,
                        "pointpos": 0,
                        "boxpoints": "all"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "AB"
                            }
                        },
                        "name": "480 headless #3",
                        "type": "box",
                        "ysrc": "laschumacher:68:42bd2c",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(231, 99, 250)"
                        },
                        "pointpos": 0,
                        "boxpoints": "all"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            17.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.6248643333333332,
                            2.8045576666666667
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Mean τ, Amplitude Weighted ns"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~laschumacher",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2020-09-17 18:48:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "laschumacher",
                "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": "2025-07-15T16:31:34.101082Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Colton_C/3.embed",
            "fid": "Colton_C:3",
            "filename": "类别日图",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Colton_C/3/9_7LE103HHDITXXUDY3JWFLHU66RFMB5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Colton_C/3/2_7INNMBBHDX26CUA67ZDJR0YMNC80JM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Colton_C/3/8_6KQWY8W5VEAD87RQHCLJHFYQYFK1KY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Colton_C/3/9_7LE103HHDITXXUDY3JWFLHU66RFMB5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Colton_C:3",
                "plots": "https://api.plotly.com/v2/plots/Colton_C:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Colton_C"
            },
            "owner": "Colton_C",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Colton_C/3/",
            "world_readable": true,
            "date_modified": "2025-07-15T18:37:36.692Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Colton_C/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "leaf": {
                            "opacity": 0.97
                        },
                        "meta": {
                            "columnNames": {
                                "ids": "ids",
                                "text": "data.0.labels",
                                "labels": "data.0.labels",
                                "parents": "data.0.parents",
                                "customdata": "data.0.customdata"
                            }
                        },
                        "sort": true,
                        "type": "sunburst",
                        "level": "center",
                        "domain": {
                            "x": [
                                0.03,
                                0.97
                            ],
                            "y": [
                                0.03,
                                0.97
                            ]
                        },
                        "idssrc": "Colton_C:2:2727f9",
                        "marker": {
                            "line": {
                                "color": "rgb(21, 11, 8)",
                                "width": 3
                            },
                            "meta": {
                                "columnNames": {
                                    "colors": "data.0.marker.colors"
                                }
                            },
                            "colorssrc": "Colton_C:2:bdd865"
                        },
                        "textsrc": "Colton_C:2:709c64",
                        "rotation": 30,
                        "textfont": {
                            "size": 13,
                            "color": "rgb(2, 9, 19)",
                            "family": "Droid Sans"
                        },
                        "textinfo": "text",
                        "hoverinfo": "label",
                        "labelssrc": "Colton_C:2:709c64",
                        "parentssrc": "Colton_C:2:bc1fc4",
                        "texttemplate": "",
                        "customdatasrc": "Colton_C:2:7a6977",
                        "hovertemplate": "",
                        "insidetextorientation": "radial"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "color": "rgb(27, 59, 114)"
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "width": 850,
                    "height": 850,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "modebar": {
                        "bgcolor": "rgba(255, 255, 255, 0.5)",
                        "orientation": "h"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    },
                                    "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,
                                            "#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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            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,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#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,
                                            "#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,
                                            "#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,
                                            "#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,
                                        "#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,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        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,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "uniformtext": {
                        "mode": false
                    },
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 850,
            "width": 850,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Colton_C",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-14 12:29:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Colton_C",
                "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": "2025-07-15T16:10:57.587490Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gico66/3.embed",
            "fid": "gico66:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gico66:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gico66/3/2_ZYBZC5K7ZOX6KW91DX5ITCQNOMTVWR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gico66/3/8_CJ1GWSZ3823YGGXQZ7WNTPGFLWK9JK.png",
                "list-thumb": "https://api.plotly.com/v2/files/gico66:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gico66:3",
                "plots": "https://api.plotly.com/v2/plots/gico66:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=gico66"
            },
            "owner": "gico66",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gico66/3/",
            "world_readable": true,
            "date_modified": "2025-07-16T13:15:26.786Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gico66/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "D",
                                    "arrayminus": "F"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "1300 nm",
                        "type": "scatter",
                        "xsrc": "gico66:2:3e9e83",
                        "ysrc": "gico66:2:c32996",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "D",
                                    "arrayminus": "F"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "gico66:2:2f0c7d",
                            "symmetric": false,
                            "arrayminussrc": "gico66:2:33d3f7"
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "H",
                                "y": "I",
                                "error_y": {
                                    "array": "K",
                                    "arrayminus": "M"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "1310 nm",
                        "type": "scatter",
                        "xsrc": "gico66:2:6d60a2",
                        "ysrc": "gico66:2:8f155e",
                        "error_x": {
                            "type": "percent",
                            "color": "#EF553B",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "K",
                                    "arrayminus": "M"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "gico66:2:523d19",
                            "symmetric": false,
                            "arrayminussrc": "gico66:2:762cec"
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "O",
                                "y": "P",
                                "error_y": {
                                    "array": "R",
                                    "arrayminus": "T"
                                }
                            }
                        },
                        "mode": "lines",
                        "name": "1550 nm",
                        "type": "scatter",
                        "xsrc": "gico66:2:3c5b33",
                        "ysrc": "gico66:2:31c8e5",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "R",
                                    "arrayminus": "T"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "gico66:2:a8b61e",
                            "symmetric": false,
                            "arrayminussrc": "gico66:2:84c033"
                        },
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Splice 3 Loss vs. Fibre Lenght"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.2611111111111115,
                            35.038888888888884
                        ],
                        "title": {
                            "text": "Fibre Lenght (Km)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.06622700980286662,
                            -0.04809331527353334
                        ],
                        "title": {
                            "text": "Splice Loss (dB)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 2.0320725296266597,
                            "y": -0.059291666666666666,
                            "ax": 11,
                            "ay": 63,
                            "font": {
                                "size": 15
                            },
                            "text": "<b>50 ns</b>",
                            "showarrow": false
                        },
                        {
                            "x": 17.566332531408708,
                            "y": -0.059118055555555556,
                            "ax": 7,
                            "ay": 47,
                            "font": {
                                "size": 15
                            },
                            "text": "<b>500 ns</b>",
                            "showarrow": false
                        },
                        {
                            "x": 24.733845674062188,
                            "y": -0.05932638888888889,
                            "ax": 9,
                            "ay": 45,
                            "font": {
                                "size": 15
                            },
                            "text": "<b>1000 ns</b>",
                            "showarrow": false
                        },
                        {
                            "x": 31.064684130802807,
                            "y": -0.059256944444444445,
                            "font": {
                                "size": 15
                            },
                            "text": "<b>1000 ns</b>",
                            "showarrow": false
                        },
                        {
                            "x": 33.31773980036534,
                            "y": -0.06562589285714286,
                            "font": {
                                "size": 15
                            },
                            "text": "<b>1000 ns</b>",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gico66",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.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": "2025-07-15 13:54:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gico66",
                "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": "2025-07-15T16:07:05.861834Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Strzelczykk_nat/28.embed",
            "fid": "Strzelczykk_nat:28",
            "filename": "Life expectancy vs Per Capita 2007",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Strzelczykk_nat/28/9_4RHVR3PE78AT5U75OOE2N2LUX238Z4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Strzelczykk_nat/28/2_FOZHMRLPH6ZOO1SA8ECYBCC4BFWPVF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Strzelczykk_nat/28/8_6T3PWZILA9QHDRCN0JZJJ6HWKS9LI2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Strzelczykk_nat/28/9_4RHVR3PE78AT5U75OOE2N2LUX238Z4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Strzelczykk_nat:28",
                "plots": "https://api.plotly.com/v2/plots/Strzelczykk_nat:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=Strzelczykk_nat"
            },
            "owner": "Strzelczykk_nat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Strzelczykk_nat/28/",
            "world_readable": true,
            "date_modified": "2025-07-15T16:07:05.874Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Strzelczykk_nat/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Asia",
                        "type": "scatter",
                        "xsrc": "Strzelczykk_nat:27:2c5887",
                        "ysrc": "Strzelczykk_nat:27:72d79c",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "sizeref": 7.262735286377992,
                            "sizesrc": "Strzelczykk_nat:27:c9cb3d",
                            "sizemode": "area"
                        },
                        "textsrc": "Strzelczykk_nat:27:50fe05"
                    },
                    {
                        "mode": "markers",
                        "name": "Europe",
                        "type": "scatter",
                        "xsrc": "Strzelczykk_nat:27:2fe79e",
                        "ysrc": "Strzelczykk_nat:27:5f6e69",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "sizeref": 7.262735286377992,
                            "sizesrc": "Strzelczykk_nat:27:eb6862",
                            "sizemode": "area"
                        },
                        "textsrc": "Strzelczykk_nat:27:e77269"
                    },
                    {
                        "mode": "markers",
                        "name": "Oceania",
                        "type": "scatter",
                        "xsrc": "Strzelczykk_nat:27:afdf14",
                        "ysrc": "Strzelczykk_nat:27:fa0bac",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "sizeref": 7.262735286377992,
                            "sizesrc": "Strzelczykk_nat:27:edcf7e",
                            "sizemode": "area"
                        },
                        "textsrc": "Strzelczykk_nat:27:e0053d"
                    },
                    {
                        "mode": "markers",
                        "name": "Africa",
                        "type": "scatter",
                        "xsrc": "Strzelczykk_nat:27:a1dd42",
                        "ysrc": "Strzelczykk_nat:27:1481cd",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "sizeref": 7.262735286377992,
                            "sizesrc": "Strzelczykk_nat:27:d6ddf7",
                            "sizemode": "area"
                        },
                        "textsrc": "Strzelczykk_nat:27:f2b667"
                    },
                    {
                        "mode": "markers",
                        "name": "Americas",
                        "type": "scatter",
                        "xsrc": "Strzelczykk_nat:27:00eb6b",
                        "ysrc": "Strzelczykk_nat:27:204bf6",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "sizeref": 7.262735286377992,
                            "sizesrc": "Strzelczykk_nat:27:c3f1a0",
                            "sizemode": "area"
                        },
                        "textsrc": "Strzelczykk_nat:27:5a97a4"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Life Expectancy v. Per Capita GDP, 2007"
                    },
                    "xaxis": {
                        "type": "log",
                        "title": {
                            "text": "GDP per capita (2000 dollars)"
                        },
                        "gridcolor": "white",
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "title": {
                            "text": "Life Expectancy (years)"
                        },
                        "gridcolor": "white",
                        "gridwidth": 2
                    },
                    "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
                            }
                        }
                    },
                    "plot_bgcolor": "rgb(243, 243, 243)",
                    "paper_bgcolor": "rgb(243, 243, 243)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Strzelczykk_nat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-06 13:01:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Strzelczykk_nat",
                "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": "2025-07-15T15:43:53.488791Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Elis2606/11.embed",
            "fid": "Elis2606:11",
            "filename": "TE Ratios",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Elis2606/11/9_FL4WI3H580QJWDTDOWJ30ORHXCIE8K.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Elis2606:11/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Elis2606/11/8_H70MUIBMBCDNCVWT9XP5AGMRP5Z814.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Elis2606/11/9_FL4WI3H580QJWDTDOWJ30ORHXCIE8K.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Elis2606:11",
                "plots": "https://api.plotly.com/v2/plots/Elis2606:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=Elis2606"
            },
            "owner": "Elis2606",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Elis2606/11/",
            "world_readable": true,
            "date_modified": "2025-07-18T14:48:28.679Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Elis2606/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "line": {
                                "color": "rgb(2, 3, 18)",
                                "width": 0.69
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(180, 182, 212)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Ratio",
                                "y": "Wert_nmol_nmol"
                            }
                        },
                        "mode": "markers",
                        "name": "Healthy Control",
                        "type": "violin",
                        "xsrc": "Elis2606:10:7bb7a0",
                        "ysrc": "Elis2606:10:9cc3fa",
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "color": "rgb(177, 180, 222)"
                        },
                        "meanline": {
                            "color": "rgb(56, 62, 145)",
                            "visible": true
                        },
                        "bandwidth": 0,
                        "scalegroup": 1,
                        "showlegend": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "Group"
                                    }
                                },
                                "type": "filter",
                                "value": "Healthy Control",
                                "targetsrc": "Elis2606:10:b9a89b"
                            }
                        ]
                    },
                    {
                        "box": {
                            "line": {
                                "color": "rgb(4, 9, 41)",
                                "width": 0.71
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(93, 99, 135)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Ratio",
                                "y": "Wert_nmol_nmol"
                            }
                        },
                        "name": "Migraine Patients",
                        "type": "violin",
                        "xsrc": "Elis2606:10:7bb7a0",
                        "ysrc": "Elis2606:10:9cc3fa",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "color": "rgb(93, 107, 179)"
                        },
                        "meanline": {
                            "visible": true
                        },
                        "bandwidth": 0,
                        "showlegend": false,
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "target": "Group"
                                    }
                                },
                                "type": "filter",
                                "value": "Migraine Patients",
                                "targetsrc": "Elis2606:10:b9a89b"
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.6042214810627122
                        ],
                        "tick0": 0,
                        "title": {
                            "text": ""
                        },
                        "tickfont": {
                            "size": 20,
                            "color": "rgb(2, 9, 20)"
                        },
                        "tickmode": "linear",
                        "zeroline": true,
                        "autorange": true,
                        "tickangle": "auto",
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -61.21337470849726,
                            469.0327509286206
                        ],
                        "title": {
                            "font": {
                                "size": 20,
                                "color": "rgb(2, 14, 33)"
                            },
                            "text": "Testosterone-to-Estradiol Ratio"
                        },
                        "showline": true,
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "size": 20
                        }
                    },
                    "shapes": [
                        {
                            "x0": 2.1173687461395927,
                            "x1": 2.378641136504015,
                            "y0": 300.00075235300443,
                            "y1": 300.00075235300443,
                            "line": {
                                "color": "rgb(3, 0, 0)",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "violingap": 0,
                    "violinmode": "group",
                    "annotations": [
                        {
                            "x": 0.0982211241507103,
                            "y": -52.22876712328767,
                            "font": {
                                "size": 15,
                                "color": "rgb(1, 8, 20)"
                            },
                            "text": "Healthy Control<br>",
                            "showarrow": false
                        },
                        {
                            "x": 0.47467772809467595,
                            "y": -52.22534714038206,
                            "font": {
                                "size": 15,
                                "color": "rgb(1, 9, 20)"
                            },
                            "text": "Migraine Patients",
                            "showarrow": false
                        },
                        {
                            "x": 1.0918962322421248,
                            "y": -50.48045979137299,
                            "ax": -151,
                            "ay": 241,
                            "font": {
                                "size": 15,
                                "color": "rgb(2, 14, 33)"
                            },
                            "text": "Healthy Control&nbsp;",
                            "showarrow": false
                        },
                        {
                            "x": 1.463182962512623,
                            "y": -50.412957375833386,
                            "font": {
                                "size": 15,
                                "color": "rgb(2, 12, 25)"
                            },
                            "text": "Migraine Patients",
                            "showarrow": false
                        },
                        {
                            "x": 2.0931165183515135,
                            "y": -52.59148648675551,
                            "font": {
                                "size": 15,
                                "color": "rgb(2, 10, 23)"
                            },
                            "text": "Healthy Control",
                            "showarrow": false
                        },
                        {
                            "x": 2.462198276046771,
                            "y": -52.59148648675551,
                            "font": {
                                "size": 15,
                                "color": "rgb(2, 10, 23)"
                            },
                            "text": "Migraine Patients",
                            "showarrow": false
                        },
                        {
                            "x": 2.256022235948116,
                            "y": 313.02963188876714,
                            "font": {
                                "size": 18
                            },
                            "text": "p=0.01",
                            "showarrow": false
                        },
                        {
                            "x": 0.12361906569004634,
                            "y": 178.24263705934246,
                            "font": {
                                "size": 14
                            },
                            "text": "n=60",
                            "showarrow": false
                        },
                        {
                            "x": 0.37646310442670655,
                            "y": 181.1507834977185,
                            "font": {
                                "size": 14
                            },
                            "text": "n=60<br>",
                            "showarrow": false
                        },
                        {
                            "x": 1.1274476373908167,
                            "y": 198.5996621279747,
                            "font": {
                                "size": 14
                            },
                            "text": "n=60<br>",
                            "showarrow": false
                        },
                        {
                            "x": 1.3784047803160093,
                            "y": 202.23484517594474,
                            "font": {
                                "size": 14
                            },
                            "text": "n=60<br>",
                            "showarrow": false
                        },
                        {
                            "x": 2.380346456205312,
                            "y": 35.01642496932268,
                            "font": {
                                "size": 14
                            },
                            "text": "n=31",
                            "showarrow": false
                        },
                        {
                            "x": 2.12938931328012,
                            "y": 21.92976599663052,
                            "font": {
                                "size": 14
                            },
                            "text": "n=29<br>",
                            "showarrow": false
                        }
                    ],
                    "violingroupgap": 0
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Elis2606",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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": "2025-07-14 11:38:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Elis2606",
                "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": "2025-07-15T15:42:28.358686Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iguzmanvt/348.embed",
            "fid": "iguzmanvt:348",
            "filename": "PIB_Municipal_Aguascalientes",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/348/9_PFWSQJIQR865W239ZZEGL88OV8OAVU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/348/2_EJPMRHS7KT3AZJX49C9N5DAYB9GWUT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/348/8_QDO8PKACUY1LL14FEYDMHJJJCIS1G3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/348/9_PFWSQJIQR865W239ZZEGL88OV8OAVU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iguzmanvt:348",
                "plots": "https://api.plotly.com/v2/plots/iguzmanvt:348",
                "parent": "https://api.plotly.com/v2/folders/home?user=iguzmanvt"
            },
            "owner": "iguzmanvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~iguzmanvt/348/",
            "world_readable": true,
            "date_modified": "2025-07-15T15:42:28.369Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iguzmanvt/348/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(248,118,109,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Aguascalientes",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:f48d76",
                        "ysrc": "iguzmanvt:347:43a29f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(248,118,109,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(248,118,109,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:1e3b14",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Aguascalientes"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(219,142,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Asientos",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:25c706",
                        "ysrc": "iguzmanvt:347:839758",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(219,142,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(219,142,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:cb3bc8",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Asientos"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(174,162,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Calvillo",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:285b99",
                        "ysrc": "iguzmanvt:347:f0d85f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(174,162,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(174,162,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:9e2d5f",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Calvillo"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(100,178,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Cosío",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:059608",
                        "ysrc": "iguzmanvt:347:75f615",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(100,178,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(100,178,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:27e8c8",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Cosío"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,189,92,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "El Llano",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:b9112f",
                        "ysrc": "iguzmanvt:347:5aee99",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,189,92,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,189,92,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:031753",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "El Llano"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,193,167,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Jesús María",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:27fd27",
                        "ysrc": "iguzmanvt:347:06b8ef",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,193,167,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,193,167,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:7581bf",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Jesús María"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,186,222,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Pabellón de Arteaga",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:1c4f39",
                        "ysrc": "iguzmanvt:347:2e5499",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,186,222,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,186,222,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:385302",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Pabellón de Arteaga"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,166,255,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Rincón de Romos",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:cfa2b9",
                        "ysrc": "iguzmanvt:347:2445bf",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,166,255,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,166,255,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:0e36d9",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Rincón de Romos"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(179,133,255,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "San Francisco de los Romo",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:3cae56",
                        "ysrc": "iguzmanvt:347:ed43d3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(179,133,255,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(179,133,255,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:1f7cad",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "San Francisco de los Romo"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(239,103,235,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "San José de Gracia",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:f4576d",
                        "ysrc": "iguzmanvt:347:811225",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(239,103,235,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(239,103,235,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:29e583",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "San José de Gracia"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255,99,182,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "name": "Tepezalá",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:347:d48b69",
                        "ysrc": "iguzmanvt:347:33aa1c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,99,182,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(255,99,182,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:347:aaf777",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Tepezalá"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.53424657534247,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Estimación del PIB Municipal en Aguascalientes",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2002.25,
                            2018.75
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Año"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -11663.038798091316,
                            244624.84668419336
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "PIB Municipal Estimado (Millones de Pesos)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50000",
                            "100000",
                            "150000",
                            "200000"
                        ],
                        "tickvals": [
                            0,
                            50000,
                            100000,
                            150000,
                            200000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "50000",
                            "100000",
                            "150000",
                            "200000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "municipio"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 41.792660240148834,
                        "l": 60.639269406392714,
                        "r": 7.305936073059362,
                        "t": 45.372568915947916
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iguzmanvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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": "2021-07-14 18:52:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iguzmanvt",
                "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": "2025-07-15T15:42:23.925495Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iguzmanvt/346.embed",
            "fid": "iguzmanvt:346",
            "filename": "PIB_Municipal_Facet_Aguascalientes",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/346/9_IKDIDDA46OV7BJ97G92889SQTL81A5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/346/2_DI5C03YAX1TFUQ83ZPO5NGSOHTR8LM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/346/8_ZYQ343BOF2J0EAZ572KDLK5VEENOMH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/346/9_IKDIDDA46OV7BJ97G92889SQTL81A5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iguzmanvt:346",
                "plots": "https://api.plotly.com/v2/plots/iguzmanvt:346",
                "parent": "https://api.plotly.com/v2/folders/home?user=iguzmanvt"
            },
            "owner": "iguzmanvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~iguzmanvt/346/",
            "world_readable": true,
            "date_modified": "2025-07-15T15:42:23.935Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iguzmanvt/346/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:3d9c12",
                        "ysrc": "iguzmanvt:345:482447",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:8edebd",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:43cddd",
                        "ysrc": "iguzmanvt:345:a11085",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:e5aef1",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:0f08ad",
                        "ysrc": "iguzmanvt:345:2062ac",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:370989",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:902f34",
                        "ysrc": "iguzmanvt:345:b30cc0",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:564516",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:7cef12",
                        "ysrc": "iguzmanvt:345:376a82",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:fd06e1",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:a207ea",
                        "ysrc": "iguzmanvt:345:db195f",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:257e6e",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:d26146",
                        "ysrc": "iguzmanvt:345:9cafc5",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y7",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:22becb",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:9b8f15",
                        "ysrc": "iguzmanvt:345:561801",
                        "frame": null,
                        "xaxis": "x4",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:e1b62c",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:c50a08",
                        "ysrc": "iguzmanvt:345:bca36f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:daaceb",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:38adf3",
                        "ysrc": "iguzmanvt:345:2ea1ae",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y10",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:fd4f23",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,0,0,1)",
                            "width": 1.8897637795275593
                        },
                        "mode": "lines+markers",
                        "type": "scatter",
                        "xsrc": "iguzmanvt:345:4839b1",
                        "ysrc": "iguzmanvt:345:aa95a4",
                        "frame": null,
                        "xaxis": "x3",
                        "yaxis": "y11",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,0,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 5.669291338582678,
                            "color": "rgba(0,0,0,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "iguzmanvt:345:cb197b",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.53424657534247,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Estimación del PIB Municipal en Aguascalientes",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2002.25,
                            2018.75
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y9",
                        "domain": [
                            0,
                            0.21367906066536202
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            124364.0062982619,
                            238147.36834627175
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0.6930492135971589,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "150000",
                            "180000",
                            "210000"
                        ],
                        "tickvals": [
                            150000,
                            180000,
                            210000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "150000",
                            "180000",
                            "210000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 41.792660240148834,
                        "l": 60.639269406392714,
                        "r": 7.305936073059362,
                        "t": 57.0620666328429
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0.6930492135971589,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0.6930492135971589,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0.6930492135971589,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.786320939334638,
                            "x1": 1,
                            "y0": 0.6930492135971589,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.786320939334638,
                            "x1": 1,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0.3597158802638255,
                            "y1": 0.6402841197361746,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.6402841197361746,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0.3597158802638255,
                            "y1": 0.6402841197361746,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.6402841197361746,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0.3597158802638255,
                            "y1": 0.6402841197361746,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.6402841197361746,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.786320939334638,
                            "x1": 1,
                            "y0": 0.3597158802638255,
                            "y1": 0.6402841197361746,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.786320939334638,
                            "x1": 1,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.6402841197361746,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0,
                            "y1": 0.30695078640284124,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.21367906066536202,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.30695078640284124,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0,
                            "y1": 0.30695078640284124,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.286320939334638,
                            "x1": 0.463679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.30695078640284124,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0,
                            "y1": 0.30695078640284124,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.536320939334638,
                            "x1": 0.713679060665362,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.30695078640284124,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        }
                    ],
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            2002.25,
                            2018.75
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y10",
                        "domain": [
                            0.286320939334638,
                            0.463679060665362
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis3": {
                        "type": "linear",
                        "range": [
                            2002.25,
                            2018.75
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y11",
                        "domain": [
                            0.536320939334638,
                            0.713679060665362
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "xaxis4": {
                        "type": "linear",
                        "range": [
                            2002.25,
                            2018.75
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y8",
                        "domain": [
                            0.786320939334638,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "tickvals": [
                            2005,
                            2010,
                            2015
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2005",
                            "2010",
                            "2015"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "type": "linear",
                        "range": [
                            71.73367780507735,
                            707.1615892624086
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x2",
                        "domain": [
                            0.6930492135971589,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "200",
                            "400",
                            "600"
                        ],
                        "tickvals": [
                            200,
                            400,
                            600
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "200",
                            "400",
                            "600"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis3": {
                        "type": "linear",
                        "range": [
                            1154.0620061317973,
                            2577.931171983597
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x3",
                        "domain": [
                            0.6930492135971589,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "1500",
                            "2000",
                            "2500"
                        ],
                        "tickvals": [
                            1500,
                            2000,
                            2500
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "1500",
                            "2000",
                            "2500"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis4": {
                        "type": "linear",
                        "range": [
                            116.8161379748537,
                            668.1019994780692
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x4",
                        "domain": [
                            0.6930492135971589,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "200",
                            "300",
                            "400",
                            "500",
                            "600"
                        ],
                        "tickvals": [
                            200,
                            300,
                            400,
                            500,
                            600
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "200",
                            "300",
                            "400",
                            "500",
                            "600"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis5": {
                        "type": "linear",
                        "range": [
                            -61.04171904588935,
                            982.908024239408
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0.3597158802638255,
                            0.6402841197361746
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "250",
                            "500",
                            "750"
                        ],
                        "tickvals": [
                            0,
                            250,
                            499.99999999999983,
                            750
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "250",
                            "500",
                            "750"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis6": {
                        "type": "linear",
                        "range": [
                            17667.00527956342,
                            35851.06840909526
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x2",
                        "domain": [
                            0.3597158802638255,
                            0.6402841197361746
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "20000",
                            "25000",
                            "30000",
                            "35000"
                        ],
                        "tickvals": [
                            20000,
                            25000,
                            30000,
                            35000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "20000",
                            "25000",
                            "30000",
                            "35000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis7": {
                        "type": "linear",
                        "range": [
                            1147.0837855599502,
                            1914.392416441246
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x3",
                        "domain": [
                            0.3597158802638255,
                            0.6402841197361746
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "1300",
                            "1500",
                            "1700",
                            "1900"
                        ],
                        "tickvals": [
                            1300,
                            1500,
                            1700,
                            1900
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "1300",
                            "1500",
                            "1700",
                            "1900"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis8": {
                        "type": "linear",
                        "range": [
                            2423.52038968548,
                            4134.214511920145
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x4",
                        "domain": [
                            0.3597158802638255,
                            0.6402841197361746
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2500",
                            "3000",
                            "3500",
                            "4000"
                        ],
                        "tickvals": [
                            2500,
                            3000,
                            3500,
                            4000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2500",
                            "3000",
                            "3500",
                            "4000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis9": {
                        "type": "linear",
                        "range": [
                            7158.782293298953,
                            30133.703178503227
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            0.30695078640284124
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "10000",
                            "15000",
                            "20000",
                            "25000",
                            "30000"
                        ],
                        "tickvals": [
                            10000,
                            15000,
                            20000,
                            25000,
                            30000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "10000",
                            "15000",
                            "20000",
                            "25000",
                            "30000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "barmode": "relative",
                    "yaxis10": {
                        "type": "linear",
                        "range": [
                            64.12213220351627,
                            162.17601606244827
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x2",
                        "domain": [
                            0,
                            0.30695078640284124
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "80",
                            "100",
                            "120",
                            "140",
                            "160"
                        ],
                        "tickvals": [
                            80,
                            100,
                            120,
                            140,
                            160
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "80",
                            "100",
                            "120",
                            "140",
                            "160"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis11": {
                        "type": "linear",
                        "range": [
                            1030.7601680690707,
                            7982.3498977901845
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x3",
                        "domain": [
                            0,
                            0.30695078640284124
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2000",
                            "4000",
                            "6000"
                        ],
                        "tickvals": [
                            2000,
                            4000,
                            6000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2000",
                            "4000",
                            "6000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Año",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": -21.91780821917808,
                            "xanchor": "center",
                            "yanchor": "top",
                            "showarrow": false,
                            "textangle": 0,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0,
                            "y": 0.5,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "PIB Municipal Estimado (Millones de Pesos)",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": -45.29680365296805,
                            "xanchor": "right",
                            "yanchor": "center",
                            "showarrow": false,
                            "textangle": -90,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0.10683953033268101,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Aguascalientes",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.375,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Asientos",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.625,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Calvillo",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.893160469667319,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Cosío",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.10683953033268101,
                            "y": 0.6402841197361746,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "El Llano",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.375,
                            "y": 0.6402841197361746,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Jesús María",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.625,
                            "y": 0.6402841197361746,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Pabellón de Arteaga",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.893160469667319,
                            "y": 0.6402841197361746,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Rincón de Romos",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.10683953033268101,
                            "y": 0.30695078640284124,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "San Francisco de los Romo",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.375,
                            "y": 0.30695078640284124,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "San José de Gracia",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.625,
                            "y": 0.30695078640284124,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Tepezalá",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iguzmanvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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": "2021-07-14 18:52:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iguzmanvt",
                "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": "2025-07-15T15:34:07.655829Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iguzmanvt/344.embed",
            "fid": "iguzmanvt:344",
            "filename": "consumo_energia",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/344/9_G3DD18UFGWJKCGN1LO8CXG6D8FZQ03.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/344/2_4SD19HSG5WI8PF74NQD21TA81CS2VT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/344/8_KJC183HXRZBR2O9WP44IAIB36L92RT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/344/9_G3DD18UFGWJKCGN1LO8CXG6D8FZQ03.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iguzmanvt:344",
                "plots": "https://api.plotly.com/v2/plots/iguzmanvt:344",
                "parent": "https://api.plotly.com/v2/folders/home?user=iguzmanvt"
            },
            "owner": "iguzmanvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~iguzmanvt/344/",
            "world_readable": true,
            "date_modified": "2025-07-15T15:34:07.666Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iguzmanvt/344/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "combustibles",
                        "type": "bar",
                        "xsrc": "iguzmanvt:343:c8b3fd",
                        "ysrc": "iguzmanvt:343:ca74df",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(44,62,80,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:343:dbe6f6",
                        "textsrc": "iguzmanvt:343:be83e7",
                        "widthsrc": "iguzmanvt:343:d37264",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "combustibles",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "combustibles",
                        "type": "bar",
                        "xsrc": "iguzmanvt:343:3945d0",
                        "ysrc": "iguzmanvt:343:ff7d69",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(44,62,80,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:343:24c19b",
                        "textsrc": "iguzmanvt:343:4e2149",
                        "widthsrc": "iguzmanvt:343:8aea72",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "combustibles",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "energia_electrica",
                        "type": "bar",
                        "xsrc": "iguzmanvt:343:69671e",
                        "ysrc": "iguzmanvt:343:e077ee",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(52,152,219,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:343:39f8b2",
                        "textsrc": "iguzmanvt:343:b9fc67",
                        "widthsrc": "iguzmanvt:343:79aaa0",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "energia_electrica",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "energia_electrica",
                        "type": "bar",
                        "xsrc": "iguzmanvt:343:895c5c",
                        "ysrc": "iguzmanvt:343:0cb901",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(52,152,219,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:343:5c93dc",
                        "textsrc": "iguzmanvt:343:fdba59",
                        "widthsrc": "iguzmanvt:343:8c2b37",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "energia_electrica",
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 18.596928185969286,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "<b> Consumo de energía y combustibles </b>",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            4.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            0.4937377690802348
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835205,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -7898.899800000001,
                            165876.89580000003
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835198,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50,000",
                            "100,000",
                            "150,000"
                        ],
                        "tickvals": [
                            0,
                            50000,
                            100000,
                            150000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "50,000",
                            "100,000",
                            "150,000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 0,
                                "color": null,
                                "family": null
                            },
                            "text": "tipo_consumo"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 45.70672485878664,
                        "l": 72.06309672063097,
                        "r": 7.305936073059362,
                        "t": 58.12474824346971
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.4937377690802348,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(204,204,204,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0,
                            "x1": 0.4937377690802348,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.5062622309197652,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(204,204,204,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        },
                        {
                            "x0": 0.5062622309197652,
                            "x1": 1,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        }
                    ],
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            0.4,
                            4.6
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0.5062622309197652,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835205,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Año",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": -25.831872837815908,
                            "xanchor": "center",
                            "yanchor": "top",
                            "showarrow": false,
                            "textangle": 0,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0,
                            "y": 0.5,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Millones de pesos",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": -56.72063096720634,
                            "xanchor": "right",
                            "yanchor": "center",
                            "showarrow": false,
                            "textangle": -90,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0.2468688845401174,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Resto de Tamaulipas",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.7531311154598825,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "Nuevo Laredo",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iguzmanvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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": "2021-07-14 18:52:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iguzmanvt",
                "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": "2025-07-15T15:34:02.099324Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iguzmanvt/342.embed",
            "fid": "iguzmanvt:342",
            "filename": "unidades_economicas",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/342/9_1ZUK92GKHAI9CCY48T97B3QBNM7OIR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/342/2_73UL3104OESL4GNS76PG30XP3PLH11.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/342/8_FX8TIQY38A7D4T5A461SKAU3FSJ3TS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/342/9_1ZUK92GKHAI9CCY48T97B3QBNM7OIR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iguzmanvt:342",
                "plots": "https://api.plotly.com/v2/plots/iguzmanvt:342",
                "parent": "https://api.plotly.com/v2/folders/home?user=iguzmanvt"
            },
            "owner": "iguzmanvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~iguzmanvt/342/",
            "world_readable": true,
            "date_modified": "2025-07-15T15:34:02.110Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iguzmanvt/342/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Actividades primarias",
                        "type": "bar",
                        "xsrc": "iguzmanvt:341:c43962",
                        "ysrc": "iguzmanvt:341:035a41",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(44,62,80,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:341:e7b75b",
                        "textsrc": "iguzmanvt:341:991916",
                        "widthsrc": "iguzmanvt:341:2b6834",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Actividades primarias",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "Actividades secundarias",
                        "type": "bar",
                        "xsrc": "iguzmanvt:341:8faac9",
                        "ysrc": "iguzmanvt:341:826062",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(52,152,219,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:341:284e2b",
                        "textsrc": "iguzmanvt:341:4e9a65",
                        "widthsrc": "iguzmanvt:341:cf7189",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Actividades secundarias",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "Actividades terciarias",
                        "type": "bar",
                        "xsrc": "iguzmanvt:341:a36d63",
                        "ysrc": "iguzmanvt:341:bf1ea6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(231,76,60,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:341:4c9217",
                        "textsrc": "iguzmanvt:341:1abc89",
                        "widthsrc": "iguzmanvt:341:34390f",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Actividades terciarias",
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 18.596928185969286,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "<b> Unidades económicas por tipo de actividad </b>",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            4.6
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Año"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835205,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -22517.800000000003,
                            472873.8
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Número de unidades"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835198,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "100,000",
                            "200,000",
                            "300,000",
                            "400,000"
                        ],
                        "tickvals": [
                            0,
                            100000,
                            200000,
                            300000,
                            400000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "100,000",
                            "200,000",
                            "300,000",
                            "400,000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 0,
                                "color": null,
                                "family": null
                            },
                            "text": "tipo_actividad"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 45.70672485878664,
                        "l": 72.06309672063097,
                        "r": 7.305936073059362,
                        "t": 46.435250526574734
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(204,204,204,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iguzmanvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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": "2021-07-14 18:52:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iguzmanvt",
                "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": "2025-07-15T15:33:56.226852Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iguzmanvt/340.embed",
            "fid": "iguzmanvt:340",
            "filename": "inversion_total",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/340/9_72DZ76C8S238A4W29VVNRV9WNSQGZ4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/340/2_RICIATT03NLIZG7XGD4LUPJY0N648F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/340/8_L0HN2L38Y1ZML5NSJTIH2ZQSYPRKSG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iguzmanvt/340/9_72DZ76C8S238A4W29VVNRV9WNSQGZ4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iguzmanvt:340",
                "plots": "https://api.plotly.com/v2/plots/iguzmanvt:340",
                "parent": "https://api.plotly.com/v2/folders/home?user=iguzmanvt"
            },
            "owner": "iguzmanvt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~iguzmanvt/340/",
            "world_readable": true,
            "date_modified": "2025-07-15T15:33:56.239Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iguzmanvt/340/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Resto de Tamaulipas",
                        "type": "bar",
                        "xsrc": "iguzmanvt:339:3d8a03",
                        "ysrc": "iguzmanvt:339:530acb",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(44,62,80,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:339:88dd45",
                        "textsrc": "iguzmanvt:339:8c81cc",
                        "widthsrc": "iguzmanvt:339:05f524",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Resto de Tamaulipas",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "Nuevo Laredo",
                        "type": "bar",
                        "xsrc": "iguzmanvt:339:e7e11d",
                        "ysrc": "iguzmanvt:339:b37649",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(52,152,219,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "iguzmanvt:339:4b71de",
                        "textsrc": "iguzmanvt:339:256741",
                        "widthsrc": "iguzmanvt:339:ec87f3",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Nuevo Laredo",
                        "orientation": "v",
                        "textposition": "none"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 18.596928185969286,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "<b> Inversión total </b>",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            4.6
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Año"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835205,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": -45,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "2003",
                            "2008",
                            "2013",
                            "2018"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -9346.837015614617,
                            136915.38932790697
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Millones de pesos"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13.283520132835198,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "50,000",
                            "100,000"
                        ],
                        "tickvals": [
                            0,
                            50000,
                            100000
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "50,000",
                            "100,000"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 0,
                                "color": null,
                                "family": null
                            },
                            "text": "municipio_seleccionado"
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 45.70672485878664,
                        "l": 72.06309672063097,
                        "r": 7.305936073059362,
                        "t": 46.435250526574734
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": "rgba(204,204,204,1)",
                                "width": 0.66417600664176,
                                "linetype": "solid"
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": "transparent"
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iguzmanvt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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": "2021-07-14 18:52:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iguzmanvt",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}