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=cj0xJnA9MjAyNS0wNi0wOSsxNiUzQTQ0JTNBMjYuMjk4MTExJTJCMDAlM0EwMA%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=cD0yMDI1LTA2LTA5KzE2JTNBNTUlM0E1MC4wNzc0ODQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wNi0wOSsxOSUzQTA1JTNBMjQuMDE5MTc2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-09T19:05:24.019176Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~javierrantt/3.embed",
            "fid": "javierrantt:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/javierrantt:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/javierrantt:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/javierrantt/3/8_53QF08O8CXI3BV0KKMOW26QX50QSJ1.png",
                "list-thumb": "https://api.plotly.com/v2/files/javierrantt:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/javierrantt:3",
                "plots": "https://api.plotly.com/v2/plots/javierrantt:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=javierrantt"
            },
            "owner": "javierrantt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~javierrantt/3/",
            "world_readable": true,
            "date_modified": "2025-06-09T19:05:24.031Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~javierrantt/3/",
            "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": "javierrantt:2:060260",
                        "ysrc": "javierrantt:2:2063d8"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            17.703061392271266,
                            681.2390119271973
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.42258797434796325,
                            0.1806890185423759
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~javierrantt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-06-09 17:43:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "javierrantt",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T18:59:24.619004Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sarahaxe/60.embed",
            "fid": "sarahaxe:60",
            "filename": "sample9",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sarahaxe:60/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sarahaxe/60/2_N01SSKOVQJ3UCVBW2CB4EP4UOFHI9T.png",
                "block-thumb": "https://api.plotly.com/v2/files/sarahaxe:60/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/sarahaxe:60/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sarahaxe:60",
                "plots": "https://api.plotly.com/v2/plots/sarahaxe:60",
                "parent": "https://api.plotly.com/v2/folders/home?user=sarahaxe"
            },
            "owner": "sarahaxe",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 18,
            "web_url": "https://chart-studio.plotly.com/~sarahaxe/60/",
            "world_readable": true,
            "date_modified": "2025-06-09T19:05:04.440Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sarahaxe/60/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "",
                        "type": "histogram",
                        "xsrc": "sarahaxe:62:f47fb5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,183,0)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "bingroup": "x",
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "v",
                        "hovertemplate": "<b>TotalNumber of Awards</b>: %{y:,.0f}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "width": 900,
                    "xaxis": {
                        "title": {
                            "text": "State"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "categoryarray": [
                            "Kansas",
                            "Missouri",
                            "Nebraska",
                            "Iowa",
                            "Oklahoma"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of Awards"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sarahaxe",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-04-10 00:42:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sarahaxe",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T18:36:24.393250Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Em11sullivan/22.embed",
            "fid": "Em11sullivan:22",
            "filename": "Violin Plot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Em11sullivan:22/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Em11sullivan:22/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Em11sullivan:22/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Em11sullivan:22/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Em11sullivan:22",
                "plots": "https://api.plotly.com/v2/plots/Em11sullivan:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=Em11sullivan"
            },
            "owner": "Em11sullivan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Em11sullivan/22/",
            "world_readable": true,
            "date_modified": "2025-06-09T18:36:24.404Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Em11sullivan/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Data 1.x",
                                "y": "Data 1.y",
                                "text": ""
                            }
                        },
                        "name": "Baseline",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:0edc7e",
                        "ysrc": "Em11sullivan:21:b18fde",
                        "width": 0,
                        "xaxis": "x",
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "color": "rgb(9, 9, 9)",
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "hoveron": "violins",
                        "opacity": 0.99,
                        "meanline": {
                            "color": "rgb(255, 0, 0)",
                            "width": 1,
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(241, 241, 241, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    },
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Data 2.x",
                                "y": "Data 2.y",
                                "text": ""
                            }
                        },
                        "name": "Session 2",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:49e5ed",
                        "ysrc": "Em11sullivan:21:1286ba",
                        "width": 0,
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "opacity": 0.99,
                        "meanline": {
                            "color": "rgb(255, 0, 0)",
                            "width": 1,
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(65, 65, 65, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    },
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Data 3.x",
                                "y": "Data 3.y",
                                "text": ""
                            }
                        },
                        "name": "Session 3",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:a6884f",
                        "ysrc": "Em11sullivan:21:6f55a1",
                        "width": 0,
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 0
                            },
                            "color": "rgb(2, 2, 2)",
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "opacity": 0.99,
                        "visible": true,
                        "meanline": {
                            "color": "rgb(255, 0, 0)",
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(221, 221, 221, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    },
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Data 4.x",
                                "y": "Data 4.y",
                                "text": ""
                            }
                        },
                        "name": "Session 4",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:8d659f",
                        "ysrc": "Em11sullivan:21:2230f1",
                        "width": 0,
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "opacity": 0.99,
                        "meanline": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(65, 65, 65, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    },
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Data 5.x",
                                "y": "1.01881",
                                "text": ""
                            }
                        },
                        "name": "Session 5",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:afd4fd",
                        "ysrc": "Em11sullivan:21:dd5a63",
                        "width": 0,
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "opacity": 0.99,
                        "visible": true,
                        "meanline": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(221, 221, 221, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    },
                    {
                        "box": {
                            "visible": true
                        },
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Session 6",
                                "y": "2.561386",
                                "text": ""
                            }
                        },
                        "name": "Session 6",
                        "type": "violin",
                        "xsrc": "Em11sullivan:21:d58946",
                        "ysrc": "Em11sullivan:21:a9008b",
                        "width": 0,
                        "jitter": 0,
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 0
                            },
                            "color": "rgba(0, 0, 0, 0.5)",
                            "symbol": "line-ew-open"
                        },
                        "points": "all",
                        "opacity": 0.99,
                        "meanline": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "fillcolor": "rgba(0, 0, 0, 0.5)",
                        "legendgroup": 1,
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)",
                        "family": "Times New Roman"
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 650,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": ""
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "ticklen": 5,
                        "tickson": "boundaries",
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 14
                        },
                        "tickmode": "auto",
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 1,
                        "tickcolor": "rgb(0, 0, 0)",
                        "automargin": true,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                5.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "categoryorder": "array",
                        "spikethickness": 1,
                        "categoryarraysrc": "RPlotBot:5243:493a01"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.0162196877277052,
                            7.758732687727704
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Raw Electrodermal Activity (μS)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "ticklen": 5,
                        "tickson": "boundaries",
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 14
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "linecolor": "rgb(0, 0, 0)",
                        "linewidth": 1,
                        "tickcolor": "rgb(0, 0, 0)",
                        "automargin": true,
                        "showspikes": true,
                        "spikethickness": 1
                    },
                    "height": 300,
                    "legend": {
                        "x": 1.0199999999999998,
                        "y": 1,
                        "bordercolor": "rgb(0, 0, 0)",
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 40,
                        "l": 100,
                        "r": 10,
                        "t": 9
                    },
                    "modebar": {
                        "color": "rgba(255, 0, 0, 0.3)",
                        "activecolor": "rgba(255, 0, 0, 0.7)",
                        "orientation": "v"
                    },
                    "autosize": false,
                    "dragmode": "pan",
                    "clickmode": "event",
                    "hovermode": "x",
                    "violingap": 0,
                    "hoverlabel": {
                        "font": {
                            "family": "Arial"
                        },
                        "align": "auto",
                        "bordercolor": "#000"
                    },
                    "showlegend": true,
                    "violinmode": "overlay",
                    "uniformtext": {
                        "mode": false
                    },
                    "violingroupgap": 0.3
                }
            },
            "height": 300,
            "width": 650,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Em11sullivan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.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-03-26 00:05:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Em11sullivan",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T18:29:49.551220Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bledoux/1.embed",
            "fid": "bledoux:1",
            "filename": "3D Scatter Plot of 2 Variables, Colored by 3rd",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bledoux:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/bledoux:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/bledoux:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/bledoux:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bledoux:1",
                "plots": "https://api.plotly.com/v2/plots/bledoux:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=bledoux"
            },
            "owner": "bledoux",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~bledoux/1/",
            "world_readable": true,
            "date_modified": "2025-06-10T04:43:27.821Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bledoux/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "47d11b",
                        "meta": {
                            "columnNames": {
                                "x": "visible-food",
                                "y": "aromatic-food",
                                "z": "count turtles",
                                "marker": {
                                    "color": "ifelse-value any? turtles [ mean [ sight ] of turtles ] [ 0 ]"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "turtle count",
                        "type": "scatter3d",
                        "xsrc": "bledoux:2:20e68f",
                        "ysrc": "bledoux:2:7a4f85",
                        "zsrc": "bledoux:2:735698",
                        "marker": {
                            "cmax": 10,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "ifelse-value any? turtles [ mean [ sight ] of turtles ] [ 0 ]"
                                }
                            },
                            "size": 4,
                            "cauto": false,
                            "symbol": "circle",
                            "opacity": 0.8,
                            "colorsrc": "bledoux:2:138b13",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#f7fcf5"
                                ],
                                [
                                    0.125,
                                    "#e5f5e0"
                                ],
                                [
                                    0.25,
                                    "#c7e9c0"
                                ],
                                [
                                    0.375,
                                    "#a1d99b"
                                ],
                                [
                                    0.5,
                                    "#74c476"
                                ],
                                [
                                    0.625,
                                    "#41ab5d"
                                ],
                                [
                                    0.75,
                                    "#238b45"
                                ],
                                [
                                    0.875,
                                    "#006d2c"
                                ],
                                [
                                    1,
                                    "#00441b"
                                ]
                            ],
                            "reversescale": true
                        },
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "visible-food",
                                "y": "aromatic-food",
                                "z": "ifelse-value any? turtles [ mean [ sight ] of turtles ] [ 0 ]",
                                "marker": {
                                    "color": "count turtles"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "average sight of turtles",
                        "type": "scatter3d",
                        "xsrc": "bledoux:2:20e68f",
                        "ysrc": "bledoux:2:7a4f85",
                        "zsrc": "bledoux:2:138b13",
                        "scene": "scene2",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "count turtles"
                                }
                            },
                            "size": 4,
                            "opacity": 0.8,
                            "colorsrc": "bledoux:2:735698",
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.1111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.2222222222222222,
                                    "#3e4989"
                                ],
                                [
                                    0.3333333333333333,
                                    "#31688e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#26828e"
                                ],
                                [
                                    0.5555555555555556,
                                    "#1f9e89"
                                ],
                                [
                                    0.6666666666666666,
                                    "#35b779"
                                ],
                                [
                                    0.7777777777777778,
                                    "#6ece58"
                                ],
                                [
                                    0.8888888888888888,
                                    "#b5de2b"
                                ],
                                [
                                    1,
                                    "#fde725"
                                ]
                            ],
                            "reversescale": false
                        },
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "visible-food",
                                "y": "aromatic-food",
                                "z": "ifelse-value any? turtles [ mean [ smell ] of turtles ] [ 0 ]",
                                "marker": {
                                    "color": "count turtles"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "average smell of turtles",
                        "type": "scatter3d",
                        "xsrc": "bledoux:2:20e68f",
                        "ysrc": "bledoux:2:7a4f85",
                        "zsrc": "bledoux:2:a46d65",
                        "scene": "scene2",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "count turtles"
                                }
                            },
                            "size": 4,
                            "colorsrc": "bledoux:2:735698",
                            "colorscale": [
                                [
                                    0,
                                    "#0508b8"
                                ],
                                [
                                    0.08333333333333333,
                                    "#1910d8"
                                ],
                                [
                                    0.16666666666666666,
                                    "#3c19f0"
                                ],
                                [
                                    0.25,
                                    "#6b1cfb"
                                ],
                                [
                                    0.3333333333333333,
                                    "#981cfd"
                                ],
                                [
                                    0.4166666666666667,
                                    "#bf1cfd"
                                ],
                                [
                                    0.5,
                                    "#dd2bfd"
                                ],
                                [
                                    0.5833333333333334,
                                    "#f246fe"
                                ],
                                [
                                    0.6666666666666666,
                                    "#fc67fd"
                                ],
                                [
                                    0.75,
                                    "#fe88fc"
                                ],
                                [
                                    0.8333333333333334,
                                    "#fea5fd"
                                ],
                                [
                                    0.9166666666666666,
                                    "#febefe"
                                ],
                                [
                                    1,
                                    "#fec3fe"
                                ]
                            ],
                            "reversescale": true
                        },
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "unification-percentage",
                                "y": "killed-turtles",
                                "z": "[ mean [ branch ] of turtles ] ls:of 0",
                                "marker": {
                                    "color": "unification"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "average island num",
                        "type": "scatter3d",
                        "xsrc": "bledoux:4:3100fe",
                        "ysrc": "bledoux:4:f927fe",
                        "zsrc": "bledoux:4:595864",
                        "scene": "scene3",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "unification"
                                }
                            },
                            "size": 6,
                            "colorsrc": "bledoux:4:192e43"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "visible patch %"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "aromatic patch %"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "turtles at convergrence"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -4.415194488618263,
                                "y": 3.915648551047133,
                                "z": 4.503783345596607
                            },
                            "center": {
                                "x": 0.048170328822932484,
                                "y": 0.34732950641881305,
                                "z": -0.19411477324379964
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "cube",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Evolution and Reproductive Compatibility"
                    },
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "scene2": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "visible patch %<br>"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "aromatic patch %"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "avg sight (green)/smell(purple) at convergence"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 3.943649679768591,
                                "y": 5.497595810981746,
                                "z": 1.493028226435444
                            },
                            "center": {
                                "x": -0.09819918335158327,
                                "y": 0.1514739950389868,
                                "z": -0.13063492555841105
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "cube",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "scene3": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "population added (%)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "population removed (%)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "avg island-num at convergence"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 2.064207415546066,
                                "y": -4.4502528333563784,
                                "z": 0.6587018356544925
                            },
                            "center": {
                                "x": -0.1691127700987117,
                                "y": 0.009242149002674416,
                                "z": -0.10026204690904819
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bledoux",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.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-06-09 18:22:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bledoux",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T18:28:53.323563Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~faithstavo19/17.embed",
            "fid": "faithstavo19:17",
            "filename": "Plot 17",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/faithstavo19:17/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/faithstavo19:17/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/faithstavo19/17/8_05G4ZAJZGDBQ47EKBNFC6I5SD1M175.png",
                "list-thumb": "https://api.plotly.com/v2/files/faithstavo19:17/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/faithstavo19:17",
                "plots": "https://api.plotly.com/v2/plots/faithstavo19:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=faithstavo19"
            },
            "owner": "faithstavo19",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~faithstavo19/17/",
            "world_readable": true,
            "date_modified": "2025-06-09T18:28:53.338Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~faithstavo19/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "A - B - C - D - E - F"
                            }
                        },
                        "mode": "markers",
                        "type": "heatmap",
                        "xsrc": "faithstavo19:16:de6c01",
                        "ysrc": "faithstavo19:16:04ce48",
                        "zsrc": "faithstavo19:16:1681f2,cc0095,c9f435,1b512d,3b2049,a5d7f1",
                        "colorbar": {
                            "title": {
                                "text": ""
                            }
                        },
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Differential Gene Expression in the Spleen of Elderly Male vs. Female Mice"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            5.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Mice Samples</b>"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Genes</b>"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "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/~faithstavo19",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-02-21 21:13:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "faithstavo19",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T18:25:52.598421Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~elmicci/1.embed",
            "fid": "elmicci:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/elmicci:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/elmicci:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elmicci/1/8_PE9MRHHO7WY1JGOCUQ3JY10C0IVQQG.png",
                "list-thumb": "https://api.plotly.com/v2/files/elmicci:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/elmicci:1",
                "plots": "https://api.plotly.com/v2/plots/elmicci:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=elmicci"
            },
            "owner": "elmicci",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~elmicci/1/",
            "world_readable": true,
            "date_modified": "2025-06-09T18:25:52.612Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~elmicci/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": "1.3"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "name": "A",
                        "type": "box",
                        "ysrc": "elmicci:0:80384f",
                        "marker": {
                            "color": "rgba(255, 153, 51, 1.0)"
                        },
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "width": "1.3"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "B",
                        "type": "box",
                        "ysrc": "elmicci:0:d89971",
                        "marker": {
                            "color": "rgba(55, 128, 191, 1.0)"
                        },
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "width": "1.3"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "C"
                            }
                        },
                        "name": "C",
                        "type": "box",
                        "ysrc": "elmicci:0:3d51aa",
                        "marker": {
                            "color": "rgba(50, 171, 96, 1.0)"
                        },
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "width": "1.3"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "name": "D",
                        "type": "box",
                        "ysrc": "elmicci:0:99e80e",
                        "marker": {
                            "color": "rgba(128, 0, 128, 1.0)"
                        },
                        "boxpoints": false
                    },
                    {
                        "line": {
                            "width": "1.3"
                        },
                        "meta": {
                            "columnNames": {
                                "y": "E"
                            }
                        },
                        "name": "E",
                        "type": "box",
                        "ysrc": "elmicci:0:42eb88",
                        "marker": {
                            "color": "rgba(219, 64, 82, 1.0)"
                        },
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.4270092677766123,
                            9.84352680356719
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~elmicci",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/78.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-09 18:25:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "elmicci",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T17:49:44.024464Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yeonjung/3.embed",
            "fid": "yeonjung:3",
            "filename": "speed of sound",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/yeonjung:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/yeonjung:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yeonjung/3/8_F1BNMFXCNJHS982O0Q72Y3HGU2TK8N.png",
                "list-thumb": "https://api.plotly.com/v2/files/yeonjung:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yeonjung:3",
                "plots": "https://api.plotly.com/v2/plots/yeonjung:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=yeonjung"
            },
            "owner": "yeonjung",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~yeonjung/3/",
            "world_readable": true,
            "date_modified": "2025-06-09T17:49:44.035Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yeonjung/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "60cf6c",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_x": {
                                    "array": "C"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "yeonjung:2:8b0499",
                        "ysrc": "yeonjung:2:9b5feb",
                        "error_x": {
                            "meta": {
                                "columnNames": {
                                    "array": "C"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "yeonjung:2:48ea76",
                            "symmetric": true
                        }
                    },
                    {
                        "uid": "798faf",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "60cf6c",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0003693948956003384,
                                        "value": 0.005871322751548451
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.0019183210776026055,
                                        "value": -0.0014129100535638741
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "distance (m) vs. time of sound travel (s)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.006084891659246028,
                            8.993915108340754
                        ],
                        "title": {
                            "text": "distance (m)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.001086725456255629,
                            0.05110281011306397
                        ],
                        "title": {
                            "text": "time of sound travel (s)"
                        },
                        "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/~yeonjung",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.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-03-21 07:53:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yeonjung",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T17:44:30.095132Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~javierrantt/1.embed",
            "fid": "javierrantt:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/javierrantt:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/javierrantt/1/2_RNQ0YYXAZ2USG41Q43FRFHOCY49FFQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/javierrantt/1/8_ZPIBXW2MCZ9MTWN63WBBDIMJ985G0P.png",
                "list-thumb": "https://api.plotly.com/v2/files/javierrantt:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/javierrantt:1",
                "plots": "https://api.plotly.com/v2/plots/javierrantt:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=javierrantt"
            },
            "owner": "javierrantt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~javierrantt/1/",
            "world_readable": true,
            "date_modified": "2025-06-09T17:44:30.106Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~javierrantt/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": "javierrantt:0:872644",
                        "ysrc": "javierrantt:0:8d8d97"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.005650945446642033,
                            3.374483807867855
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -2.9918505267342477,
                            0.834426555356788
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~javierrantt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-06-09 17:43:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "javierrantt",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T17:25:07.742935Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LTrudelle/9.embed",
            "fid": "LTrudelle:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/LTrudelle:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/LTrudelle:9/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LTrudelle/9/8_2N4K8B3DNGNEVZSKX9YY9TT10KKTS8.png",
                "list-thumb": "https://api.plotly.com/v2/files/LTrudelle:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LTrudelle:9",
                "plots": "https://api.plotly.com/v2/plots/LTrudelle:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=LTrudelle"
            },
            "owner": "LTrudelle",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LTrudelle/9/",
            "world_readable": true,
            "date_modified": "2025-06-09T18:52:42.053Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LTrudelle/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "data.1.labels",
                                "values": "data.1.values"
                            }
                        },
                        "sort": false,
                        "type": "pie",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgba(31,119,180,1)",
                            "fillcolor": "rgba(31,119,180,1)"
                        },
                        "textinfo": "none",
                        "direction": "counterclockwise",
                        "labelssrc": "LTrudelle:8:f5b9ce",
                        "valuessrc": "LTrudelle:8:f963df"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "width": 300,
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "height": 300,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false,
                    "piecolorway": [
                        "#66CCFF",
                        "#FFC000",
                        "#B5E6A2",
                        "#E49EDD",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "extendpiecolors": false
                }
            },
            "height": 300,
            "width": 300,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LTrudelle",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-06 14:06:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LTrudelle",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-06-09T16:55:50.077484Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LTrudelle/7.embed",
            "fid": "LTrudelle:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/LTrudelle:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/LTrudelle:7/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LTrudelle/7/8_P207X4TN5PA0YA1T08HNWYOZFBHC3V.png",
                "list-thumb": "https://api.plotly.com/v2/files/LTrudelle:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LTrudelle:7",
                "plots": "https://api.plotly.com/v2/plots/LTrudelle:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=LTrudelle"
            },
            "owner": "LTrudelle",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~LTrudelle/7/",
            "world_readable": true,
            "date_modified": "2025-06-09T16:55:50.088Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LTrudelle/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "data.1.labels-30d058e23671",
                                "values": "data.1.values-30d0399a336e"
                            }
                        },
                        "type": "pie",
                        "frame": null,
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgba(31,119,180,1)",
                            "fillcolor": "rgba(31,119,180,1)"
                        },
                        "textinfo": "none",
                        "labelssrc": "LTrudelle:6:4eed8a",
                        "valuessrc": "LTrudelle:6:2e8c2a"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "United States Personal Expenditures by Categories in 1960"
                    },
                    "xaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "showgrid": false,
                        "zeroline": false,
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LTrudelle",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-06 14:06:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LTrudelle",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}