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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA5LTAzKzIxJTNBMjUlM0E0NS4xNzY4NDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOS0wNCswMCUzQTA5JTNBMDEuNDY3MDAwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-09-04T00:09:01.467000Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LanZi/9.embed",
            "fid": "LanZi:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LanZi/9/9_UI6A5QK4WOC60C21SANSEU3V6VRHT1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LanZi/9/2_QYQX6P4PKKGE79SN8F38O6RHHGGXS6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/9/8_MJ0IVO3F8B3NYNIZEWCUSUKJVFV1LV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/9/9_UI6A5QK4WOC60C21SANSEU3V6VRHT1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LanZi:9",
                "plots": "https://api.plotly.com/v2/plots/LanZi:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=LanZi"
            },
            "owner": "LanZi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~LanZi/9/",
            "world_readable": true,
            "date_modified": "2025-09-04T00:09:01.483Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LanZi/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Disease"
                            }
                        },
                        "name": "Disease",
                        "type": "box",
                        "xsrc": "LanZi:8:75ec4f",
                        "marker": {
                            "color": "darkred"
                        },
                        "boxpoints": true,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Health"
                            }
                        },
                        "name": "Health",
                        "type": "box",
                        "xsrc": "LanZi:8:c97dae",
                        "marker": {
                            "color": "darkgreen"
                        },
                        "boxpoints": true,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.555376111111113,
                            105.55554611111111
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "title": {
                            "text": "Relative abundance (%)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": 1,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 50,
                        "l": 90,
                        "r": 60,
                        "t": 30
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LanZi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-09-03 14:54:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LanZi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-04T00:08:22.876669Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LanZi/7.embed",
            "fid": "LanZi:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LanZi/7/9_CC6XSSJKHUBI8D6QS9QK9Z8PL9BGG0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LanZi/7/2_SDEOWNA27YLH7UQSMPNW8UYEK4PFWC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/7/8_D4W08UPVBE71OX4LEVTM2K9IGTJ7BL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/7/9_CC6XSSJKHUBI8D6QS9QK9Z8PL9BGG0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LanZi:7",
                "plots": "https://api.plotly.com/v2/plots/LanZi:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=LanZi"
            },
            "owner": "LanZi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~LanZi/7/",
            "world_readable": true,
            "date_modified": "2025-09-04T00:08:22.896Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LanZi/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "darkred",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Disease, x",
                                "y": "Disease, y",
                                "text": "Disease, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Disease",
                        "xsrc": "LanZi:6:712ca3",
                        "ysrc": "LanZi:6:465792",
                        "textsrc": "LanZi:6:e80cc4"
                    },
                    {
                        "line": {
                            "color": "darkgreen",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Health, x",
                                "y": "Health, y",
                                "text": "Health, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Health",
                        "xsrc": "LanZi:6:735200",
                        "ysrc": "LanZi:6:73f3a4",
                        "textsrc": "LanZi:6:b9a7bc"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4.9715982442551,
                            104.9715982442551
                        ],
                        "title": {
                            "text": "Relative abundance (%)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.516083631265722,
                            73.04829060064273
                        ],
                        "title": {
                            "text": "Percent of samples (%)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": 1,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 50,
                        "l": 80,
                        "r": 60,
                        "t": 30
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LanZi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-09-03 14:54:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LanZi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-04T00:02:55.104262Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Shirin.mntt/1.embed",
            "fid": "Shirin.mntt:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Shirin.mntt/1/9_E4ROE7CK5XT63DEPSIRFCZ5X4ZT60X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Shirin.mntt/1/2_CE1WU4NGGVZN3N1F2R9CD7ZG4LJ1L2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Shirin.mntt/1/8_A7CPNTV1GPL57CQKH7OK82WNR4LFJ4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Shirin.mntt/1/9_E4ROE7CK5XT63DEPSIRFCZ5X4ZT60X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Shirin.mntt:1",
                "plots": "https://api.plotly.com/v2/plots/Shirin.mntt:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Shirin.mntt"
            },
            "owner": "Shirin.mntt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Shirin.mntt/1/",
            "world_readable": true,
            "date_modified": "2025-09-04T00:02:55.121Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Shirin.mntt/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "asrc": "Shirin.mntt:0:b69728",
                        "bsrc": "Shirin.mntt:0:10c7a2",
                        "csrc": "Shirin.mntt:0:eee725",
                        "meta": {
                            "columnNames": {
                                "a": "X_AA",
                                "b": "X_H2O",
                                "c": "X_T"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "",
                        "type": "scatterternary",
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Open Sans"
                    },
                    "title": {
                        "font": {
                            "size": 30
                        },
                        "text": "Ternary Diagram"
                    },
                    "legend": {
                        "orientation": "v"
                    },
                    "ternary": {
                        "sum": 100,
                        "aaxis": {
                            "min": 0,
                            "type": "multicategory",
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "color": "rgb(153, 16, 244)",
                                    "family": "Open Sans"
                                },
                                "text": "AA"
                            },
                            "nticks": 11,
                            "ticklen": 5,
                            "showgrid": true,
                            "showline": true,
                            "tickfont": {
                                "size": 12,
                                "color": "rgb(68, 68, 68)",
                                "family": "Open Sans"
                            },
                            "tickmode": "auto",
                            "gridcolor": "rgba(115, 115, 115, 0.3)",
                            "gridwidth": 1,
                            "linecolor": "rgb(99, 99, 99)",
                            "linewidth": 2,
                            "tickangle": "auto",
                            "tickcolor": "rgba(0, 0, 0, 0)",
                            "ticksuffix": "%"
                        },
                        "baxis": {
                            "min": 0,
                            "type": "multicategory",
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "color": "rgb(246, 91, 0)",
                                    "family": "Open Sans"
                                },
                                "text": "W"
                            },
                            "nticks": 11,
                            "ticklen": 5,
                            "showgrid": true,
                            "showline": true,
                            "tickfont": {
                                "size": 12,
                                "family": "Open Sans"
                            },
                            "tickmode": "auto",
                            "gridcolor": "rgba(115, 115, 115, 0.3)",
                            "gridwidth": 1,
                            "linecolor": "rgb(99, 99, 99)",
                            "linewidth": 2,
                            "tickangle": "auto",
                            "tickcolor": "rgba(0, 0, 0, 0)",
                            "ticksuffix": "%"
                        },
                        "caxis": {
                            "min": 0,
                            "type": "multicategory",
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "color": "rgb(16, 171, 244)",
                                    "family": "Open Sans"
                                },
                                "text": "T"
                            },
                            "nticks": 11,
                            "ticklen": 5,
                            "showgrid": true,
                            "showline": true,
                            "tickfont": {
                                "size": 12,
                                "family": "Open Sans"
                            },
                            "tickmode": "auto",
                            "gridcolor": "rgba(115, 115, 115, 0.3)",
                            "gridwidth": 1,
                            "linecolor": "rgb(99, 99, 99)",
                            "linewidth": 2,
                            "tickangle": "auto",
                            "tickcolor": "rgba(0, 0, 0, 0)",
                            "ticksuffix": "%"
                        }
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "clickmode": "event",
                    "hoverlabel": {
                        "font": {
                            "size": 15,
                            "color": "rgb(0, 0, 0)",
                            "family": "Open Sans"
                        },
                        "bgcolor": "rgb(255, 255, 255)",
                        "bordercolor": "rgb(244, 15, 151)"
                    },
                    "showlegend": true,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Shirin.mntt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 23:01:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Shirin.mntt",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T23:49:11.061320Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LanZi/5.embed",
            "fid": "LanZi:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LanZi/5/9_XZKTPSN8RTF2PTM3V090H363OBSD1I.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LanZi/5/2_YLIPOCG34M5VE5YNQFUUPQWQOIBW16.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/5/8_SH6BBR9KEFE6NRAGPV01D1WX32E3GM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/5/9_XZKTPSN8RTF2PTM3V090H363OBSD1I.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LanZi:5",
                "plots": "https://api.plotly.com/v2/plots/LanZi:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=LanZi"
            },
            "owner": "LanZi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~LanZi/5/",
            "world_readable": true,
            "date_modified": "2025-09-03T23:49:11.081Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LanZi/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Disease"
                            }
                        },
                        "name": "Disease",
                        "type": "box",
                        "xsrc": "LanZi:4:362616",
                        "marker": {
                            "color": "darkred"
                        },
                        "boxpoints": true,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Health"
                            }
                        },
                        "name": "Health",
                        "type": "box",
                        "xsrc": "LanZi:4:56439a",
                        "marker": {
                            "color": "darkgreen"
                        },
                        "boxpoints": true,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.131255000000001,
                            97.495645
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "title": {
                            "text": "Relative abundance (%)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": 1,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 50,
                        "l": 90,
                        "r": 60,
                        "t": 30
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LanZi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-09-03 14:54:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LanZi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T23:42:22.022920Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~LanZi/3.embed",
            "fid": "LanZi:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/LanZi/3/9_K4BGTQZY0EXILQPKBWN5T4K7R5D7IR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/LanZi/3/2_W0UFUIQU962JS8CQMYYYTY75Y5H1Y3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/3/8_R039PTZKMRG5Z7H9UJXYI9O400DD10.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LanZi/3/9_K4BGTQZY0EXILQPKBWN5T4K7R5D7IR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/LanZi:3",
                "plots": "https://api.plotly.com/v2/plots/LanZi:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=LanZi"
            },
            "owner": "LanZi",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~LanZi/3/",
            "world_readable": true,
            "date_modified": "2025-09-03T23:42:22.042Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~LanZi/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "darkred",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Disease, x",
                                "y": "Disease, y",
                                "text": "Disease, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Disease",
                        "xsrc": "LanZi:2:42c8ba",
                        "ysrc": "LanZi:2:935dee",
                        "textsrc": "LanZi:2:84c8f9"
                    },
                    {
                        "line": {
                            "color": "darkgreen",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Health, x",
                                "y": "Health, y",
                                "text": "Health, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Health",
                        "xsrc": "LanZi:2:b53214",
                        "ysrc": "LanZi:2:011f41",
                        "textsrc": "LanZi:2:d63b47"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4.6059901884843795,
                            98.60599018848438
                        ],
                        "title": {
                            "text": "Relative abundance (%)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -2.6767829258717533,
                            43.29734190266006
                        ],
                        "title": {
                            "text": "Percent of samples (%)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.5,
                        "y": 1,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 50,
                        "l": 80,
                        "r": 60,
                        "t": 30
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~LanZi",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-09-03 14:54:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "LanZi",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T23:00:31.692158Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Angelb12/1.embed",
            "fid": "Angelb12:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Angelb12/1/9_RWPS6H0PBTHVPICW7HC0I6HBM5BPPT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Angelb12/1/2_VQI9CO2GHTHIWX6TMHT6O7YCPMFKQP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Angelb12/1/8_GI3PJDJYY5CAGMV9J16QN9SKI5OU0F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Angelb12/1/9_RWPS6H0PBTHVPICW7HC0I6HBM5BPPT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Angelb12:1",
                "plots": "https://api.plotly.com/v2/plots/Angelb12:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Angelb12"
            },
            "owner": "Angelb12",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Angelb12/1/",
            "world_readable": true,
            "date_modified": "2025-09-03T23:00:31.706Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Angelb12/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C",
                                "text": "A",
                                "textposition": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "trace",
                        "type": "scatter",
                        "xsrc": "Angelb12:0:483f0f",
                        "ysrc": "Angelb12:0:cce604",
                        "opacity": 1,
                        "textsrc": "Angelb12:0:a88a4f",
                        "visible": true,
                        "hoverinfo": "x+y+text",
                        "orientation": "v",
                        "texttemplate": "<br>",
                        "textpositionsrc": "Angelb12:0:a88a4f"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Parts Total by Spectrogophotometer Readings graph"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0.06511805895557546,
                            0.5248819410444245
                        ],
                        "title": {
                            "text": "Parts Total (Ratio)"
                        },
                        "anchor": "free",
                        "domain": [
                            0.005,
                            1
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.00553898068198568,
                            0.04432959286857062
                        ],
                        "title": {
                            "text": "Spectrogophotometer Readings"
                        },
                        "anchor": "free",
                        "domain": [
                            0.00021,
                            1
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0,
                        "y": -0.1,
                        "title": {
                            "text": "<br>"
                        },
                        "valign": "bottom",
                        "xanchor": "left",
                        "yanchor": "auto",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.08744407288000416,
                            "y": 0.00871127952167675,
                            "text": "Sample 4"
                        },
                        {
                            "x": 0.164708948031273,
                            "y": 0.0387670466425965,
                            "ax": -10,
                            "ay": -30,
                            "text": "Sample 3"
                        },
                        {
                            "x": 0.2490438117584749,
                            "y": 0.01951090224483062,
                            "text": "Sample 2"
                        },
                        {
                            "x": 0.4964934119161332,
                            "y": 0.022431239013467028,
                            "text": "Sample 1<br>"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Angelb12",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 22:59:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Angelb12",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T22:18:51.601626Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Puro/1.embed",
            "fid": "Puro:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Puro/1/9_K3F05BFE3RR01540AXQ00CMK6BHVP1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Puro/1/2_OKHWANR0PFJSGM9D9JGPJEQS5FFONO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Puro/1/8_V7JNNGOLNN656O6E0M259VQS1WORZP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Puro/1/9_K3F05BFE3RR01540AXQ00CMK6BHVP1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Puro:1",
                "plots": "https://api.plotly.com/v2/plots/Puro:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Puro"
            },
            "owner": "Puro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Puro/1/",
            "world_readable": true,
            "date_modified": "2025-09-03T22:18:51.761Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Puro/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "NHem"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "Puro:0:61e87f",
                        "ysrc": "Puro:0:72fe3b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Northern Hemisphere Temperature 1880 -2014_Purohittam Kumar_S11146148"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1872.0748966942149,
                            2021.9251033057851
                        ],
                        "title": {
                            "text": "Year"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -61.28279424977538,
                            100.28279424977538
                        ],
                        "title": {
                            "text": "Temperature Anomaly (°C)"
                        },
                        "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/~Puro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 22:00:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Puro",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T21:49:54.636966Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~laura_maeda/3.embed",
            "fid": "laura_maeda:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/3/9_XPSF5HY8VCNDKMHVVLQT0JGZF1BS6B.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/3/2_6LI061E4QH3TIZ10QO01KWZ5QO0CM0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/3/8_E6IBK1MNR5N7XW7CX5JVTEO6CGCR2P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/3/9_XPSF5HY8VCNDKMHVVLQT0JGZF1BS6B.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/laura_maeda:3",
                "plots": "https://api.plotly.com/v2/plots/laura_maeda:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=laura_maeda"
            },
            "owner": "laura_maeda",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~laura_maeda/3/",
            "world_readable": true,
            "date_modified": "2025-09-03T21:49:54.647Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~laura_maeda/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "44c4ac",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "laura_maeda:2:904335",
                        "ysrc": "laura_maeda:2:b432eb"
                    },
                    {
                        "uid": "958d36",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "44c4ac",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": true,
                                        "name": "m",
                                        "error": 0.00041653572984736695,
                                        "value": 0.0694574113838618
                                    },
                                    {
                                        "hold": true,
                                        "name": "b",
                                        "error": 0.003414654435342018,
                                        "value": 0.056950623338819444
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Cl vs α"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.7365812253966055,
                            15.01579444178881
                        ],
                        "title": {
                            "text": "α"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.30561451511459514,
                            1.1738837483088198
                        ],
                        "title": {
                            "text": "Cl"
                        },
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~laura_maeda",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 21:28:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "laura_maeda",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T21:34:10.897008Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~laura_maeda/1.embed",
            "fid": "laura_maeda:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/1/9_UK5OPKULOV9A00OVO1EUV1Z6B3LLQQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/1/2_D8GONYPCUKZIU4W91GQ9UVQLB58985.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/1/8_KU6IPQB8EYI1H9KH095DEBQ9YQ1ZRC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/laura_maeda/1/9_UK5OPKULOV9A00OVO1EUV1Z6B3LLQQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/laura_maeda:1",
                "plots": "https://api.plotly.com/v2/plots/laura_maeda:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=laura_maeda"
            },
            "owner": "laura_maeda",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~laura_maeda/1/",
            "world_readable": true,
            "date_modified": "2025-09-03T21:34:10.908Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~laura_maeda/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "78b95a",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "laura_maeda:0:72f789",
                        "ysrc": "laura_maeda:0:e40e3a"
                    },
                    {
                        "uid": "4874ff",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "78b95a",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": true,
                                        "name": "a",
                                        "error": 2.8042110392203523e-05,
                                        "value": 0.0007577760481531636
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.00018911786135359507,
                                        "value": -0.004735594711023118
                                    },
                                    {
                                        "hold": false,
                                        "name": "c",
                                        "error": 0.002333730697169224,
                                        "value": 0.03215805765277081
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "a*x^2 + b*x + c",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": " Cd vs α"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.784974011870858,
                            22.55327263453694
                        ],
                        "title": {
                            "text": "α"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.008871509604394392,
                            0.32668862230048595
                        ],
                        "title": {
                            "text": "Cd"
                        },
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~laura_maeda",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 21:28:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "laura_maeda",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-03T21:25:45.176846Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marielav/8.embed",
            "fid": "marielav:8",
            "filename": "Plot 8",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marielav/8/9_XIP5WTVU5EGLTVTW20ASXOIM5BU5EO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marielav/8/2_688KD2DC27LCZDXLYYT57MDVWICSJS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marielav/8/8_3DPXD3YEJQF03KUM0M5BCL5FQDD45F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marielav/8/9_XIP5WTVU5EGLTVTW20ASXOIM5BU5EO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marielav:8",
                "plots": "https://api.plotly.com/v2/plots/marielav:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=marielav"
            },
            "owner": "marielav",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~marielav/8/",
            "world_readable": true,
            "date_modified": "2025-09-03T21:25:45.189Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marielav/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2eaa2d",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "marielav:7:278e29",
                        "ysrc": "marielav:7:33a0fb"
                    },
                    {
                        "uid": "ca5140",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "2eaa2d",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": true,
                                        "name": "a",
                                        "error": 2.2016419092446447e-05,
                                        "value": 0.0006944816438210181
                                    },
                                    {
                                        "hold": true,
                                        "name": "b",
                                        "error": 0.00044879967087440003,
                                        "value": -0.0026009458816377206
                                    },
                                    {
                                        "hold": true,
                                        "name": "c",
                                        "error": 0.0020964420059160615,
                                        "value": 0.03933922080511943
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "a*x^2 + b*x + c",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Coefficient of Drag vs. Angle of Attack"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -4.250546341496367,
                            22.64714917211069
                        ],
                        "title": {
                            "text": "Angle of Attack"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.011426154146746144,
                            0.3629544072573517
                        ],
                        "title": {
                            "text": "Coefficient of Drag (Cd)"
                        },
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~marielav",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-03 20:30:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marielav",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}