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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA2LTI0KzE1JTNBMzQlM0E1OS40Mjk3OTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0yNCsxNyUzQTE5JTNBMjAuNDExNzA5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-24T17:19:20.411709Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MarcoZayasOliva/15.embed",
            "fid": "MarcoZayasOliva:15",
            "filename": "Plot 15",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/MarcoZayasOliva:15/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MarcoZayasOliva/15/2_3RE2G6CGQL6523HDANX5PZXZVMY3IS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MarcoZayasOliva/15/8_VFLX58LM8T536EFGNC4E3ZJB24IMI0.png",
                "list-thumb": "https://api.plotly.com/v2/files/MarcoZayasOliva:15/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MarcoZayasOliva:15",
                "plots": "https://api.plotly.com/v2/plots/MarcoZayasOliva:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=MarcoZayasOliva"
            },
            "owner": "MarcoZayasOliva",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~MarcoZayasOliva/15/",
            "world_readable": true,
            "date_modified": "2025-06-24T17:19:20.426Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MarcoZayasOliva/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "setosa",
                        "type": "scatter",
                        "xsrc": "MarcoZayasOliva:14:ae8aad",
                        "ysrc": "MarcoZayasOliva:14:81904d",
                        "marker": {
                            "line": {
                                "color": "rgba(225,225,225,0.2)",
                                "width": 0.5
                            },
                            "size": 15,
                            "opacity": 0.75
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "versicolor",
                        "type": "scatter",
                        "xsrc": "MarcoZayasOliva:14:e8aca9",
                        "ysrc": "MarcoZayasOliva:14:656858",
                        "marker": {
                            "line": {
                                "color": "rgba(225,225,225,0.2)",
                                "width": 0.5
                            },
                            "size": 15,
                            "opacity": 0.75
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "virginica",
                        "type": "scatter",
                        "xsrc": "MarcoZayasOliva:14:348d5c",
                        "ysrc": "MarcoZayasOliva:14:290cb7",
                        "marker": {
                            "line": {
                                "color": "rgba(225,225,225,0.2)",
                                "width": 0.5
                            },
                            "size": 15,
                            "opacity": 0.75
                        }
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "CP1"
                        },
                        "showline": false
                    },
                    "yaxis": {
                        "title": {
                            "text": "CP2"
                        },
                        "showline": false
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MarcoZayasOliva",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-16 17:14:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MarcoZayasOliva",
                "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-06-24T17:12:25.879225Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cdurisko/5.embed",
            "fid": "cdurisko:5",
            "filename": "WRMT_PostTest_Glass",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cdurisko:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cdurisko/5/2_NQLYIUH32Z0XX985HSZC6WZ5ACEJUZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cdurisko/5/8_JPMTRRJ0YY90O9LASOWIUYWFJPD2SR.png",
                "list-thumb": "https://api.plotly.com/v2/files/cdurisko:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cdurisko:5",
                "plots": "https://api.plotly.com/v2/plots/cdurisko:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=cdurisko"
            },
            "owner": "cdurisko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cdurisko/5/",
            "world_readable": true,
            "date_modified": "2025-06-24T17:12:25.891Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cdurisko/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Intervention"
                            }
                        },
                        "mode": "markers",
                        "name": "Intervention",
                        "side": "negative",
                        "type": "violin",
                        "xsrc": "cdurisko:4:311062",
                        "ysrc": "cdurisko:4:14f690",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(162, 177, 198)",
                            "opacity": 1
                        },
                        "points": "all",
                        "opacity": 1,
                        "visible": true,
                        "pointpos": -1.2,
                        "spanmode": "soft",
                        "bandwidth": 0,
                        "scalemode": "width"
                    },
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Wait List"
                            }
                        },
                        "name": "Wait List",
                        "side": "positive",
                        "type": "violin",
                        "xsrc": "cdurisko:4:311062",
                        "ysrc": "cdurisko:4:fea727",
                        "xaxis": "x",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(13, 118, 191)"
                        },
                        "points": "all",
                        "pointpos": 1.2,
                        "bandwidth": 0
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Post-Test Intervention Vs. Wait List Control"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.6,
                            6.684969529085872
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": false,
                        "tickfont": {
                            "size": 15,
                            "family": "Overpass"
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "automargin": false,
                        "fixedrange": false,
                        "showspikes": false,
                        "ticksuffix": "",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            25,
                            175
                        ],
                        "title": {
                            "text": "Standardized WRMT Score"
                        },
                        "anchor": "x",
                        "domain": [
                            0.05,
                            1
                        ],
                        "nticks": 7,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "automargin": false,
                        "zerolinewidth": 1
                    },
                    "legend": {
                        "x": 1.0354185022026432,
                        "y": 1.0677966101694916
                    },
                    "shapes": [],
                    "autosize": true,
                    "violingap": 0.29000000000000004,
                    "violinmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cdurisko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-24 16:28:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cdurisko",
                "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-06-24T17:05:15.823639Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cdurisko/3.embed",
            "fid": "cdurisko:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cdurisko/3/9_48VDAWUYYAVOSLL7K6JWR0KPR793IM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cdurisko/3/2_CJ765028RMX2QEGLVB0FD0RAZXL4CZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cdurisko/3/8_N59BUDDB74URBQ0U88BQ827SBM48UH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cdurisko/3/9_48VDAWUYYAVOSLL7K6JWR0KPR793IM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cdurisko:3",
                "plots": "https://api.plotly.com/v2/plots/cdurisko:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=cdurisko"
            },
            "owner": "cdurisko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cdurisko/3/",
            "world_readable": true,
            "date_modified": "2025-06-24T17:05:15.834Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cdurisko/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Intervention"
                            }
                        },
                        "mode": "markers",
                        "name": "Intervention",
                        "side": "negative",
                        "type": "violin",
                        "xsrc": "cdurisko:2:938170",
                        "ysrc": "cdurisko:2:116e41",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(162, 177, 198)",
                            "opacity": 1
                        },
                        "points": "all",
                        "opacity": 1,
                        "visible": true,
                        "pointpos": -1.2,
                        "spanmode": "soft",
                        "bandwidth": 0,
                        "scalemode": "width"
                    },
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Wait List"
                            }
                        },
                        "name": "Wait List",
                        "side": "positive",
                        "type": "violin",
                        "xsrc": "cdurisko:2:938170",
                        "ysrc": "cdurisko:2:468e04",
                        "xaxis": "x",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(13, 118, 191)"
                        },
                        "points": "all",
                        "pointpos": 1.2,
                        "bandwidth": 0
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Post-Test Intervention Vs. Wait List Control"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.6,
                            6.684969529085872
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": false,
                        "tickfont": {
                            "size": 15,
                            "family": "Overpass"
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "automargin": false,
                        "fixedrange": false,
                        "showspikes": false,
                        "ticksuffix": "",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            25,
                            175
                        ],
                        "title": {
                            "text": "Standardized WRMT Score"
                        },
                        "anchor": "x",
                        "domain": [
                            0.05,
                            1
                        ],
                        "nticks": 7,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "automargin": false,
                        "zerolinewidth": 1
                    },
                    "legend": {
                        "x": 1.0354185022026432,
                        "y": 1.0677966101694916
                    },
                    "shapes": [],
                    "autosize": true,
                    "violingap": 0.29000000000000004,
                    "violinmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cdurisko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-24 16:28:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cdurisko",
                "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-06-24T17:01:17.471486Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Estephanie/3.embed",
            "fid": "Estephanie:3",
            "filename": "teste2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Estephanie:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Estephanie:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Estephanie:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Estephanie:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Estephanie:3",
                "plots": "https://api.plotly.com/v2/plots/Estephanie:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Estephanie"
            },
            "owner": "Estephanie",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Estephanie/3/",
            "world_readable": true,
            "date_modified": "2025-06-24T19:26:40.057Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Estephanie/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "lat": "lat",
                                "lon": "long",
                                "text": "NM_MUN",
                                "marker": {
                                    "size": "DO_EM ",
                                    "color": "DO_EM "
                                },
                                "textposition": "DO_EF"
                            }
                        },
                        "mode": "markers",
                        "name": "Mapa",
                        "type": "scattermapbox",
                        "latsrc": "Estephanie:2:e0ab97",
                        "lonsrc": "Estephanie:2:b5341a",
                        "marker": {
                            "cmax": 4672,
                            "cmin": 19,
                            "meta": {
                                "columnNames": {
                                    "size": "DO_EM ",
                                    "color": "DO_EM "
                                }
                            },
                            "cauto": false,
                            "color": "---",
                            "opacity": 0.76,
                            "sizemin": 6,
                            "sizeref": 2.308148148148148,
                            "sizesrc": "Estephanie:2:802c17",
                            "colorbar": {
                                "x": 0.8598279556849425,
                                "y": 0.6100000000000003,
                                "title": {
                                    "text": ""
                                }
                            },
                            "sizemode": "area",
                            "showscale": false,
                            "reversescale": false
                        },
                        "textsrc": "Estephanie:2:010950",
                        "visible": true,
                        "textfont": {
                            "size": 6,
                            "family": "Arial"
                        },
                        "hoverinfo": "text",
                        "hoverlabel": {
                            "align": "left"
                        },
                        "showlegend": true,
                        "legendgroup": 1,
                        "textposition": "middle center",
                        "hovertemplate": "",
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "lat",
                                "lon": "long",
                                "text": "NM_MUN",
                                "marker": {
                                    "size": "MA_EM",
                                    "color": "NE_EF"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Mapa 2",
                        "type": "scattermapbox",
                        "latsrc": "Estephanie:6:cf47ed",
                        "lonsrc": "Estephanie:6:91d297",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "MA_EM",
                                    "color": "NE_EF"
                                }
                            },
                            "color": "---",
                            "sizemin": 4,
                            "sizeref": 46.98962962962963,
                            "sizesrc": "Estephanie:2:9fa847",
                            "sizemode": "area"
                        },
                        "subplot": "mapbox2",
                        "textsrc": "Estephanie:2:010950",
                        "visible": true,
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": 2,
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NM_MUN",
                                "y": "MA_EF",
                                "text": "NM_MUN",
                                "marker": {
                                    "color": ""
                                },
                                "textposition": "lat"
                            }
                        },
                        "name": "Grafico de barras",
                        "type": "bar",
                        "xsrc": "Estephanie:2:010950",
                        "ysrc": "Estephanie:2:099787",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "fid"
                                }
                            },
                            "color": "#00cc96"
                        },
                        "textsrc": "Estephanie:2:010950",
                        "hoverinfo": "text",
                        "textangle": "auto",
                        "cliponaxis": true,
                        "showlegend": false,
                        "orientation": "v",
                        "texttemplate": "",
                        "constraintext": "outside",
                        "textpositionsrc": "Estephanie:2:e0ab97"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NM_MUN",
                                "y": "DO_EM "
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Estephanie:5:cc2560",
                        "ysrc": "Estephanie:5:032d98",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false,
                        "orientation": "v"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "shape": "spline",
                            "smoothing": 0.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "NM_MUN",
                                "y": "DO_EF"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "Estephanie:2:010950",
                        "ysrc": "Estephanie:2:80463c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "groupnorm": "",
                        "stackgaps": "interpolate",
                        "showlegend": false,
                        "stackgroup": 1,
                        "connectgaps": false,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "DO_EM ",
                                "y": "DO_EF"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Estephanie:6:a566c6",
                        "ysrc": "Estephanie:6:2063cc",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showlegend": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 10,
                        "color": "rgb(0, 0, 0)",
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.44,
                        "text": "Teste"
                    },
                    "width": 1076,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            61.5
                        ],
                        "title": {
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Municipios"
                        },
                        "domain": [
                            0,
                            0.25
                        ],
                        "showgrid": false,
                        "showline": false,
                        "autorange": true,
                        "tickangle": 45,
                        "overlaying": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            348998.94736842107
                        ],
                        "title": {
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "alunos"
                        },
                        "domain": [
                            0,
                            0.375
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "bargap": 0.39,
                    "height": 1000,
                    "legend": {
                        "x": 0.3746455744432069,
                        "y": 0.7524013157894736,
                        "font": {
                            "family": "Courier New"
                        },
                        "valign": "bottom",
                        "xanchor": "left",
                        "yanchor": "middle",
                        "itemsizing": "constant",
                        "traceorder": "grouped",
                        "tracegroupgap": 13
                    },
                    "mapbox": {
                        "zoom": 3.3699204215480294,
                        "pitch": 0,
                        "style": "basic",
                        "center": {
                            "lat": -3.0427925902079664,
                            "lon": -62.63311867960408
                        },
                        "domain": {
                            "x": [
                                0,
                                0.5
                            ],
                            "y": [
                                0.75,
                                1
                            ]
                        },
                        "layers": [
                            {
                                "name": "Layer 0",
                                "below": "",
                                "source": [
                                    "mapbox://styles/lbencz/cmc06r3jz006d01ry4wvjddwx"
                                ],
                                "sourcetype": "raster"
                            }
                        ],
                        "bearing": 0
                    },
                    "margin": {
                        "b": 100
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            0,
                            61
                        ],
                        "anchor": "y2",
                        "domain": [
                            0.6340579710144928,
                            1
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "xaxis3": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            0,
                            61
                        ],
                        "anchor": "y3",
                        "domain": [
                            0.625,
                            1
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "xaxis4": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            -427.5480852005805,
                            6392.54808520058
                        ],
                        "anchor": "y4",
                        "domain": [
                            0.32,
                            0.625
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -231.16666666666669,
                            4932.166666666667
                        ],
                        "anchor": "x2",
                        "domain": [
                            0,
                            0.5048840579710142
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            12637.038649972781
                        ],
                        "anchor": "x3",
                        "domain": [
                            0.625,
                            1
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -929.8097473975395,
                            14480.80974739754
                        ],
                        "anchor": "x4",
                        "domain": [
                            0,
                            0.4
                        ],
                        "autorange": true,
                        "overlaying": false
                    },
                    "barmode": "overlay",
                    "barnorm": "percent",
                    "mapbox2": {
                        "zoom": 3.975569173820628,
                        "pitch": 0,
                        "center": {
                            "lat": -12.812998384966733,
                            "lon": -43.04099661373664
                        },
                        "domain": {
                            "x": [
                                0,
                                0.5
                            ],
                            "y": [
                                0.5,
                                0.75
                            ]
                        },
                        "layers": [
                            {
                                "name": "Layer 0",
                                "below": "traces",
                                "source": [
                                    "mapbox://styles/lbencz/cmc06r3jz006d01ry4wvjddwx"
                                ],
                                "sourcetype": "raster"
                            }
                        ],
                        "bearing": 0
                    },
                    "modebar": {
                        "color": "rgba(119, 90, 90, 0.3)",
                        "orientation": "v"
                    },
                    "autosize": false,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "clickmode": "event+select",
                    "hovermode": "closest",
                    "hoverlabel": {
                        "font": {}
                    },
                    "showlegend": true,
                    "bargroupgap": 0,
                    "uniformtext": {
                        "mode": false
                    },
                    "paper_bgcolor": "rgb(249, 236, 236)"
                }
            },
            "height": 1000,
            "width": 1076,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Estephanie",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-06-23 22:22:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Estephanie",
                "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-06-24T16:59:09.388131Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cdurisko/1.embed",
            "fid": "cdurisko:1",
            "filename": "WRMT_PreTest_Glass",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/cdurisko:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cdurisko/1/2_VIXEXA04204UBC3GULA1VJ5NXC8OBH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cdurisko/1/8_W81Q2QQP7FYOHXRZPYQPTJDFVM0TN2.png",
                "list-thumb": "https://api.plotly.com/v2/files/cdurisko:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cdurisko:1",
                "plots": "https://api.plotly.com/v2/plots/cdurisko:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=cdurisko"
            },
            "owner": "cdurisko",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~cdurisko/1/",
            "world_readable": true,
            "date_modified": "2025-06-24T16:59:09.397Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cdurisko/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Intervention"
                            }
                        },
                        "mode": "markers",
                        "name": "Intervention",
                        "side": "negative",
                        "type": "violin",
                        "xsrc": "cdurisko:0:4b07f2",
                        "ysrc": "cdurisko:0:fb4087",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(162, 177, 198)",
                            "opacity": 1
                        },
                        "points": "all",
                        "opacity": 1,
                        "visible": true,
                        "pointpos": -1.2,
                        "spanmode": "soft",
                        "bandwidth": 0,
                        "scalemode": "width"
                    },
                    {
                        "box": {
                            "line": {
                                "width": 1
                            },
                            "width": 0.5,
                            "visible": true
                        },
                        "meta": {
                            "columnNames": {
                                "x": "WRMT Test",
                                "y": "Wait List"
                            }
                        },
                        "name": "Wait List",
                        "side": "positive",
                        "type": "violin",
                        "xsrc": "cdurisko:0:4b07f2",
                        "ysrc": "cdurisko:0:6b6129",
                        "xaxis": "x",
                        "yaxis": "y",
                        "jitter": 0,
                        "marker": {
                            "color": "rgb(13, 118, 191)"
                        },
                        "points": "all",
                        "pointpos": 1.2,
                        "bandwidth": 0
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Pre-Test Intervention Vs. Wait List Control "
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.6,
                            6.684969529085872
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": false,
                        "tickfont": {
                            "size": 15,
                            "family": "Overpass"
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "automargin": false,
                        "fixedrange": false,
                        "showspikes": false,
                        "ticksuffix": "",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            25,
                            175
                        ],
                        "title": {
                            "text": "Standardized WRMT Score"
                        },
                        "anchor": "x",
                        "domain": [
                            0.05,
                            1
                        ],
                        "nticks": 7,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "automargin": false,
                        "zerolinewidth": 1
                    },
                    "legend": {
                        "x": 1.0354185022026432,
                        "y": 1.0677966101694916
                    },
                    "shapes": [],
                    "autosize": true,
                    "violingap": 0.29000000000000004,
                    "violinmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cdurisko",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-24 16:28:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cdurisko",
                "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-06-24T16:58:48.708262Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~BLAbbbbbb87/1.embed",
            "fid": "BLAbbbbbb87:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/BLAbbbbbb87:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/BLAbbbbbb87/1/2_ZHR9BYJPS1EA50RHR95CFMTUB7ZKLQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/BLAbbbbbb87/1/8_AP9EJM8BZBCIQ31CBR3T142HIFT1OY.png",
                "list-thumb": "https://api.plotly.com/v2/files/BLAbbbbbb87:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/BLAbbbbbb87:1",
                "plots": "https://api.plotly.com/v2/plots/BLAbbbbbb87:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=BLAbbbbbb87"
            },
            "owner": "BLAbbbbbb87",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~BLAbbbbbb87/1/",
            "world_readable": true,
            "date_modified": "2025-06-24T16:58:48.720Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~BLAbbbbbb87/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x",
                                "y": "data.0.y",
                                "error_y": {
                                    "array": "data.1.x"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "BLAbbbbbb87:0:d4edaf",
                        "ysrc": "BLAbbbbbb87:0:b91711",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "data.1.x"
                                }
                            },
                            "type": "data",
                            "color": "#636efa",
                            "value": 10,
                            "width": 4,
                            "visible": true,
                            "arraysrc": "BLAbbbbbb87:0:f6ed85",
                            "symmetric": true,
                            "thickness": 2,
                            "valueminus": 10
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "ysrc": "BLAbbbbbb87:0:f57079"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Control (without yeast) after 48 hours"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.33874743927421713,
                            5.338747439274217
                        ],
                        "title": {
                            "text": "<br>"
                        },
                        "showline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.05205907858333336,
                            10.679073266916667
                        ],
                        "title": {
                            "text": "number of mung beans germinated"
                        },
                        "autorange": true
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "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
                                    }
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "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": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#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": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~BLAbbbbbb87",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-24 16:35:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "BLAbbbbbb87",
                "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-06-24T16:48:46.398765Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dlopezmontero/2.embed",
            "fid": "dlopezmontero:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dlopezmontero/2/9_A1VYTS9W7JIXYJ0JRSLOOB70MDSJ7W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dlopezmontero/2/2_YFK44HUOU0F1JOVYKQH7CK2QQ9JI3W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dlopezmontero/2/8_N868QYAYCM4RDT4JPNTE1UIEGGJ9Y7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dlopezmontero/2/9_A1VYTS9W7JIXYJ0JRSLOOB70MDSJ7W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dlopezmontero:2",
                "plots": "https://api.plotly.com/v2/plots/dlopezmontero:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=dlopezmontero"
            },
            "owner": "dlopezmontero",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~dlopezmontero/2/",
            "world_readable": true,
            "date_modified": "2025-06-24T16:48:46.410Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dlopezmontero/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5532f3",
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "ML"
                            }
                        },
                        "name": "%{meta.columnNames.y}",
                        "type": "bar",
                        "xsrc": "dlopezmontero:0:177019",
                        "ysrc": "dlopezmontero:0:0db875",
                        "orientation": "v"
                    },
                    {
                        "uid": "d74aa9",
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "AD"
                            }
                        },
                        "name": "%{meta.columnNames.y}",
                        "type": "bar",
                        "xsrc": "dlopezmontero:0:177019",
                        "ysrc": "dlopezmontero:0:6e3ef1",
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "uid": "8fb81f",
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Total"
                            }
                        },
                        "mode": "lines",
                        "name": "%{meta.columnNames.y}",
                        "type": "scatter",
                        "xsrc": "dlopezmontero:0:177019",
                        "ysrc": "dlopezmontero:0:8255ef",
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Evolución de la literatura disponible 2000 - 2025"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1999.5,
                            2024.5
                        ],
                        "title": {
                            "font": {
                                "size": 15,
                                "family": "Arial"
                            },
                            "text": "Año"
                        },
                        "showgrid": false,
                        "showline": false,
                        "autorange": true,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 0,
                        "linewidth": 1
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            0,
                            37422.10526315789
                        ],
                        "title": {
                            "text": "Cantidad de Artículos"
                        },
                        "autorange": true,
                        "gridcolor": "rgb(214, 214, 214)",
                        "gridwidth": 2
                    },
                    "legend": {
                        "x": 0.040243937644341726,
                        "y": 0.9617117117117117,
                        "font": {
                            "size": 11,
                            "color": "rgb(0, 0, 0)",
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 13,
                                "color": "rgb(3, 3, 3)",
                                "family": "Arial"
                            },
                            "text": "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Leyenda"
                        },
                        "xanchor": "auto",
                        "itemsizing": "constant",
                        "borderwidth": 1
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dlopezmontero",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2025-06-24 16:45:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dlopezmontero",
                "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-06-24T16:33:11.791554Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~juandiguio/1.embed",
            "fid": "juandiguio:1",
            "filename": "grafica comparativa entre los grupos a,b y c",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/juandiguio/1/9_7VBA6BM41UU9P1O7CFQICMMFNNCTHM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/juandiguio/1/2_KEQOF6Z8H9LPCQCA9D08Q6U9KK8O4A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/juandiguio/1/8_4XJ58TQ5EZJYQK3YFWFCKY1YC0AEQ6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/juandiguio/1/9_7VBA6BM41UU9P1O7CFQICMMFNNCTHM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/juandiguio:1",
                "plots": "https://api.plotly.com/v2/plots/juandiguio:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=juandiguio"
            },
            "owner": "juandiguio",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~juandiguio/1/",
            "world_readable": true,
            "date_modified": "2025-06-24T16:33:11.803Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~juandiguio/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "ysrc": "juandiguio:0:9ed46e"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "ysrc": "juandiguio:0:848c02",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "ysrc": "juandiguio:0:3f2358",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "range": [
                            0,
                            30
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.8555555555555557,
                            24.255555555555556
                        ],
                        "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/~juandiguio",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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-06-24 16:31:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "juandiguio",
                "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-06-24T15:56:14.828657Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~a.danselmo/2.embed",
            "fid": "a.danselmo:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/a.danselmo/2/9_IWFG8IN6VQVDEHW0VNP1YR5BGKV2O5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/a.danselmo/2/2_F14Z6HS4KFYUVISP4INWDUYC5YLYKJ.png",
                "block-thumb": "https://api.plotly.com/v2/files/a.danselmo:2/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/a.danselmo/2/9_IWFG8IN6VQVDEHW0VNP1YR5BGKV2O5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/a.danselmo:2",
                "plots": "https://api.plotly.com/v2/plots/a.danselmo:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=a.danselmo"
            },
            "owner": "a.danselmo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~a.danselmo/2/",
            "world_readable": true,
            "date_modified": "2025-06-25T10:38:42.238Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~a.danselmo/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "69fe21",
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "Nouns",
                                "marker": {
                                    "size": "Nouns",
                                    "color": "Finnish"
                                }
                            }
                        },
                        "name": "F-Nouns",
                        "type": "box",
                        "ysrc": "a.danselmo:1:82d15b",
                        "xaxis": "x2",
                        "yaxis": "y",
                        "jitter": 1,
                        "marker": {
                            "line": {
                                "color": "rgb(146, 53, 53)"
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Nouns",
                                    "color": "Finnish"
                                }
                            },
                            "color": "rgb(81, 180, 149)",
                            "symbol": "circle",
                            "sizeref": 0.04938271604938271,
                            "sizesrc": "a.danselmo:1:82d15b",
                            "sizemode": "area"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "inherit": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "orientation": "v",
                        "whiskerwidth": 0.41
                    },
                    {
                        "uid": "bc07c2",
                        "line": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "Verbs"
                            }
                        },
                        "name": "F-Verbs",
                        "type": "box",
                        "ysrc": "a.danselmo:1:77d03a",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "inherit": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "orientation": "v",
                        "whiskerwidth": 0.41
                    },
                    {
                        "uid": "fdfb64",
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "Adjectives"
                            }
                        },
                        "name": "F-Adjectives",
                        "type": "box",
                        "ysrc": "a.danselmo:1:8b37a5",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "inherit": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "orientation": "v",
                        "whiskerwidth": 0.41
                    },
                    {
                        "uid": "a035b0",
                        "line": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "Noun"
                            }
                        },
                        "name": "J-Nouns",
                        "type": "box",
                        "ysrc": "a.danselmo:3:84543c",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "inherit": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "orientation": "v",
                        "whiskerwidth": 0.41
                    },
                    {
                        "uid": "b2b265",
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "Verbs"
                            }
                        },
                        "name": "J-Verbs",
                        "type": "box",
                        "ysrc": "a.danselmo:3:c3e5a4",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "inherit": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "orientation": "v",
                        "whiskerwidth": 0.41
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Adjectives"
                            }
                        },
                        "name": "J-Adjectives",
                        "type": "box",
                        "ysrc": "a.danselmo:3:83962d",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Nouns"
                            }
                        },
                        "name": "S-Nouns",
                        "type": "box",
                        "ysrc": "a.danselmo:4:bce2a9",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Verbs"
                            }
                        },
                        "name": "S-Verbs",
                        "type": "box",
                        "ysrc": "a.danselmo:4:a52ba9",
                        "xaxis": "x2",
                        "jitter": 0.99,
                        "marker": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Adjectives"
                            }
                        },
                        "name": "S-Adjectives",
                        "type": "box",
                        "ysrc": "a.danselmo:4:76f0ad",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "boxmean": true,
                        "hoveron": "boxes+points",
                        "pointpos": 0,
                        "boxpoints": "all",
                        "hoverinfo": "x+y+name",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Nouns"
                            }
                        },
                        "name": "T-Nouns",
                        "type": "box",
                        "ysrc": "a.danselmo:5:5603b0",
                        "xaxis": "x2",
                        "jitter": 1,
                        "marker": {
                            "color": "rgb(81, 180, 149)"
                        },
                        "boxmean": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(252, 141, 98)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Verbs"
                            }
                        },
                        "name": "T-Verbs",
                        "type": "box",
                        "ysrc": "a.danselmo:5:526368",
                        "xaxis": "x2",
                        "jitter": 1,
                        "boxmean": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "whiskerwidth": 0.41
                    },
                    {
                        "line": {
                            "color": "rgb(23, 190, 207)"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "Adjectives"
                            }
                        },
                        "name": "T-Adjectives",
                        "type": "box",
                        "ysrc": "a.danselmo:5:e42cb7",
                        "xaxis": "x2",
                        "jitter": 1,
                        "boxmean": true,
                        "pointpos": 0,
                        "boxpoints": "all",
                        "whiskerwidth": 0.41
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "family": "Arial"
                    },
                    "width": 1200,
                    "yaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            -5.555555555555557,
                            105.55555555555556
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 17
                            }
                        },
                        "anchor": "x",
                        "showline": true,
                        "tickfont": {
                            "size": 16
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "linewidth": 1,
                        "showspikes": false,
                        "showexponent": "all",
                        "separatethousands": false
                    },
                    "boxgap": 0.31000000000000005,
                    "height": 812,
                    "legend": {
                        "x": 0.9932679928236399,
                        "y": 1.0926007954309842,
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<br>"
                        }
                    },
                    "margin": {
                        "b": 60,
                        "l": 40,
                        "r": 20,
                        "t": 10
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            11.5
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 15
                        },
                        "zeroline": false,
                        "autorange": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                11.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": true
                    },
                    "boxmode": "overlay",
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": false,
                    "boxgroupgap": 0.3
                }
            },
            "height": 812,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~a.danselmo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-24 15:24:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "a.danselmo",
                "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-06-24T15:34:59.429791Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sarahaxe/82.embed",
            "fid": "sarahaxe:82",
            "filename": "state_counts",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sarahaxe:82/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sarahaxe/82/2_2TCTWGRCLGZGX0B6RRCAVEXT4BMGXP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sarahaxe/82/8_UQRC5ZG3K3OCXHSL7GU38FM40FGKBZ.png",
                "list-thumb": "https://api.plotly.com/v2/files/sarahaxe:82/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sarahaxe:82",
                "plots": "https://api.plotly.com/v2/plots/sarahaxe:82",
                "parent": "https://api.plotly.com/v2/folders/home?user=sarahaxe"
            },
            "owner": "sarahaxe",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 28,
            "web_url": "https://chart-studio.plotly.com/~sarahaxe/82/",
            "world_readable": true,
            "date_modified": "2025-06-24T15:34:59.438Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sarahaxe/82/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Arkansas",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:591443",
                        "ysrc": "sarahaxe:81:a1b3e2",
                        "marker": {
                            "color": "rgb(196,141,0)"
                        },
                        "textsrc": "sarahaxe:81:7bbbca",
                        "textposition": "outside",
                        "hovertemplate": "<b>Arkansas</b><br>Total Award: $68,827<br>Number of Awards:2<extra></extra>"
                    },
                    {
                        "name": "Oklahoma",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:f4ab96",
                        "ysrc": "sarahaxe:81:522032",
                        "marker": {
                            "color": "rgb(185,210,216)"
                        },
                        "textsrc": "sarahaxe:81:899ba1",
                        "textposition": "outside",
                        "hovertemplate": "<b>Oklahoma</b><br>Total Award: $602,116<br>Number of Awards:14<extra></extra>"
                    },
                    {
                        "name": "Iowa",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:d808ca",
                        "ysrc": "sarahaxe:81:68fdc3",
                        "marker": {
                            "color": "rgb(0,179,153)"
                        },
                        "textsrc": "sarahaxe:81:fbc728",
                        "textposition": "outside",
                        "hovertemplate": "<b>Iowa</b><br>Total Award: $602,757<br>Number of Awards:14<extra></extra>"
                    },
                    {
                        "name": "Nebraska",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:c921ce",
                        "ysrc": "sarahaxe:81:05ea55",
                        "marker": {
                            "color": "rgb(0,228,195)"
                        },
                        "textsrc": "sarahaxe:81:7648d2",
                        "textposition": "outside",
                        "hovertemplate": "<b>Nebraska</b><br>Total Award: $659,890<br>Number of Awards:16<extra></extra>"
                    },
                    {
                        "name": "Missouri",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:cd3b6e",
                        "ysrc": "sarahaxe:81:904e47",
                        "marker": {
                            "color": "rgb(255,183,0)"
                        },
                        "textsrc": "sarahaxe:81:ad194a",
                        "textposition": "outside",
                        "hovertemplate": "<b>Missouri</b><br>Total Award: $747,351<br>Number of Awards:18<extra></extra>"
                    },
                    {
                        "name": "Kansas",
                        "type": "bar",
                        "xsrc": "sarahaxe:81:bd7e68",
                        "ysrc": "sarahaxe:81:01a45c",
                        "marker": {
                            "color": "rgb(51,83,91)"
                        },
                        "textsrc": "sarahaxe:81:c5d61c",
                        "textposition": "outside",
                        "hovertemplate": "<b>Kansas</b><br>Total Award: $1,044,267<br>Number of Awards:25<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Total Awards by State"
                    },
                    "xaxis": {
                        "title": {
                            "text": "State"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Total Award Amount ($)"
                        },
                        "tickprefix": "$",
                        "separatethousands": true
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false,
                    "uniformtext": {
                        "mode": "hide",
                        "minsize": 12
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sarahaxe",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.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-04-10 00:42:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sarahaxe",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}