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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA5LTA3KzExJTNBNDYlM0ExNS42MTQxNzIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOS0wNysxNiUzQTM5JTNBMDMuNTkxODg5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-09-07T16:39:03.591889Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~khalilhasnaoui11/1.embed",
            "fid": "khalilhasnaoui11:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/khalilhasnaoui11/1/9_R63JWOIXKAYWLIP0N9GH216C5PGD57.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/khalilhasnaoui11/1/2_4LQSMQZ27BZP5J0CAKU7RN8MC2WHSW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/khalilhasnaoui11/1/8_3CZI6JUCN3QVTVZRF9JTKHNTEF26GS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/khalilhasnaoui11/1/9_R63JWOIXKAYWLIP0N9GH216C5PGD57.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/khalilhasnaoui11:1",
                "plots": "https://api.plotly.com/v2/plots/khalilhasnaoui11:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=khalilhasnaoui11"
            },
            "owner": "khalilhasnaoui11",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~khalilhasnaoui11/1/",
            "world_readable": true,
            "date_modified": "2025-09-07T16:39:03.610Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~khalilhasnaoui11/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "khalilhasnaoui11:0:8588c4",
                        "ysrc": "khalilhasnaoui11:0:c41af8"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -41.34340286,
                            77.39849854
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -247.85761813444444,
                            61.56952455444445
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~khalilhasnaoui11",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-07 16:32:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "khalilhasnaoui11",
                "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-09-07T16:27:38.232144Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Teofilius/3.embed",
            "fid": "Teofilius:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Teofilius:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Teofilius:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Teofilius/3/8_CO10E3WWBY448T1IDM7UF5K06LXWAH.png",
                "list-thumb": "https://api.plotly.com/v2/files/Teofilius:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Teofilius:3",
                "plots": "https://api.plotly.com/v2/plots/Teofilius:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Teofilius"
            },
            "owner": "Teofilius",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Teofilius/3/",
            "world_readable": true,
            "date_modified": "2025-09-07T16:58:24.106Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Teofilius/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Teofilius:2:772ddf",
                        "ysrc": "Teofilius:2:5844af",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "color": "rgb(39, 57, 234)",
                            "visible": true,
                            "arraysrc": "Teofilius:2:ce9133",
                            "symmetric": true
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.11111111111111112,
                            2.111111111111111
                        ],
                        "title": {
                            "text": "Carbon Concentration"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.43166666666666675,
                            11.201666666666666
                        ],
                        "title": {
                            "text": "Average height (cm) +/- 1SD"
                        },
                        "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/~Teofilius",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-09-22 15:33:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Teofilius",
                "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-09-07T15:40:20.053758Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dbrebner/1.embed",
            "fid": "dbrebner:1",
            "filename": "DNS Data - Nov 2024 RFP",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/dbrebner:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/dbrebner:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dbrebner/1/8_0E3IP608UWBJK8M7541QC2ERTYLK2R.png",
                "list-thumb": "https://api.plotly.com/v2/files/dbrebner:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dbrebner:1",
                "plots": "https://api.plotly.com/v2/plots/dbrebner:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=dbrebner"
            },
            "owner": "dbrebner",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~dbrebner/1/",
            "world_readable": true,
            "date_modified": "2025-09-07T15:40:20.065Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dbrebner/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dbrebner:0:0cacb3",
                        "ysrc": "dbrebner:0:27bdb5"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "DNS Data Supplied in RFP - now imported for modelling"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2024-11-13 00:03:14",
                            "2024-11-25 00:03:56"
                        ],
                        "title": {
                            "text": "DNS Measurements over 12 days on November 2024"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            151036.89979928976,
                            2047927.4355411453
                        ],
                        "title": {
                            "text": "DNS QPS   (~ 900 data points defined)"
                        },
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dbrebner",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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-09-07 15:37:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dbrebner",
                "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-09-07T15:26:52.987048Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JHOAN/1.embed",
            "fid": "JHOAN:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JHOAN/1/9_MPGYJLXCKQIMV95M8NXSTN32C2HDL1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JHOAN/1/2_OGHMKT8QPS8RG1FQ21WLLKGFFQMCZX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JHOAN/1/8_3SVF28CGTDIEQWJ0LA8KA3TLJJYH0Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JHOAN/1/9_MPGYJLXCKQIMV95M8NXSTN32C2HDL1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JHOAN:1",
                "plots": "https://api.plotly.com/v2/plots/JHOAN:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=JHOAN"
            },
            "owner": "JHOAN",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~JHOAN/1/",
            "world_readable": true,
            "date_modified": "2025-09-07T15:26:53.002Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JHOAN/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "temperatura",
                                "y": "ph",
                                "z": "%perdida"
                            }
                        },
                        "mode": "markers",
                        "type": "contour",
                        "xsrc": "JHOAN:0:8a1f24",
                        "ysrc": "JHOAN:0:8e4074",
                        "zsrc": "JHOAN:0:717b39",
                        "contours": {
                            "end": 10,
                            "size": 10,
                            "start": -80
                        },
                        "autocontour": true,
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            24,
                            26
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.8,
                            3.43
                        ],
                        "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/~JHOAN",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-07 15:04:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JHOAN",
                "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-09-07T14:51:53.114796Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~senurii/17.embed",
            "fid": "senurii:17",
            "filename": "Plot 17",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/senurii/17/9_Q5HZKKT317S4LL3Y5XMOR21B496NOO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/senurii/17/2_J6VKXWHOI1UWPILS76JBM85YKRF2VG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/17/8_1B1NUVL1OE9DFE4N78ZBUL6ADUK6TH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/17/9_Q5HZKKT317S4LL3Y5XMOR21B496NOO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/senurii:17",
                "plots": "https://api.plotly.com/v2/plots/senurii:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=senurii"
            },
            "owner": "senurii",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~senurii/17/",
            "world_readable": true,
            "date_modified": "2025-09-07T14:51:53.131Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~senurii/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Accuracy",
                                "y": "FLOPs",
                                "z": "Params",
                                "marker": {
                                    "size": ""
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "senurii:16:6166aa",
                        "ysrc": "senurii:16:81cac8",
                        "zsrc": "senurii:16:59c570",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "Params"
                                }
                            },
                            "size": "6",
                            "sizeref": 289.67703703703705,
                            "sizemode": "area"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.247192953717789,
                                "y": 1.7682246471040473,
                                "z": 0.07342570102127059
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            78,
                            88.25
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            517428.6111111111,
                            590236.3888888889
                        ],
                        "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/~senurii",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-09-07 06:53:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "senurii",
                "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-09-07T14:37:49.642082Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~senurii/15.embed",
            "fid": "senurii:15",
            "filename": "Radar Graph",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/senurii/15/9_ZBX9H5LAX5TFBKHXF07BVSSAI0U3WH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/senurii/15/2_4MD7M3VA1GSNRDNHOX3PBT9YI6XEWW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/15/8_7Z0TCS3XZOU004QBDGCM2C6WLZ8VYS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/15/9_ZBX9H5LAX5TFBKHXF07BVSSAI0U3WH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/senurii:15",
                "plots": "https://api.plotly.com/v2/plots/senurii:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=senurii"
            },
            "owner": "senurii",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~senurii/15/",
            "world_readable": true,
            "date_modified": "2025-09-07T14:37:49.653Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~senurii/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "C",
                                "theta": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Baseline CNN",
                        "rsrc": "senurii:14:d935d7",
                        "type": "scatterpolar",
                        "subplot": "polar",
                        "visible": true,
                        "thetasrc": "senurii:14:e23ab4",
                        "thetaunit": "degrees"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "D",
                                "theta": "B"
                            }
                        },
                        "name": "CNN-K",
                        "rsrc": "senurii:14:869b54",
                        "type": "scatterpolar",
                        "thetasrc": "senurii:14:e23ab4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "E",
                                "theta": "B"
                            }
                        },
                        "name": "CNN-SK",
                        "rsrc": "senurii:14:1a0134",
                        "type": "scatterpolar",
                        "thetasrc": "senurii:14:e23ab4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "F",
                                "theta": "B"
                            }
                        },
                        "name": "CNN-PSK",
                        "rsrc": "senurii:14:ae203c",
                        "type": "scatterpolar",
                        "thetasrc": "senurii:14:e23ab4"
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                104.5480093676815
                            ],
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "linear"
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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/~senurii",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-09-07 06:53:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "senurii",
                "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-09-07T13:26:13.284852Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~senurii/13.embed",
            "fid": "senurii:13",
            "filename": "PCA Variants",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/senurii:13/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/senurii:13/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/13/8_CEQLB7MPPJ9JRK5OYEHGJND9CME430.png",
                "list-thumb": "https://api.plotly.com/v2/files/senurii:13/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/senurii:13",
                "plots": "https://api.plotly.com/v2/plots/senurii:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=senurii"
            },
            "owner": "senurii",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~senurii/13/",
            "world_readable": true,
            "date_modified": "2025-09-13T07:07:56.935Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~senurii/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dot",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Params",
                                "y": "Accuracy",
                                "marker": {
                                    "color": "Dataset"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "CNN-SK",
                        "type": "scatter",
                        "xsrc": "senurii:10:ed910c",
                        "ysrc": "senurii:10:eb8571",
                        "marker": {
                            "line": {
                                "color": "rgb(26, 24, 24)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Dataset"
                                }
                            },
                            "size": 10,
                            "cauto": false,
                            "colorsrc": "senurii:10:052ea2",
                            "colorscale": [
                                [
                                    0,
                                    "#9e0142"
                                ],
                                [
                                    0.1,
                                    "#d53e4f"
                                ],
                                [
                                    0.2,
                                    "#f46d43"
                                ],
                                [
                                    0.3,
                                    "#fdae61"
                                ],
                                [
                                    0.4,
                                    "#fee08b"
                                ],
                                [
                                    0.5,
                                    "#ffffbf"
                                ],
                                [
                                    0.6,
                                    "#e6f598"
                                ],
                                [
                                    0.7,
                                    "#abdda4"
                                ],
                                [
                                    0.8,
                                    "#66c2a5"
                                ],
                                [
                                    0.9,
                                    "#3288bd"
                                ],
                                [
                                    1,
                                    "#5e4fa2"
                                ]
                            ],
                            "reversescale": false
                        },
                        "autocolorscale": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(59, 207, 239)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Params",
                                "y": "Accuracy",
                                "marker": {
                                    "color": "Dataset"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "CNN-PSK (without weights)",
                        "type": "scatter",
                        "xsrc": "senurii:11:6aef50",
                        "ysrc": "senurii:11:da8d22",
                        "marker": {
                            "line": {
                                "color": "rgb(15, 20, 19)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Dataset"
                                }
                            },
                            "size": 10,
                            "symbol": "diamond",
                            "colorsrc": "senurii:11:23d22d",
                            "colorscale": [
                                [
                                    0,
                                    "#9e0142"
                                ],
                                [
                                    0.1,
                                    "#d53e4f"
                                ],
                                [
                                    0.2,
                                    "#f46d43"
                                ],
                                [
                                    0.3,
                                    "#fdae61"
                                ],
                                [
                                    0.4,
                                    "#fee08b"
                                ],
                                [
                                    0.5,
                                    "#ffffbf"
                                ],
                                [
                                    0.6,
                                    "#e6f598"
                                ],
                                [
                                    0.7,
                                    "#abdda4"
                                ],
                                [
                                    0.8,
                                    "#66c2a5"
                                ],
                                [
                                    0.9,
                                    "#3288bd"
                                ],
                                [
                                    1,
                                    "#5e4fa2"
                                ]
                            ]
                        },
                        "stackgroup": null,
                        "autocolorscale": false
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(13, 22, 20)",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Params",
                                "y": "Accuracy",
                                "marker": {
                                    "color": "Dataset"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "CNN-PSK (with weights)",
                        "type": "scatter",
                        "xsrc": "senurii:12:4788fe",
                        "ysrc": "senurii:12:a4cf8a",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Dataset"
                                }
                            },
                            "size": 10,
                            "symbol": "cross",
                            "colorsrc": "senurii:12:4bedaa",
                            "colorscale": [
                                [
                                    0,
                                    "#9e0142"
                                ],
                                [
                                    0.1,
                                    "#d53e4f"
                                ],
                                [
                                    0.2,
                                    "#f46d43"
                                ],
                                [
                                    0.3,
                                    "#fdae61"
                                ],
                                [
                                    0.4,
                                    "#fee08b"
                                ],
                                [
                                    0.5,
                                    "#ffffbf"
                                ],
                                [
                                    0.6,
                                    "#e6f598"
                                ],
                                [
                                    0.7,
                                    "#abdda4"
                                ],
                                [
                                    0.8,
                                    "#66c2a5"
                                ],
                                [
                                    0.9,
                                    "#3288bd"
                                ],
                                [
                                    1,
                                    "#5e4fa2"
                                ]
                            ]
                        },
                        "stackgroup": null,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "dtick": 8,
                        "range": [
                            500064.3157894737,
                            592151.6842105263
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "<b>Parameter Count</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "nticks": 0,
                        "showline": true,
                        "tickmode": "auto",
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            80.13546391752577,
                            100.50453608247423
                        ],
                        "title": {
                            "text": "<b>Accuracy %</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": "ticks",
                        "showline": true,
                        "autorange": false,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 1
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 0.9202453987730062
                    },
                    "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/~senurii",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-09-07 06:53:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "senurii",
                "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-09-07T13:01:56.436837Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~senurii/9.embed",
            "fid": "senurii:9",
            "filename": "SSRP Comparison",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/senurii:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/senurii:9/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/senurii/9/8_KM47RQDP4PZ6BVHFGP96AVOUEUAFNO.png",
                "list-thumb": "https://api.plotly.com/v2/files/senurii:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/senurii:9",
                "plots": "https://api.plotly.com/v2/plots/senurii:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=senurii"
            },
            "owner": "senurii",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~senurii/9/",
            "world_readable": true,
            "date_modified": "2025-09-13T06:55:37.977Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~senurii/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Dataset",
                                "y": "Accuracy"
                            }
                        },
                        "mode": "markers",
                        "name": "CNN-K",
                        "type": "bar",
                        "xsrc": "senurii:6:53ec42",
                        "ysrc": "senurii:6:e67da4",
                        "marker": {
                            "color": "rgb(234, 91, 111)"
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Dataset",
                                "y": "Accuracy"
                            }
                        },
                        "name": "CNN-SK (SSRP)",
                        "type": "bar",
                        "xsrc": "senurii:7:55b8f8",
                        "ysrc": "senurii:7:14c57e",
                        "marker": {
                            "color": "rgb(255, 203, 97)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Dataset",
                                "y": "Accuracy"
                            }
                        },
                        "name": "CNN-SK (SSRP-MS)",
                        "type": "bar",
                        "xsrc": "senurii:8:15d9fb",
                        "ysrc": "senurii:8:6bc290",
                        "marker": {
                            "color": "rgb(147, 218, 151)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Dataset",
                                "y": "Accuracy"
                            }
                        },
                        "name": "CNN-SK (SSRP-T)",
                        "type": "bar",
                        "xsrc": "senurii:5:5ac752",
                        "ysrc": "senurii:5:2290eb",
                        "marker": {
                            "color": "rgb(119, 190, 240)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "title": {
                            "text": "<b>Datasets</b>"
                        },
                        "mirror": "ticks",
                        "tickson": "labels",
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "linear",
                        "autorange": false,
                        "linecolor": "rgb(102, 113, 128)"
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 5,
                        "range": [
                            60,
                            100
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "<b>Accuracy %</b>"
                        },
                        "mirror": "ticks",
                        "showgrid": true,
                        "showline": true,
                        "tickmode": "linear",
                        "autorange": false,
                        "linecolor": "rgb(102, 113, 128)"
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1
                    },
                    "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/~senurii",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-09-07 06:53:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "senurii",
                "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-09-07T11:57:57.954298Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NaserNikandish/33.embed",
            "fid": "NaserNikandish:33",
            "filename": "SAMPLE students_map_dashboard 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/NaserNikandish/33/9_CDO3IWX1EVJY1FNMS12WC3H2TFH5QJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/NaserNikandish/33/2_7KY2P0O20KH6SNWV04IP3UGA2DR1ET.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NaserNikandish/33/8_RKX7VOM42T4NFGLFKRACBM68PAQF6L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NaserNikandish/33/9_CDO3IWX1EVJY1FNMS12WC3H2TFH5QJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NaserNikandish:33",
                "plots": "https://api.plotly.com/v2/plots/NaserNikandish:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=NaserNikandish"
            },
            "owner": "NaserNikandish",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~NaserNikandish/33/",
            "world_readable": true,
            "date_modified": "2025-09-07T11:57:57.965Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NaserNikandish/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers+text",
                        "name": "States",
                        "type": "scattergeo",
                        "latsrc": "NaserNikandish:32:9f7758",
                        "lonsrc": "NaserNikandish:32:5e2e7e",
                        "marker": {
                            "line": {
                                "width": 0.5
                            },
                            "sizemin": 4,
                            "sizeref": 0.1377551020408163,
                            "sizesrc": "NaserNikandish:32:37b72a",
                            "colorbar": {
                                "title": {
                                    "text": "Students"
                                }
                            },
                            "colorsrc": "NaserNikandish:32:205b76",
                            "sizemode": "area",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#ffe6e6"
                                ],
                                [
                                    0.5,
                                    "#ff4d4d"
                                ],
                                [
                                    1,
                                    "#800000"
                                ]
                            ]
                        },
                        "metasrc": "NaserNikandish:32:fe2aba",
                        "textsrc": "NaserNikandish:32:fb98b7",
                        "textfont": {
                            "size": 10
                        },
                        "textposition": "top center",
                        "customdatasrc": "NaserNikandish:32:2c5361",
                        "hovertemplate": "<b>%{text}</b><br>-----------------------------------<br>  Avg GPA: %{customdata[0]:.2f}<br>  Avg Yrs Exp: %{customdata[1]:.2f}<br>  Female: %{customdata[2]:.2f}%<br>-----------------------------------<br>Students: %{customdata[9]}<br>    BAAI: %{customdata[4]} | ISAI: %{customdata[5]} | MSM: %{customdata[6]} | MSF: %{customdata[7]} | FLEX MBA: %{customdata[8]}<br>-----------------------------------<br><b>Years to Complete (1–4):</b><br>  1y:%{customdata[10]}  2y:%{customdata[11]}  3y:%{customdata[12]}  4y:%{customdata[13]}<br>  %{meta}<extra></extra>"
                    },
                    {
                        "name": "Top States",
                        "type": "table",
                        "cells": {
                            "align": "left",
                            "height": 22,
                            "valuessrc": "NaserNikandish:32:602f07"
                        },
                        "domain": {
                            "x": [
                                0.86,
                                0.995
                            ],
                            "y": [
                                0.02,
                                0.4
                            ]
                        },
                        "header": {
                            "fill": {
                                "color": "#f2f2f2"
                            },
                            "font": {
                                "size": 11
                            },
                            "align": "left",
                            "valuessrc": "NaserNikandish:32:427b50"
                        },
                        "columnwidthsrc": "NaserNikandish:32:2a2e85"
                    }
                ],
                "layout": {
                    "geo": {
                        "scope": "usa",
                        "projection": {
                            "type": "albers usa"
                        },
                        "showsubunits": true,
                        "showcountries": false
                    },
                    "title": {
                        "x": 0.5,
                        "text": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>All</i></span><br><span style='font-size:14px'><b>Total:</b> <i>2000</i></span>",
                        "xanchor": "center"
                    },
                    "margin": {
                        "b": 40,
                        "l": 40,
                        "r": 60,
                        "t": 90
                    },
                    "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
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.02,
                            "y": 1.19,
                            "text": "<b>Program</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ],
                    "updatemenus": [
                        {
                            "x": 0.02,
                            "y": 1.14,
                            "pad": {
                                "r": 6,
                                "t": 6
                            },
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    36.116203,
                                                    31.054487,
                                                    27.766279,
                                                    42.165726,
                                                    40.349457,
                                                    40.590752,
                                                    35.630066,
                                                    40.388783,
                                                    40.298904,
                                                    43.326618,
                                                    33.040619,
                                                    37.769337,
                                                    35.747845,
                                                    42.230171,
                                                    33.729759,
                                                    47.400902,
                                                    38.456085,
                                                    39.849426,
                                                    39.063946,
                                                    44.268543,
                                                    37.66814,
                                                    43.933907,
                                                    45.694454,
                                                    41.597782,
                                                    31.169546,
                                                    33.856892,
                                                    39.059811,
                                                    32.806671,
                                                    35.565342,
                                                    38.5266,
                                                    34.969704,
                                                    38.313515,
                                                    40.150032,
                                                    42.011539,
                                                    32.741646,
                                                    44.045876,
                                                    38.491226,
                                                    44.240459,
                                                    41.680893,
                                                    41.12537,
                                                    43.452492,
                                                    44.693947,
                                                    34.840515,
                                                    21.094318,
                                                    44.299782,
                                                    47.528912,
                                                    39.318523,
                                                    46.921925,
                                                    42.755966,
                                                    38.905985,
                                                    61.370716
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -119.681564,
                                                    -97.563461,
                                                    -81.686783,
                                                    -74.948051,
                                                    -88.986137,
                                                    -77.209755,
                                                    -79.806419,
                                                    -82.764915,
                                                    -74.521011,
                                                    -84.536095,
                                                    -83.643074,
                                                    -78.169968,
                                                    -86.692345,
                                                    -71.530106,
                                                    -111.431221,
                                                    -121.490494,
                                                    -92.288368,
                                                    -86.258278,
                                                    -76.802101,
                                                    -89.616508,
                                                    -84.670067,
                                                    -120.55899,
                                                    -93.900192,
                                                    -72.755371,
                                                    -91.867805,
                                                    -80.945007,
                                                    -105.311104,
                                                    -86.79113,
                                                    -96.928917,
                                                    -96.726486,
                                                    -92.373123,
                                                    -117.055374,
                                                    -111.862434,
                                                    -93.210526,
                                                    -89.678696,
                                                    -72.710686,
                                                    -80.954453,
                                                    -114.478828,
                                                    -71.51178,
                                                    -98.268082,
                                                    -71.563896,
                                                    -69.381927,
                                                    -106.248482,
                                                    -157.498337,
                                                    -99.438828,
                                                    -99.784012,
                                                    -75.507141,
                                                    -110.454353,
                                                    -107.30249,
                                                    -77.033418,
                                                    -152.404419
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮ ▮▮▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ·"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "CA",
                                                    "TX",
                                                    "FL",
                                                    "NY",
                                                    "IL",
                                                    "PA",
                                                    "NC",
                                                    "OH",
                                                    "NJ",
                                                    "MI",
                                                    "GA",
                                                    "VA",
                                                    "TN",
                                                    "MA",
                                                    "AZ",
                                                    "WA",
                                                    "MO",
                                                    "IN",
                                                    "MD",
                                                    "WI",
                                                    "KY",
                                                    "OR",
                                                    "MN",
                                                    "CT",
                                                    "LA",
                                                    "SC",
                                                    "CO",
                                                    "AL",
                                                    "OK",
                                                    "KS",
                                                    "AR",
                                                    "NV",
                                                    "UT",
                                                    "IA",
                                                    "MS",
                                                    "VT",
                                                    "WV",
                                                    "ID",
                                                    "RI",
                                                    "NE",
                                                    "NH",
                                                    "ME",
                                                    "NM",
                                                    "HI",
                                                    "SD",
                                                    "ND",
                                                    "DE",
                                                    "MT",
                                                    "WY",
                                                    "DC",
                                                    "AK"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.41,
                                                        3.49,
                                                        47.69,
                                                        22.22,
                                                        77.0,
                                                        32.0,
                                                        49.0,
                                                        23.0,
                                                        35.0,
                                                        216.0,
                                                        0.0,
                                                        53.0,
                                                        116.0,
                                                        47.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.1,
                                                        47.19,
                                                        22.47,
                                                        56.0,
                                                        34.0,
                                                        35.0,
                                                        25.0,
                                                        28.0,
                                                        178.0,
                                                        0.0,
                                                        41.0,
                                                        94.0,
                                                        43.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.23,
                                                        45.89,
                                                        22.6,
                                                        43.0,
                                                        16.0,
                                                        41.0,
                                                        16.0,
                                                        30.0,
                                                        146.0,
                                                        0.0,
                                                        45.0,
                                                        76.0,
                                                        25.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.99,
                                                        38.84,
                                                        23.97,
                                                        33.0,
                                                        21.0,
                                                        31.0,
                                                        13.0,
                                                        23.0,
                                                        121.0,
                                                        0.0,
                                                        31.0,
                                                        67.0,
                                                        23.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.43,
                                                        34.02,
                                                        18.56,
                                                        26.0,
                                                        21.0,
                                                        17.0,
                                                        17.0,
                                                        16.0,
                                                        97.0,
                                                        0.0,
                                                        23.0,
                                                        52.0,
                                                        22.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.54,
                                                        53.09,
                                                        20.99,
                                                        21.0,
                                                        14.0,
                                                        26.0,
                                                        10.0,
                                                        10.0,
                                                        81.0,
                                                        0.0,
                                                        22.0,
                                                        44.0,
                                                        15.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.34,
                                                        47.06,
                                                        16.18,
                                                        21.0,
                                                        9.0,
                                                        20.0,
                                                        7.0,
                                                        11.0,
                                                        68.0,
                                                        0.0,
                                                        12.0,
                                                        35.0,
                                                        21.0
                                                    ],
                                                    [
                                                        3.43,
                                                        3.85,
                                                        44.78,
                                                        17.91,
                                                        27.0,
                                                        9.0,
                                                        12.0,
                                                        11.0,
                                                        8.0,
                                                        67.0,
                                                        0.0,
                                                        14.0,
                                                        39.0,
                                                        14.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.49,
                                                        48.48,
                                                        21.21,
                                                        20.0,
                                                        8.0,
                                                        18.0,
                                                        11.0,
                                                        9.0,
                                                        66.0,
                                                        0.0,
                                                        14.0,
                                                        31.0,
                                                        21.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.5,
                                                        46.88,
                                                        26.56,
                                                        20.0,
                                                        14.0,
                                                        9.0,
                                                        8.0,
                                                        13.0,
                                                        64.0,
                                                        0.0,
                                                        14.0,
                                                        38.0,
                                                        12.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.37,
                                                        45.0,
                                                        26.67,
                                                        18.0,
                                                        14.0,
                                                        14.0,
                                                        4.0,
                                                        10.0,
                                                        60.0,
                                                        0.0,
                                                        10.0,
                                                        32.0,
                                                        18.0
                                                    ],
                                                    [
                                                        3.47,
                                                        3.71,
                                                        37.74,
                                                        24.53,
                                                        17.0,
                                                        12.0,
                                                        12.0,
                                                        4.0,
                                                        8.0,
                                                        53.0,
                                                        0.0,
                                                        8.0,
                                                        31.0,
                                                        14.0
                                                    ],
                                                    [
                                                        3.5,
                                                        3.5,
                                                        39.22,
                                                        21.57,
                                                        21.0,
                                                        6.0,
                                                        13.0,
                                                        8.0,
                                                        3.0,
                                                        51.0,
                                                        0.0,
                                                        10.0,
                                                        30.0,
                                                        11.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.19,
                                                        48.0,
                                                        18.0,
                                                        18.0,
                                                        14.0,
                                                        8.0,
                                                        3.0,
                                                        7.0,
                                                        50.0,
                                                        0.0,
                                                        6.0,
                                                        35.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.35,
                                                        33.33,
                                                        15.56,
                                                        14.0,
                                                        8.0,
                                                        4.0,
                                                        7.0,
                                                        12.0,
                                                        45.0,
                                                        0.0,
                                                        11.0,
                                                        21.0,
                                                        13.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.76,
                                                        38.64,
                                                        27.27,
                                                        15.0,
                                                        10.0,
                                                        8.0,
                                                        6.0,
                                                        5.0,
                                                        44.0,
                                                        0.0,
                                                        6.0,
                                                        23.0,
                                                        15.0
                                                    ],
                                                    [
                                                        3.38,
                                                        2.94,
                                                        45.24,
                                                        19.05,
                                                        15.0,
                                                        6.0,
                                                        8.0,
                                                        5.0,
                                                        8.0,
                                                        42.0,
                                                        0.0,
                                                        7.0,
                                                        26.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.42,
                                                        2.8,
                                                        33.33,
                                                        26.19,
                                                        13.0,
                                                        5.0,
                                                        9.0,
                                                        9.0,
                                                        6.0,
                                                        42.0,
                                                        0.0,
                                                        9.0,
                                                        24.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.35,
                                                        3.45,
                                                        41.03,
                                                        28.21,
                                                        8.0,
                                                        6.0,
                                                        13.0,
                                                        4.0,
                                                        8.0,
                                                        39.0,
                                                        0.0,
                                                        11.0,
                                                        20.0,
                                                        8.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.18,
                                                        38.24,
                                                        23.53,
                                                        16.0,
                                                        8.0,
                                                        2.0,
                                                        3.0,
                                                        5.0,
                                                        34.0,
                                                        0.0,
                                                        7.0,
                                                        24.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.32,
                                                        38.71,
                                                        19.35,
                                                        16.0,
                                                        8.0,
                                                        5.0,
                                                        1.0,
                                                        1.0,
                                                        31.0,
                                                        0.0,
                                                        4.0,
                                                        21.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.5,
                                                        51.61,
                                                        22.58,
                                                        11.0,
                                                        5.0,
                                                        7.0,
                                                        3.0,
                                                        5.0,
                                                        31.0,
                                                        0.0,
                                                        7.0,
                                                        19.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.36,
                                                        4.03,
                                                        41.38,
                                                        34.48,
                                                        15.0,
                                                        4.0,
                                                        6.0,
                                                        2.0,
                                                        2.0,
                                                        29.0,
                                                        0.0,
                                                        7.0,
                                                        18.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.39,
                                                        44.83,
                                                        6.9,
                                                        8.0,
                                                        2.0,
                                                        7.0,
                                                        7.0,
                                                        5.0,
                                                        29.0,
                                                        0.0,
                                                        7.0,
                                                        15.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.76,
                                                        34.62,
                                                        23.08,
                                                        7.0,
                                                        3.0,
                                                        6.0,
                                                        4.0,
                                                        6.0,
                                                        26.0,
                                                        0.0,
                                                        6.0,
                                                        18.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.37,
                                                        56.0,
                                                        20.0,
                                                        3.0,
                                                        4.0,
                                                        10.0,
                                                        5.0,
                                                        3.0,
                                                        25.0,
                                                        0.0,
                                                        4.0,
                                                        16.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.25,
                                                        47.83,
                                                        21.74,
                                                        6.0,
                                                        2.0,
                                                        7.0,
                                                        2.0,
                                                        6.0,
                                                        23.0,
                                                        0.0,
                                                        6.0,
                                                        12.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.02,
                                                        43.48,
                                                        26.09,
                                                        8.0,
                                                        2.0,
                                                        4.0,
                                                        2.0,
                                                        7.0,
                                                        23.0,
                                                        0.0,
                                                        4.0,
                                                        12.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.81,
                                                        21.05,
                                                        21.05,
                                                        6.0,
                                                        3.0,
                                                        3.0,
                                                        4.0,
                                                        3.0,
                                                        19.0,
                                                        0.0,
                                                        3.0,
                                                        14.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.33,
                                                        3.74,
                                                        42.11,
                                                        5.26,
                                                        6.0,
                                                        6.0,
                                                        5.0,
                                                        2.0,
                                                        0.0,
                                                        19.0,
                                                        0.0,
                                                        4.0,
                                                        10.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.38,
                                                        2.59,
                                                        58.82,
                                                        17.65,
                                                        4.0,
                                                        4.0,
                                                        5.0,
                                                        2.0,
                                                        2.0,
                                                        17.0,
                                                        0.0,
                                                        6.0,
                                                        7.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.3,
                                                        47.06,
                                                        23.53,
                                                        8.0,
                                                        2.0,
                                                        3.0,
                                                        0.0,
                                                        4.0,
                                                        17.0,
                                                        0.0,
                                                        5.0,
                                                        9.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.61,
                                                        2.69,
                                                        37.5,
                                                        25.0,
                                                        6.0,
                                                        1.0,
                                                        4.0,
                                                        1.0,
                                                        4.0,
                                                        16.0,
                                                        0.0,
                                                        4.0,
                                                        9.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.77,
                                                        37.5,
                                                        25.0,
                                                        4.0,
                                                        3.0,
                                                        3.0,
                                                        1.0,
                                                        5.0,
                                                        16.0,
                                                        0.0,
                                                        4.0,
                                                        7.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.62,
                                                        61.54,
                                                        23.08,
                                                        3.0,
                                                        5.0,
                                                        1.0,
                                                        3.0,
                                                        1.0,
                                                        13.0,
                                                        0.0,
                                                        4.0,
                                                        5.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.19,
                                                        90.91,
                                                        27.27,
                                                        4.0,
                                                        1.0,
                                                        4.0,
                                                        2.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        4.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.78,
                                                        70.0,
                                                        20.0,
                                                        3.0,
                                                        1.0,
                                                        3.0,
                                                        1.0,
                                                        2.0,
                                                        10.0,
                                                        0.0,
                                                        3.0,
                                                        4.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.43,
                                                        3.5,
                                                        80.0,
                                                        10.0,
                                                        1.0,
                                                        4.0,
                                                        1.0,
                                                        2.0,
                                                        2.0,
                                                        10.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.3,
                                                        2.59,
                                                        22.22,
                                                        11.11,
                                                        2.0,
                                                        2.0,
                                                        3.0,
                                                        2.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.35,
                                                        4.13,
                                                        44.44,
                                                        22.22,
                                                        1.0,
                                                        2.0,
                                                        2.0,
                                                        2.0,
                                                        2.0,
                                                        9.0,
                                                        0.0,
                                                        4.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.5,
                                                        2.54,
                                                        37.5,
                                                        25.0,
                                                        3.0,
                                                        1.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        8.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.29,
                                                        1.99,
                                                        25.0,
                                                        37.5,
                                                        1.0,
                                                        3.0,
                                                        1.0,
                                                        1.0,
                                                        2.0,
                                                        8.0,
                                                        0.0,
                                                        4.0,
                                                        2.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.35,
                                                        3.84,
                                                        42.86,
                                                        14.29,
                                                        4.0,
                                                        1.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        1.0,
                                                        5.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.5,
                                                        3.66,
                                                        50.0,
                                                        33.33,
                                                        1.0,
                                                        3.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.48,
                                                        2.94,
                                                        40.0,
                                                        20.0,
                                                        2.0,
                                                        2.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.53,
                                                        3.64,
                                                        80.0,
                                                        20.0,
                                                        2.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.81,
                                                        100.0,
                                                        50.0,
                                                        1.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.58,
                                                        4.23,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.29,
                                                        1.86,
                                                        33.33,
                                                        33.33,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.09,
                                                        1.42,
                                                        0.0,
                                                        50.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        2.99,
                                                        1.62,
                                                        0.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    216,
                                                    178,
                                                    146,
                                                    121,
                                                    97,
                                                    81,
                                                    68,
                                                    67,
                                                    66,
                                                    64,
                                                    60,
                                                    53,
                                                    51,
                                                    50,
                                                    45,
                                                    44,
                                                    42,
                                                    42,
                                                    39,
                                                    34,
                                                    31,
                                                    31,
                                                    29,
                                                    29,
                                                    26,
                                                    25,
                                                    23,
                                                    23,
                                                    19,
                                                    19,
                                                    17,
                                                    17,
                                                    16,
                                                    16,
                                                    13,
                                                    11,
                                                    10,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    7,
                                                    6,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    3,
                                                    2,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "CA",
                                                        "TX",
                                                        "FL"
                                                    ],
                                                    [
                                                        216,
                                                        178,
                                                        146
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    216,
                                                    178,
                                                    146,
                                                    121,
                                                    97,
                                                    81,
                                                    68,
                                                    67,
                                                    66,
                                                    64,
                                                    60,
                                                    53,
                                                    51,
                                                    50,
                                                    45,
                                                    44,
                                                    42,
                                                    42,
                                                    39,
                                                    34,
                                                    31,
                                                    31,
                                                    29,
                                                    29,
                                                    26,
                                                    25,
                                                    23,
                                                    23,
                                                    19,
                                                    19,
                                                    17,
                                                    17,
                                                    16,
                                                    16,
                                                    13,
                                                    11,
                                                    10,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    7,
                                                    6,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    3,
                                                    2,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.1377551020408163,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>All</i></span><br><span style='font-size:14px'><b>Total:</b> <i>2000</i></span>"
                                        }
                                    ],
                                    "label": "All",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    36.116203,
                                                    31.054487,
                                                    27.766279,
                                                    42.165726,
                                                    40.388783,
                                                    40.349457,
                                                    40.590752,
                                                    35.747845,
                                                    35.630066,
                                                    40.298904,
                                                    43.326618,
                                                    42.230171,
                                                    33.040619,
                                                    37.769337,
                                                    37.66814,
                                                    44.268543,
                                                    47.400902,
                                                    38.456085,
                                                    45.694454,
                                                    33.729759,
                                                    39.849426,
                                                    43.933907,
                                                    41.597782,
                                                    32.806671,
                                                    38.313515,
                                                    39.063946,
                                                    31.169546,
                                                    35.565342,
                                                    40.150032,
                                                    38.5266,
                                                    39.059811,
                                                    44.045876,
                                                    34.840515,
                                                    42.011539,
                                                    34.969704,
                                                    38.491226,
                                                    33.856892,
                                                    32.741646,
                                                    43.452492,
                                                    41.680893,
                                                    44.299782,
                                                    47.528912,
                                                    41.12537,
                                                    44.693947,
                                                    44.240459,
                                                    21.094318,
                                                    39.318523,
                                                    38.905985,
                                                    42.755966
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -119.681564,
                                                    -97.563461,
                                                    -81.686783,
                                                    -74.948051,
                                                    -82.764915,
                                                    -88.986137,
                                                    -77.209755,
                                                    -86.692345,
                                                    -79.806419,
                                                    -74.521011,
                                                    -84.536095,
                                                    -71.530106,
                                                    -83.643074,
                                                    -78.169968,
                                                    -84.670067,
                                                    -89.616508,
                                                    -121.490494,
                                                    -92.288368,
                                                    -93.900192,
                                                    -111.431221,
                                                    -86.258278,
                                                    -120.55899,
                                                    -72.755371,
                                                    -86.79113,
                                                    -117.055374,
                                                    -76.802101,
                                                    -91.867805,
                                                    -96.928917,
                                                    -111.862434,
                                                    -96.726486,
                                                    -105.311104,
                                                    -72.710686,
                                                    -106.248482,
                                                    -93.210526,
                                                    -92.373123,
                                                    -80.954453,
                                                    -80.945007,
                                                    -89.678696,
                                                    -71.563896,
                                                    -71.51178,
                                                    -99.438828,
                                                    -99.784012,
                                                    -98.268082,
                                                    -69.381927,
                                                    -114.478828,
                                                    -157.498337,
                                                    -75.507141,
                                                    -77.033418,
                                                    -107.30249
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮ ▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "CA",
                                                    "TX",
                                                    "FL",
                                                    "NY",
                                                    "OH",
                                                    "IL",
                                                    "PA",
                                                    "TN",
                                                    "NC",
                                                    "NJ",
                                                    "MI",
                                                    "MA",
                                                    "GA",
                                                    "VA",
                                                    "KY",
                                                    "WI",
                                                    "WA",
                                                    "MO",
                                                    "MN",
                                                    "AZ",
                                                    "IN",
                                                    "OR",
                                                    "CT",
                                                    "AL",
                                                    "NV",
                                                    "MD",
                                                    "LA",
                                                    "OK",
                                                    "UT",
                                                    "KS",
                                                    "CO",
                                                    "VT",
                                                    "NM",
                                                    "IA",
                                                    "AR",
                                                    "WV",
                                                    "SC",
                                                    "MS",
                                                    "NH",
                                                    "RI",
                                                    "SD",
                                                    "ND",
                                                    "NE",
                                                    "ME",
                                                    "ID",
                                                    "HI",
                                                    "DE",
                                                    "DC",
                                                    "WY"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.43,
                                                        3.64,
                                                        41.56,
                                                        24.68,
                                                        77.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        77.0,
                                                        0.0,
                                                        18.0,
                                                        43.0,
                                                        16.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.02,
                                                        48.21,
                                                        25.0,
                                                        56.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        56.0,
                                                        0.0,
                                                        11.0,
                                                        32.0,
                                                        13.0
                                                    ],
                                                    [
                                                        3.37,
                                                        3.39,
                                                        44.19,
                                                        23.26,
                                                        43.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        43.0,
                                                        0.0,
                                                        16.0,
                                                        18.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.45,
                                                        2.62,
                                                        33.33,
                                                        27.27,
                                                        33.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        33.0,
                                                        0.0,
                                                        10.0,
                                                        12.0,
                                                        11.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.95,
                                                        51.85,
                                                        22.22,
                                                        27.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        27.0,
                                                        0.0,
                                                        7.0,
                                                        15.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.44,
                                                        4.22,
                                                        34.62,
                                                        19.23,
                                                        26.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        26.0,
                                                        0.0,
                                                        4.0,
                                                        17.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.43,
                                                        2.18,
                                                        57.14,
                                                        9.52,
                                                        21.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        6.0,
                                                        12.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.46,
                                                        3.52,
                                                        52.38,
                                                        23.81,
                                                        21.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        3.0,
                                                        14.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.06,
                                                        42.86,
                                                        19.05,
                                                        21.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        3.0,
                                                        9.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.03,
                                                        55.0,
                                                        25.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        20.0,
                                                        0.0,
                                                        5.0,
                                                        9.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.43,
                                                        3.28,
                                                        45.0,
                                                        30.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        20.0,
                                                        0.0,
                                                        4.0,
                                                        15.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.13,
                                                        50.0,
                                                        22.22,
                                                        18.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        18.0,
                                                        0.0,
                                                        4.0,
                                                        12.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.47,
                                                        3.68,
                                                        33.33,
                                                        33.33,
                                                        18.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        18.0,
                                                        0.0,
                                                        4.0,
                                                        7.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.53,
                                                        4.03,
                                                        47.06,
                                                        17.65,
                                                        17.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        17.0,
                                                        0.0,
                                                        3.0,
                                                        9.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.53,
                                                        3.14,
                                                        43.75,
                                                        31.25,
                                                        16.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        1.0,
                                                        11.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.5,
                                                        3.38,
                                                        50.0,
                                                        25.0,
                                                        16.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        2.0,
                                                        12.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.52,
                                                        4.39,
                                                        26.67,
                                                        40.0,
                                                        15.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        15.0,
                                                        0.0,
                                                        3.0,
                                                        6.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.27,
                                                        60.0,
                                                        20.0,
                                                        15.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        15.0,
                                                        0.0,
                                                        2.0,
                                                        9.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.32,
                                                        4.02,
                                                        40.0,
                                                        46.67,
                                                        15.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        15.0,
                                                        0.0,
                                                        4.0,
                                                        9.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.43,
                                                        3.53,
                                                        64.29,
                                                        14.29,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        5.0,
                                                        6.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.4,
                                                        2.47,
                                                        30.77,
                                                        38.46,
                                                        13.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.4,
                                                        4.46,
                                                        54.55,
                                                        36.36,
                                                        11.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        4.0,
                                                        4.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.33,
                                                        3.1,
                                                        50.0,
                                                        12.5,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.39,
                                                        3.12,
                                                        37.5,
                                                        37.5,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.51,
                                                        2.99,
                                                        37.5,
                                                        12.5,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        2.0,
                                                        4.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.33,
                                                        2.98,
                                                        37.5,
                                                        25.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.48,
                                                        4.18,
                                                        28.57,
                                                        42.86,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.49,
                                                        3.85,
                                                        16.67,
                                                        16.67,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        5.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.54,
                                                        2.25,
                                                        0.0,
                                                        33.33,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.25,
                                                        3.06,
                                                        50.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.85,
                                                        66.67,
                                                        16.67,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.39,
                                                        2.99,
                                                        75.0,
                                                        25.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.22,
                                                        3.6,
                                                        75.0,
                                                        25.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.21,
                                                        3.09,
                                                        50.0,
                                                        25.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.19,
                                                        4.11,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.67,
                                                        2.32,
                                                        66.67,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.34,
                                                        1.05,
                                                        66.67,
                                                        33.33,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.19,
                                                        3.5,
                                                        66.67,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.45,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.9,
                                                        50.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.32,
                                                        2.7,
                                                        0.0,
                                                        50.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.42,
                                                        5.26,
                                                        100.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.32,
                                                        3.09,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.47,
                                                        2.13,
                                                        100.0,
                                                        100.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.26,
                                                        4.59,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.78,
                                                        4.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.54,
                                                        4.94,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.23,
                                                        1.38,
                                                        0.0,
                                                        100.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.72,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    77,
                                                    56,
                                                    43,
                                                    33,
                                                    27,
                                                    26,
                                                    21,
                                                    21,
                                                    21,
                                                    20,
                                                    20,
                                                    18,
                                                    18,
                                                    17,
                                                    16,
                                                    16,
                                                    15,
                                                    15,
                                                    15,
                                                    14,
                                                    13,
                                                    11,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    6,
                                                    6,
                                                    6,
                                                    6,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "CA",
                                                        "TX",
                                                        "FL"
                                                    ],
                                                    [
                                                        77,
                                                        56,
                                                        43
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    77,
                                                    56,
                                                    43,
                                                    33,
                                                    27,
                                                    26,
                                                    21,
                                                    21,
                                                    21,
                                                    20,
                                                    20,
                                                    18,
                                                    18,
                                                    17,
                                                    16,
                                                    16,
                                                    15,
                                                    15,
                                                    15,
                                                    14,
                                                    13,
                                                    11,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    6,
                                                    6,
                                                    6,
                                                    6,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.049107142857142856,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>BAAI</i></span><br><span style='font-size:14px'><b>Total:</b> <i>637</i></span>"
                                        }
                                    ],
                                    "label": "BAAI",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    31.054487,
                                                    36.116203,
                                                    40.349457,
                                                    42.165726,
                                                    27.766279,
                                                    33.040619,
                                                    43.326618,
                                                    40.590752,
                                                    42.230171,
                                                    37.769337,
                                                    47.400902,
                                                    35.630066,
                                                    40.388783,
                                                    33.729759,
                                                    37.66814,
                                                    40.298904,
                                                    44.268543,
                                                    35.747845,
                                                    38.5266,
                                                    39.063946,
                                                    38.456085,
                                                    39.849426,
                                                    43.933907,
                                                    32.741646,
                                                    33.856892,
                                                    45.694454,
                                                    44.240459,
                                                    34.969704,
                                                    44.693947,
                                                    31.169546,
                                                    42.011539,
                                                    21.094318,
                                                    35.565342,
                                                    44.299782,
                                                    41.680893,
                                                    46.921925,
                                                    38.313515,
                                                    41.12537,
                                                    32.806671,
                                                    41.597782,
                                                    39.059811,
                                                    38.491226,
                                                    44.045876,
                                                    61.370716,
                                                    40.150032,
                                                    34.840515,
                                                    43.452492,
                                                    47.528912,
                                                    42.755966
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -97.563461,
                                                    -119.681564,
                                                    -88.986137,
                                                    -74.948051,
                                                    -81.686783,
                                                    -83.643074,
                                                    -84.536095,
                                                    -77.209755,
                                                    -71.530106,
                                                    -78.169968,
                                                    -121.490494,
                                                    -79.806419,
                                                    -82.764915,
                                                    -111.431221,
                                                    -84.670067,
                                                    -74.521011,
                                                    -89.616508,
                                                    -86.692345,
                                                    -96.726486,
                                                    -76.802101,
                                                    -92.288368,
                                                    -86.258278,
                                                    -120.55899,
                                                    -89.678696,
                                                    -80.945007,
                                                    -93.900192,
                                                    -114.478828,
                                                    -92.373123,
                                                    -69.381927,
                                                    -91.867805,
                                                    -93.210526,
                                                    -157.498337,
                                                    -96.928917,
                                                    -99.438828,
                                                    -71.51178,
                                                    -110.454353,
                                                    -117.055374,
                                                    -98.268082,
                                                    -86.79113,
                                                    -72.755371,
                                                    -105.311104,
                                                    -80.954453,
                                                    -72.710686,
                                                    -152.404419,
                                                    -111.862434,
                                                    -106.248482,
                                                    -71.563896,
                                                    -99.784012,
                                                    -107.30249
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮▮ ▮ ▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮▮ ▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "TX",
                                                    "CA",
                                                    "IL",
                                                    "NY",
                                                    "FL",
                                                    "GA",
                                                    "MI",
                                                    "PA",
                                                    "MA",
                                                    "VA",
                                                    "WA",
                                                    "NC",
                                                    "OH",
                                                    "AZ",
                                                    "KY",
                                                    "NJ",
                                                    "WI",
                                                    "TN",
                                                    "KS",
                                                    "MD",
                                                    "MO",
                                                    "IN",
                                                    "OR",
                                                    "MS",
                                                    "SC",
                                                    "MN",
                                                    "ID",
                                                    "AR",
                                                    "ME",
                                                    "LA",
                                                    "IA",
                                                    "HI",
                                                    "OK",
                                                    "SD",
                                                    "RI",
                                                    "MT",
                                                    "NV",
                                                    "NE",
                                                    "AL",
                                                    "CT",
                                                    "CO",
                                                    "WV",
                                                    "VT",
                                                    "AK",
                                                    "UT",
                                                    "NM",
                                                    "NH",
                                                    "ND",
                                                    "WY"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.4,
                                                        2.78,
                                                        44.12,
                                                        26.47,
                                                        0.0,
                                                        34.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        34.0,
                                                        0.0,
                                                        8.0,
                                                        17.0,
                                                        9.0
                                                    ],
                                                    [
                                                        3.36,
                                                        3.59,
                                                        50.0,
                                                        21.88,
                                                        0.0,
                                                        32.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        32.0,
                                                        0.0,
                                                        8.0,
                                                        19.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.42,
                                                        2.75,
                                                        23.81,
                                                        14.29,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        4.0,
                                                        14.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.46,
                                                        3.43,
                                                        23.81,
                                                        19.05,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        21.0,
                                                        0.0,
                                                        6.0,
                                                        13.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.84,
                                                        31.25,
                                                        25.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        5.0,
                                                        7.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.66,
                                                        57.14,
                                                        21.43,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        2.0,
                                                        7.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.38,
                                                        4.47,
                                                        50.0,
                                                        35.71,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        3.0,
                                                        8.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.41,
                                                        2.61,
                                                        57.14,
                                                        21.43,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        2.0,
                                                        6.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.25,
                                                        50.0,
                                                        21.43,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.57,
                                                        3.91,
                                                        33.33,
                                                        41.67,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.63,
                                                        50.0,
                                                        20.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.29,
                                                        4.3,
                                                        55.56,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.41,
                                                        4.35,
                                                        33.33,
                                                        11.11,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.53,
                                                        3.1,
                                                        12.5,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.38,
                                                        4.37,
                                                        25.0,
                                                        12.5,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.09,
                                                        50.0,
                                                        25.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        4.0,
                                                        1.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.31,
                                                        3.31,
                                                        25.0,
                                                        25.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        7.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.55,
                                                        5.14,
                                                        33.33,
                                                        16.67,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.36,
                                                        3.99,
                                                        66.67,
                                                        16.67,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.35,
                                                        2.43,
                                                        50.0,
                                                        16.67,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.34,
                                                        2.72,
                                                        33.33,
                                                        16.67,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.34,
                                                        1.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        3.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.3,
                                                        3.79,
                                                        40.0,
                                                        20.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.61,
                                                        1.86,
                                                        80.0,
                                                        40.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.54,
                                                        3.75,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.44,
                                                        5.74,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.32,
                                                        3.75,
                                                        75.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.45,
                                                        1.8,
                                                        50.0,
                                                        25.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        2.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.6,
                                                        0.0,
                                                        66.67,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        2.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.04,
                                                        33.33,
                                                        33.33,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.28,
                                                        5.67,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.48,
                                                        4.92,
                                                        66.67,
                                                        33.33,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.52,
                                                        1.78,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.56,
                                                        3.96,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.16,
                                                        2.42,
                                                        0.0,
                                                        50.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.66,
                                                        2.86,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.54,
                                                        1.71,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.56,
                                                        4.27,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.69,
                                                        5.58,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.44,
                                                        4.56,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.37,
                                                        2.64,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.54,
                                                        100.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        2.99,
                                                        1.62,
                                                        0.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.66,
                                                        3.1,
                                                        100.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.68,
                                                        3.9,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.9,
                                                        3.54,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.85,
                                                        1.1,
                                                        0.0,
                                                        100.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.27,
                                                        0.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    34,
                                                    32,
                                                    21,
                                                    21,
                                                    16,
                                                    14,
                                                    14,
                                                    14,
                                                    14,
                                                    12,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    6,
                                                    6,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "TX",
                                                        "CA",
                                                        "IL"
                                                    ],
                                                    [
                                                        34,
                                                        32,
                                                        21
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    34,
                                                    32,
                                                    21,
                                                    21,
                                                    16,
                                                    14,
                                                    14,
                                                    14,
                                                    14,
                                                    12,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    6,
                                                    6,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.021683673469387755,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>ISAI</i></span><br><span style='font-size:14px'><b>Total:</b> <i>346</i></span>"
                                        }
                                    ],
                                    "label": "ISAI",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    36.116203,
                                                    27.766279,
                                                    31.054487,
                                                    42.165726,
                                                    40.590752,
                                                    35.630066,
                                                    40.298904,
                                                    40.349457,
                                                    33.040619,
                                                    39.063946,
                                                    35.747845,
                                                    37.769337,
                                                    40.388783,
                                                    33.856892,
                                                    39.849426,
                                                    43.326618,
                                                    38.456085,
                                                    47.400902,
                                                    42.230171,
                                                    43.933907,
                                                    41.597782,
                                                    39.059811,
                                                    31.169546,
                                                    45.694454,
                                                    34.969704,
                                                    37.66814,
                                                    38.5266,
                                                    40.150032,
                                                    44.045876,
                                                    33.729759,
                                                    32.806671,
                                                    35.565342,
                                                    41.680893,
                                                    38.491226,
                                                    38.313515,
                                                    43.452492,
                                                    42.011539,
                                                    34.840515,
                                                    41.12537,
                                                    39.318523,
                                                    44.268543,
                                                    44.299782,
                                                    46.921925,
                                                    44.693947,
                                                    44.240459,
                                                    21.094318,
                                                    32.741646
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -119.681564,
                                                    -81.686783,
                                                    -97.563461,
                                                    -74.948051,
                                                    -77.209755,
                                                    -79.806419,
                                                    -74.521011,
                                                    -88.986137,
                                                    -83.643074,
                                                    -76.802101,
                                                    -86.692345,
                                                    -78.169968,
                                                    -82.764915,
                                                    -80.945007,
                                                    -86.258278,
                                                    -84.536095,
                                                    -92.288368,
                                                    -121.490494,
                                                    -71.530106,
                                                    -120.55899,
                                                    -72.755371,
                                                    -105.311104,
                                                    -91.867805,
                                                    -93.900192,
                                                    -92.373123,
                                                    -84.670067,
                                                    -96.726486,
                                                    -111.862434,
                                                    -72.710686,
                                                    -111.431221,
                                                    -86.79113,
                                                    -96.928917,
                                                    -71.51178,
                                                    -80.954453,
                                                    -117.055374,
                                                    -71.563896,
                                                    -93.210526,
                                                    -106.248482,
                                                    -98.268082,
                                                    -75.507141,
                                                    -89.616508,
                                                    -99.438828,
                                                    -110.454353,
                                                    -69.381927,
                                                    -114.478828,
                                                    -157.498337,
                                                    -89.678696
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "CA",
                                                    "FL",
                                                    "TX",
                                                    "NY",
                                                    "PA",
                                                    "NC",
                                                    "NJ",
                                                    "IL",
                                                    "GA",
                                                    "MD",
                                                    "TN",
                                                    "VA",
                                                    "OH",
                                                    "SC",
                                                    "IN",
                                                    "MI",
                                                    "MO",
                                                    "WA",
                                                    "MA",
                                                    "OR",
                                                    "CT",
                                                    "CO",
                                                    "LA",
                                                    "MN",
                                                    "AR",
                                                    "KY",
                                                    "KS",
                                                    "UT",
                                                    "VT",
                                                    "AZ",
                                                    "AL",
                                                    "OK",
                                                    "RI",
                                                    "WV",
                                                    "NV",
                                                    "NH",
                                                    "IA",
                                                    "NM",
                                                    "NE",
                                                    "DE",
                                                    "WI",
                                                    "SD",
                                                    "MT",
                                                    "ME",
                                                    "ID",
                                                    "HI",
                                                    "MS"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.45,
                                                        3.62,
                                                        53.06,
                                                        20.41,
                                                        0.0,
                                                        0.0,
                                                        49.0,
                                                        0.0,
                                                        0.0,
                                                        49.0,
                                                        0.0,
                                                        14.0,
                                                        23.0,
                                                        12.0
                                                    ],
                                                    [
                                                        3.36,
                                                        3.4,
                                                        48.78,
                                                        24.39,
                                                        0.0,
                                                        0.0,
                                                        41.0,
                                                        0.0,
                                                        0.0,
                                                        41.0,
                                                        0.0,
                                                        11.0,
                                                        24.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.94,
                                                        42.86,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        35.0,
                                                        0.0,
                                                        0.0,
                                                        35.0,
                                                        0.0,
                                                        10.0,
                                                        17.0,
                                                        8.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.97,
                                                        41.94,
                                                        19.35,
                                                        0.0,
                                                        0.0,
                                                        31.0,
                                                        0.0,
                                                        0.0,
                                                        31.0,
                                                        0.0,
                                                        8.0,
                                                        15.0,
                                                        8.0
                                                    ],
                                                    [
                                                        3.47,
                                                        3.05,
                                                        61.54,
                                                        26.92,
                                                        0.0,
                                                        0.0,
                                                        26.0,
                                                        0.0,
                                                        0.0,
                                                        26.0,
                                                        0.0,
                                                        10.0,
                                                        13.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.49,
                                                        30.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        20.0,
                                                        0.0,
                                                        3.0,
                                                        13.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.37,
                                                        3.0,
                                                        38.89,
                                                        16.67,
                                                        0.0,
                                                        0.0,
                                                        18.0,
                                                        0.0,
                                                        0.0,
                                                        18.0,
                                                        0.0,
                                                        3.0,
                                                        9.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.36,
                                                        58.82,
                                                        17.65,
                                                        0.0,
                                                        0.0,
                                                        17.0,
                                                        0.0,
                                                        0.0,
                                                        17.0,
                                                        0.0,
                                                        7.0,
                                                        7.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.49,
                                                        2.79,
                                                        28.57,
                                                        28.57,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        0.0,
                                                        14.0,
                                                        0.0,
                                                        3.0,
                                                        8.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.31,
                                                        4.21,
                                                        38.46,
                                                        23.08,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        6.0,
                                                        4.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.55,
                                                        3.48,
                                                        38.46,
                                                        23.08,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        4.0,
                                                        6.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.35,
                                                        4.47,
                                                        16.67,
                                                        8.33,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        2.0,
                                                        8.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.42,
                                                        2.87,
                                                        33.33,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        0.0,
                                                        2.0,
                                                        8.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.45,
                                                        4.04,
                                                        50.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.18,
                                                        33.33,
                                                        11.11,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        3.0,
                                                        4.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.54,
                                                        4.27,
                                                        44.44,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.42,
                                                        2.41,
                                                        12.5,
                                                        12.5,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.52,
                                                        2.69,
                                                        37.5,
                                                        37.5,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.47,
                                                        3.82,
                                                        37.5,
                                                        12.5,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        2.0,
                                                        6.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.47,
                                                        2.74,
                                                        42.86,
                                                        28.57,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        1.0,
                                                        6.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.23,
                                                        0.0,
                                                        14.29,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.33,
                                                        42.86,
                                                        28.57,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.38,
                                                        33.33,
                                                        16.67,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.46,
                                                        4.57,
                                                        33.33,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.3,
                                                        2.79,
                                                        100.0,
                                                        40.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.33,
                                                        2.68,
                                                        40.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.43,
                                                        4.49,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.65,
                                                        3.35,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.35,
                                                        2.07,
                                                        100.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        2.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.4,
                                                        3.22,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.31,
                                                        4.65,
                                                        50.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        3.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.49,
                                                        6.37,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.24,
                                                        1.77,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.33,
                                                        4.92,
                                                        100.0,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.27,
                                                        4.2,
                                                        66.67,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.38,
                                                        1.26,
                                                        66.67,
                                                        66.67,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.46,
                                                        1.93,
                                                        66.67,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.43,
                                                        4.28,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.07,
                                                        6.34,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.15,
                                                        3.72,
                                                        100.0,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.68,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.63,
                                                        1.37,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.51,
                                                        5.22,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.31,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.56,
                                                        1.65,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.53,
                                                        1.31,
                                                        0.0,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.18,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    49,
                                                    41,
                                                    35,
                                                    31,
                                                    26,
                                                    20,
                                                    18,
                                                    17,
                                                    14,
                                                    13,
                                                    13,
                                                    12,
                                                    12,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    7,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "CA",
                                                        "FL",
                                                        "TX"
                                                    ],
                                                    [
                                                        49,
                                                        41,
                                                        35
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    49,
                                                    41,
                                                    35,
                                                    31,
                                                    26,
                                                    20,
                                                    18,
                                                    17,
                                                    14,
                                                    13,
                                                    13,
                                                    12,
                                                    12,
                                                    10,
                                                    9,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    7,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.03125,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>MSM</i></span><br><span style='font-size:14px'><b>Total:</b> <i>449</i></span>"
                                        }
                                    ],
                                    "label": "MSM",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    31.054487,
                                                    36.116203,
                                                    40.349457,
                                                    27.766279,
                                                    42.165726,
                                                    40.388783,
                                                    40.298904,
                                                    40.590752,
                                                    39.849426,
                                                    43.326618,
                                                    35.747845,
                                                    41.597782,
                                                    33.729759,
                                                    35.630066,
                                                    47.400902,
                                                    38.456085,
                                                    33.856892,
                                                    35.565342,
                                                    37.769337,
                                                    39.063946,
                                                    31.169546,
                                                    33.040619,
                                                    44.268543,
                                                    43.933907,
                                                    32.741646,
                                                    42.230171,
                                                    44.045876,
                                                    41.680893,
                                                    32.806671,
                                                    41.12537,
                                                    34.969704,
                                                    45.694454,
                                                    38.5266,
                                                    44.240459,
                                                    39.059811,
                                                    47.528912,
                                                    46.921925,
                                                    44.693947,
                                                    37.66814,
                                                    40.150032,
                                                    42.011539,
                                                    21.094318,
                                                    38.905985,
                                                    38.491226,
                                                    42.755966
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -97.563461,
                                                    -119.681564,
                                                    -88.986137,
                                                    -81.686783,
                                                    -74.948051,
                                                    -82.764915,
                                                    -74.521011,
                                                    -77.209755,
                                                    -86.258278,
                                                    -84.536095,
                                                    -86.692345,
                                                    -72.755371,
                                                    -111.431221,
                                                    -79.806419,
                                                    -121.490494,
                                                    -92.288368,
                                                    -80.945007,
                                                    -96.928917,
                                                    -78.169968,
                                                    -76.802101,
                                                    -91.867805,
                                                    -83.643074,
                                                    -89.616508,
                                                    -120.55899,
                                                    -89.678696,
                                                    -71.530106,
                                                    -72.710686,
                                                    -71.51178,
                                                    -86.79113,
                                                    -98.268082,
                                                    -92.373123,
                                                    -93.900192,
                                                    -96.726486,
                                                    -114.478828,
                                                    -105.311104,
                                                    -99.784012,
                                                    -110.454353,
                                                    -69.381927,
                                                    -84.670067,
                                                    -111.862434,
                                                    -93.210526,
                                                    -157.498337,
                                                    -77.033418,
                                                    -80.954453,
                                                    -107.30249
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮ ▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮ ▮▮▮",
                                                    "· ▮▮▮ ▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· · ▮▮▮▮▮▮ ·"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "TX",
                                                    "CA",
                                                    "IL",
                                                    "FL",
                                                    "NY",
                                                    "OH",
                                                    "NJ",
                                                    "PA",
                                                    "IN",
                                                    "MI",
                                                    "TN",
                                                    "CT",
                                                    "AZ",
                                                    "NC",
                                                    "WA",
                                                    "MO",
                                                    "SC",
                                                    "OK",
                                                    "VA",
                                                    "MD",
                                                    "LA",
                                                    "GA",
                                                    "WI",
                                                    "OR",
                                                    "MS",
                                                    "MA",
                                                    "VT",
                                                    "RI",
                                                    "AL",
                                                    "NE",
                                                    "AR",
                                                    "MN",
                                                    "KS",
                                                    "ID",
                                                    "CO",
                                                    "ND",
                                                    "MT",
                                                    "ME",
                                                    "KY",
                                                    "UT",
                                                    "IA",
                                                    "HI",
                                                    "DC",
                                                    "WV",
                                                    "WY"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.4,
                                                        3.18,
                                                        52.0,
                                                        24.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        25.0,
                                                        0.0,
                                                        25.0,
                                                        0.0,
                                                        9.0,
                                                        9.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.33,
                                                        3.32,
                                                        39.13,
                                                        13.04,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        23.0,
                                                        0.0,
                                                        23.0,
                                                        0.0,
                                                        7.0,
                                                        9.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.61,
                                                        35.29,
                                                        23.53,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        17.0,
                                                        0.0,
                                                        17.0,
                                                        0.0,
                                                        2.0,
                                                        7.0,
                                                        8.0
                                                    ],
                                                    [
                                                        3.45,
                                                        2.83,
                                                        37.5,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        16.0,
                                                        0.0,
                                                        7.0,
                                                        8.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.23,
                                                        53.85,
                                                        7.69,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        13.0,
                                                        0.0,
                                                        3.0,
                                                        9.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.49,
                                                        3.98,
                                                        36.36,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        2.0,
                                                        7.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.34,
                                                        4.54,
                                                        36.36,
                                                        27.27,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        11.0,
                                                        0.0,
                                                        2.0,
                                                        8.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.46,
                                                        2.6,
                                                        50.0,
                                                        40.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        10.0,
                                                        0.0,
                                                        3.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.51,
                                                        3.47,
                                                        44.44,
                                                        22.22,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        9.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.48,
                                                        3.28,
                                                        37.5,
                                                        12.5,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.82,
                                                        12.5,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.43,
                                                        3.56,
                                                        85.71,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.42,
                                                        2.68,
                                                        28.57,
                                                        14.29,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.25,
                                                        2.65,
                                                        57.14,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        7.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.26,
                                                        3.37,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        6.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.31,
                                                        3.44,
                                                        20.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.29,
                                                        2.3,
                                                        60.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        5.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.53,
                                                        3.45,
                                                        0.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.46,
                                                        1.18,
                                                        25.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.17,
                                                        4.15,
                                                        25.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.62,
                                                        4.33,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        2.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.26,
                                                        75.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        4.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.68,
                                                        2.37,
                                                        66.67,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.44,
                                                        2.24,
                                                        66.67,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.46,
                                                        2.21,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.41,
                                                        2.85,
                                                        66.67,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.48,
                                                        6.15,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.66,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.37,
                                                        1.74,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.64,
                                                        4.46,
                                                        0.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.5,
                                                        1.96,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.14,
                                                        1.03,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.22,
                                                        3.2,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.66,
                                                        3.06,
                                                        100.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.27,
                                                        2.82,
                                                        0.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.59,
                                                        3.41,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.52,
                                                        5.96,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.5,
                                                        0.93,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.08,
                                                        2.59,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.77,
                                                        2.47,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.76,
                                                        5.75,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.25,
                                                        1.85,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        2.95,
                                                        1.46,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.51,
                                                        5.78,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.15,
                                                        1.53,
                                                        0.0,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    25,
                                                    23,
                                                    17,
                                                    16,
                                                    13,
                                                    11,
                                                    11,
                                                    10,
                                                    9,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    7,
                                                    6,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "TX",
                                                        "CA",
                                                        "IL"
                                                    ],
                                                    [
                                                        25,
                                                        23,
                                                        17
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    25,
                                                    23,
                                                    17,
                                                    16,
                                                    13,
                                                    11,
                                                    11,
                                                    10,
                                                    9,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    7,
                                                    6,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.01594387755102041,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>MSF</i></span><br><span style='font-size:14px'><b>Total:</b> <i>248</i></span>"
                                        }
                                    ],
                                    "label": "MSF",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "lat": [
                                                [
                                                    36.116203,
                                                    27.766279,
                                                    31.054487,
                                                    42.165726,
                                                    40.349457,
                                                    43.326618,
                                                    33.729759,
                                                    35.630066,
                                                    40.590752,
                                                    33.040619,
                                                    40.298904,
                                                    38.456085,
                                                    39.063946,
                                                    37.769337,
                                                    40.388783,
                                                    32.806671,
                                                    42.230171,
                                                    31.169546,
                                                    39.059811,
                                                    39.849426,
                                                    44.268543,
                                                    47.400902,
                                                    41.597782,
                                                    43.933907,
                                                    42.011539,
                                                    40.150032,
                                                    38.313515,
                                                    35.565342,
                                                    35.747845,
                                                    33.856892,
                                                    44.240459,
                                                    44.693947,
                                                    41.12537,
                                                    34.969704,
                                                    45.694454,
                                                    38.491226,
                                                    39.318523,
                                                    43.452492,
                                                    47.528912,
                                                    37.66814,
                                                    32.741646
                                                ],
                                                null
                                            ],
                                            "lon": [
                                                [
                                                    -119.681564,
                                                    -81.686783,
                                                    -97.563461,
                                                    -74.948051,
                                                    -88.986137,
                                                    -84.536095,
                                                    -111.431221,
                                                    -79.806419,
                                                    -77.209755,
                                                    -83.643074,
                                                    -74.521011,
                                                    -92.288368,
                                                    -76.802101,
                                                    -78.169968,
                                                    -82.764915,
                                                    -86.79113,
                                                    -71.530106,
                                                    -91.867805,
                                                    -105.311104,
                                                    -86.258278,
                                                    -89.616508,
                                                    -121.490494,
                                                    -72.755371,
                                                    -120.55899,
                                                    -93.210526,
                                                    -111.862434,
                                                    -117.055374,
                                                    -96.928917,
                                                    -86.692345,
                                                    -80.945007,
                                                    -114.478828,
                                                    -69.381927,
                                                    -98.268082,
                                                    -92.373123,
                                                    -93.900192,
                                                    -80.954453,
                                                    -75.507141,
                                                    -71.563896,
                                                    -99.784012,
                                                    -84.670067,
                                                    -89.678696
                                                ],
                                                null
                                            ],
                                            "meta": [
                                                [
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· · ▮▮▮▮▮▮ ▮",
                                                    "· · ▮▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮ ▮▮▮▮▮▮ ▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮▮",
                                                    "· ▮▮ ▮▮ ▮▮▮▮▮▮",
                                                    "· ▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮",
                                                    "· · ▮▮▮▮▮▮ ▮▮▮",
                                                    "· · ▮▮▮ ▮▮▮▮▮▮",
                                                    "· ▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ · ▮▮▮▮▮▮",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ · ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· ▮▮▮▮▮▮ ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · ▮▮▮▮▮▮ ·",
                                                    "· · · ▮▮▮▮▮▮",
                                                    "· · · ▮▮▮▮▮▮"
                                                ],
                                                null
                                            ],
                                            "text": [
                                                [
                                                    "CA",
                                                    "FL",
                                                    "TX",
                                                    "NY",
                                                    "IL",
                                                    "MI",
                                                    "AZ",
                                                    "NC",
                                                    "PA",
                                                    "GA",
                                                    "NJ",
                                                    "MO",
                                                    "MD",
                                                    "VA",
                                                    "OH",
                                                    "AL",
                                                    "MA",
                                                    "LA",
                                                    "CO",
                                                    "IN",
                                                    "WI",
                                                    "WA",
                                                    "CT",
                                                    "OR",
                                                    "IA",
                                                    "UT",
                                                    "NV",
                                                    "OK",
                                                    "TN",
                                                    "SC",
                                                    "ID",
                                                    "ME",
                                                    "NE",
                                                    "AR",
                                                    "MN",
                                                    "WV",
                                                    "DE",
                                                    "NH",
                                                    "ND",
                                                    "KY",
                                                    "MS"
                                                ],
                                                null
                                            ],
                                            "customdata": [
                                                [
                                                    [
                                                        3.42,
                                                        2.99,
                                                        57.14,
                                                        25.71,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        35.0,
                                                        35.0,
                                                        0.0,
                                                        6.0,
                                                        22.0,
                                                        7.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.18,
                                                        56.67,
                                                        16.67,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        30.0,
                                                        30.0,
                                                        0.0,
                                                        6.0,
                                                        19.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.37,
                                                        3.77,
                                                        50.0,
                                                        14.29,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        28.0,
                                                        28.0,
                                                        0.0,
                                                        3.0,
                                                        19.0,
                                                        6.0
                                                    ],
                                                    [
                                                        3.41,
                                                        3.03,
                                                        47.83,
                                                        39.13,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        23.0,
                                                        23.0,
                                                        0.0,
                                                        4.0,
                                                        18.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.58,
                                                        2.93,
                                                        18.75,
                                                        18.75,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        16.0,
                                                        16.0,
                                                        0.0,
                                                        6.0,
                                                        7.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.34,
                                                        2.4,
                                                        53.85,
                                                        15.38,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        13.0,
                                                        13.0,
                                                        0.0,
                                                        3.0,
                                                        5.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.47,
                                                        3.75,
                                                        25.0,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        12.0,
                                                        12.0,
                                                        0.0,
                                                        4.0,
                                                        4.0,
                                                        4.0
                                                    ],
                                                    [
                                                        3.38,
                                                        3.28,
                                                        72.73,
                                                        18.18,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        11.0,
                                                        11.0,
                                                        0.0,
                                                        1.0,
                                                        7.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.44,
                                                        1.8,
                                                        20.0,
                                                        10.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        10.0,
                                                        0.0,
                                                        1.0,
                                                        7.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.31,
                                                        3.29,
                                                        60.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        10.0,
                                                        10.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.44,
                                                        4.57,
                                                        66.67,
                                                        11.11,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        9.0,
                                                        9.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        5.0
                                                    ],
                                                    [
                                                        3.38,
                                                        2.71,
                                                        75.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.51,
                                                        3.1,
                                                        50.0,
                                                        37.5,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        8.0,
                                                        0.0,
                                                        2.0,
                                                        5.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.36,
                                                        2.84,
                                                        62.5,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        8.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.39,
                                                        4.22,
                                                        62.5,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        8.0,
                                                        8.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.51,
                                                        1.61,
                                                        28.57,
                                                        14.29,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.3,
                                                        2.65,
                                                        42.86,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        7.0,
                                                        7.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.35,
                                                        3.63,
                                                        33.33,
                                                        16.67,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        6.0,
                                                        0.0,
                                                        2.0,
                                                        4.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.41,
                                                        2.9,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        6.0,
                                                        0.0,
                                                        2.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.42,
                                                        3.45,
                                                        33.33,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        6.0,
                                                        6.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.26,
                                                        2.6,
                                                        0.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        5.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.52,
                                                        4.34,
                                                        60.0,
                                                        20.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.45,
                                                        3.37,
                                                        40.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        3.0
                                                    ],
                                                    [
                                                        3.36,
                                                        2.95,
                                                        60.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        5.0,
                                                        0.0,
                                                        1.0,
                                                        4.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.33,
                                                        3.87,
                                                        20.0,
                                                        40.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        5.0,
                                                        5.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.64,
                                                        2.62,
                                                        100.0,
                                                        25.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.56,
                                                        4.03,
                                                        75.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        4.0,
                                                        4.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.16,
                                                        3.67,
                                                        33.33,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.59,
                                                        2.04,
                                                        33.33,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        2.0
                                                    ],
                                                    [
                                                        3.4,
                                                        4.72,
                                                        66.67,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        3.0,
                                                        3.0,
                                                        0.0,
                                                        1.0,
                                                        2.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.44,
                                                        3.82,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0
                                                    ],
                                                    [
                                                        2.92,
                                                        1.04,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.14,
                                                        2.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.72,
                                                        1.27,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        2.0,
                                                        0.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.4,
                                                        2.02,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.5,
                                                        3.5,
                                                        50.0,
                                                        50.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        2.0,
                                                        2.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.5,
                                                        2.86,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.64,
                                                        2.71,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.34,
                                                        3.17,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        0.0
                                                    ],
                                                    [
                                                        3.63,
                                                        1.7,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ],
                                                    [
                                                        3.43,
                                                        4.47,
                                                        100.0,
                                                        100.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0,
                                                        1.0,
                                                        0.0,
                                                        0.0,
                                                        0.0,
                                                        1.0
                                                    ]
                                                ],
                                                null
                                            ],
                                            "marker.size": [
                                                [
                                                    35,
                                                    30,
                                                    28,
                                                    23,
                                                    16,
                                                    13,
                                                    12,
                                                    11,
                                                    10,
                                                    10,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    6,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "cells.values": [
                                                null,
                                                [
                                                    [
                                                        "1",
                                                        "2",
                                                        "3"
                                                    ],
                                                    [
                                                        "CA",
                                                        "FL",
                                                        "TX"
                                                    ],
                                                    [
                                                        35,
                                                        30,
                                                        28
                                                    ]
                                                ]
                                            ],
                                            "marker.color": [
                                                [
                                                    35,
                                                    30,
                                                    28,
                                                    23,
                                                    16,
                                                    13,
                                                    12,
                                                    11,
                                                    10,
                                                    10,
                                                    9,
                                                    8,
                                                    8,
                                                    8,
                                                    8,
                                                    7,
                                                    7,
                                                    6,
                                                    6,
                                                    6,
                                                    5,
                                                    5,
                                                    5,
                                                    5,
                                                    5,
                                                    4,
                                                    4,
                                                    3,
                                                    3,
                                                    3,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    2,
                                                    1,
                                                    1,
                                                    1,
                                                    1,
                                                    1
                                                ],
                                                null
                                            ],
                                            "marker.sizeref": [
                                                0.022321428571428572,
                                                null
                                            ]
                                        },
                                        {
                                            "title": "<span style='font-size:20px'><b>(Fake Data) US Part-time Students</b></span><br><span style='font-size:16px'><b>Program:</b> <i>FLEX MBA</i></span><br><span style='font-size:14px'><b>Total:</b> <i>320</i></span>"
                                        }
                                    ],
                                    "label": "FLEX MBA",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "left",
                            "yanchor": "top",
                            "direction": "down"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~NaserNikandish",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-06 22:23:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NaserNikandish",
                "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-09-07T11:46:15.614172Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~virgopotterhead/5.embed",
            "fid": "virgopotterhead:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/virgopotterhead/5/9_8JA6PLQRUTBM1YI6W2S6HGU6NZNY1H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/virgopotterhead/5/2_2K8RWF6N7ZQ4X3LEMMX3STF2WG2YBZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/virgopotterhead/5/8_EANDUQITLKHZF1WTFI6Y488EELZB69.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/virgopotterhead/5/9_8JA6PLQRUTBM1YI6W2S6HGU6NZNY1H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/virgopotterhead:5",
                "plots": "https://api.plotly.com/v2/plots/virgopotterhead:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=virgopotterhead"
            },
            "owner": "virgopotterhead",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~virgopotterhead/5/",
            "world_readable": true,
            "date_modified": "2025-09-07T11:48:25.976Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~virgopotterhead/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "virgopotterhead:4:03e6e8",
                        "ysrc": "virgopotterhead:4:308f96"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            3
                        ],
                        "title": {
                            "text": "Number of cups in the stack"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.2922222222222222,
                            0.4477777777777778
                        ],
                        "title": {
                            "text": "Average rate of cooling of the water per minute"
                        },
                        "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/~virgopotterhead",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-07 11:30:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "virgopotterhead",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}