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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE2KzIxJTNBNTIlM0E1Mi4yMTU5MjclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNisyMiUzQTEzJTNBMjcuNTAwNDUxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-16T22:13:27.500451Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~utnosmas/23.embed",
            "fid": "utnosmas:23",
            "filename": "NYU_Contributor_coefplot_x",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/utnosmas/23/9_Z6N6YXM6534WZKMK90J8K9JK6DN1CB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/utnosmas/23/2_QY6KL2N2RGYRCL44VC0SSAVEESYQ9B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/utnosmas/23/8_ZTXVQUTYVDS3Z3ODDUJ5BDY5JO1E51.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/utnosmas/23/9_Z6N6YXM6534WZKMK90J8K9JK6DN1CB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/utnosmas:23",
                "plots": "https://api.plotly.com/v2/plots/utnosmas:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=utnosmas"
            },
            "owner": "utnosmas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 75,
            "web_url": "https://chart-studio.plotly.com/~utnosmas/23/",
            "world_readable": true,
            "date_modified": "2024-04-21T00:42:28.239Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~utnosmas/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dash",
                            "color": "rgba(190,190,190,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "text": "xintercept: 0",
                        "type": "scatter",
                        "xsrc": "utnosmas:22:87591b",
                        "ysrc": "utnosmas:22:db5be2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "name": "(model,1)",
                        "type": "scatter",
                        "xsrc": "utnosmas:22:480710",
                        "ysrc": "utnosmas:22:a9d1b5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_x": {
                            "type": "data",
                            "color": "rgba(0,0,255,1)",
                            "width": 0,
                            "arraysrc": "utnosmas:22:34b9c2",
                            "symmetric": false,
                            "arrayminussrc": "utnosmas:22:c7967f"
                        },
                        "opacity": 1,
                        "textsrc": "utnosmas:22:8f53ce",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "(model,1)"
                    },
                    {
                        "line": {
                            "color": "transparent"
                        },
                        "mode": "lines",
                        "name": "(model,1)",
                        "type": "scatter",
                        "xsrc": "utnosmas:22:eb8b95",
                        "ysrc": "utnosmas:22:4ef0e7",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "error_x": {
                            "type": "data",
                            "color": "rgba(0,0,255,1)",
                            "width": 0,
                            "arraysrc": "utnosmas:22:9c0d81",
                            "symmetric": false,
                            "arrayminussrc": "utnosmas:22:818f0a"
                        },
                        "opacity": 1,
                        "textsrc": "utnosmas:22:24ee8e",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "(model,1)"
                    },
                    {
                        "mode": "markers",
                        "name": "(model,1)",
                        "type": "scatter",
                        "xsrc": "utnosmas:22:136a48",
                        "ysrc": "utnosmas:22:95fb61",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(0,0,255,1)",
                                "width": 1.8897637795275593
                            },
                            "size": 11.338582677165356,
                            "color": "rgba(0,0,255,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "utnosmas:22:6296df",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "(model,1)"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.53424657534247,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Coefficient values of factors associated with neighborhoods popular among NYU undergraduates",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.00796903063893938,
                            0.14685652452614512
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "value"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716894984,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.00",
                            "0.05",
                            "0.10"
                        ],
                        "tickvals": [
                            0,
                            0.05,
                            0.1
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.00",
                            "0.05",
                            "0.10"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            6.6
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Coefficient"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Median rent",
                            "Rental units available",
                            "Renters under 35 years old",
                            "Median income",
                            "Distance closer to campus",
                            "Renters with college degrees"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            3.9999999999999996,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Median rent",
                            "Rental units available",
                            "Renters under 35 years old",
                            "Median income",
                            "Distance closer to campus",
                            "Renters with college degrees"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716894984,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.8897637795275593
                    },
                    "margin": {
                        "b": 37.6441003242671,
                        "l": 189.22374429223748,
                        "r": 7.305936073059362,
                        "t": 41.22400900006618
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": true,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~utnosmas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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": "2024-04-15 23:27:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "utnosmas",
                "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": "2024-04-16T22:10:01.441219Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AL1148/26.embed",
            "fid": "AL1148:26",
            "filename": "JPY-sentiment-analysis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AL1148/26/9_BVMKRECD35Z4W7JQNZ5JARY3DMZBH7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AL1148/26/2_AHPD6WYFAYCRKL7PU5RKL5B26LIO41.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/26/8_J456P5MKOTPHNDVF1H4A4TV4J2RAPT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/26/9_BVMKRECD35Z4W7JQNZ5JARY3DMZBH7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AL1148:26",
                "plots": "https://api.plotly.com/v2/plots/AL1148:26",
                "parent": "https://api.plotly.com/v2/folders/home?user=AL1148"
            },
            "owner": "AL1148",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "JPY Currency Sentiment Analysis",
            "views": 84,
            "web_url": "https://chart-studio.plotly.com/~AL1148/26/jpy-currency-sentiment-analysis/",
            "world_readable": true,
            "date_modified": "2024-04-16T22:10:01.760Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AL1148/26/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "green",
                                "grey",
                                "red"
                            ]
                        },
                        "labelssrc": "AL1148:27:d1318e",
                        "valuessrc": "AL1148:27:ddc167"
                    }
                ],
                "layout": {
                    "title": "JPY Currency Sentiment Analysis",
                    "width": 500,
                    "height": 400
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AL1148",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 21:37:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AL1148",
                "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": "2024-04-16T22:08:28.795239Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AL1148/24.embed",
            "fid": "AL1148:24",
            "filename": "CAD-sentiment-analysis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AL1148/24/9_9UWGN29ZGZG1VG25IJDSJCAT9BJGA7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AL1148/24/2_9N8K75ZYRRTCXIPTUIASMXBXWZ0FIU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/24/8_5FSKKJ5DP9GCL14C9WQ994IMR59DYI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/24/9_9UWGN29ZGZG1VG25IJDSJCAT9BJGA7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AL1148:24",
                "plots": "https://api.plotly.com/v2/plots/AL1148:24",
                "parent": "https://api.plotly.com/v2/folders/home?user=AL1148"
            },
            "owner": "AL1148",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "CAD Currency Sentiment Analysis",
            "views": 84,
            "web_url": "https://chart-studio.plotly.com/~AL1148/24/cad-currency-sentiment-analysis/",
            "world_readable": true,
            "date_modified": "2024-04-16T22:08:29.112Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AL1148/24/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "green",
                                "grey",
                                "red"
                            ]
                        },
                        "labelssrc": "AL1148:25:4d4668",
                        "valuessrc": "AL1148:25:834260"
                    }
                ],
                "layout": {
                    "title": "CAD Currency Sentiment Analysis",
                    "width": 500,
                    "height": 400
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AL1148",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 21:37:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AL1148",
                "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": "2024-04-16T22:08:28.629778Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~awerook/12.embed",
            "fid": "awerook:12",
            "filename": "speedDistance4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/awerook/12/9_E3KQUNHPS200BCVRRKEIC4UO8M3FCD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/awerook/12/2_5R6QZMR1H2Z7N7TINSNTP91DSDA2F9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/12/8_F0YA3FURCYUYX6ENJ7YIN9OZTHS60Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/12/9_E3KQUNHPS200BCVRRKEIC4UO8M3FCD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/awerook:12",
                "plots": "https://api.plotly.com/v2/plots/awerook:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=awerook"
            },
            "owner": "awerook",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~awerook/12/",
            "world_readable": true,
            "date_modified": "2024-04-16T23:01:02.530Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~awerook/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "awerook:13:0e339d",
                        "ysrc": "awerook:13:0b43be"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~awerook",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.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": "2024-04-15 21:33:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "awerook",
                "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": "2024-04-16T22:07:55.722046Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AL1148/22.embed",
            "fid": "AL1148:22",
            "filename": "EUR-sentiment-analysis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AL1148/22/9_29VL592K5BY5AOHEXU97AHQK7DVKDC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AL1148/22/2_L6M5IQ6LHF83K99FCT4OT0O0Q7E5T8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/22/8_PJ3Y74HXC4BFSBAJFGBRMMN8MHYHBG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/22/9_29VL592K5BY5AOHEXU97AHQK7DVKDC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AL1148:22",
                "plots": "https://api.plotly.com/v2/plots/AL1148:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=AL1148"
            },
            "owner": "AL1148",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "EUR Currency Sentiment Analysis",
            "views": 84,
            "web_url": "https://chart-studio.plotly.com/~AL1148/22/eur-currency-sentiment-analysis/",
            "world_readable": true,
            "date_modified": "2024-04-16T22:07:56.040Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AL1148/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "green",
                                "grey",
                                "red"
                            ]
                        },
                        "labelssrc": "AL1148:23:e0bc0e",
                        "valuessrc": "AL1148:23:0cf267"
                    }
                ],
                "layout": {
                    "title": "EUR Currency Sentiment Analysis",
                    "width": 500,
                    "height": 400
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AL1148",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 21:37:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AL1148",
                "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": "2024-04-16T22:07:10.851401Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AL1148/20.embed",
            "fid": "AL1148:20",
            "filename": "AUD-sentiment-analysis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AL1148/20/9_9WXMOL4M4ECKKPW4RIMY28UEC28DP2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AL1148/20/2_QCGSFVFIKLDSGN87J12CEZZFXUU38T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/20/8_3J27488X2WQENK2ARLIP0YINPWTVBS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AL1148/20/9_9WXMOL4M4ECKKPW4RIMY28UEC28DP2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AL1148:20",
                "plots": "https://api.plotly.com/v2/plots/AL1148:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=AL1148"
            },
            "owner": "AL1148",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "AUD Currency Sentiment Analysis",
            "views": 83,
            "web_url": "https://chart-studio.plotly.com/~AL1148/20/aud-currency-sentiment-analysis/",
            "world_readable": true,
            "date_modified": "2024-04-16T22:07:11.156Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AL1148/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "pie",
                        "marker": {
                            "colors": [
                                "green",
                                "grey",
                                "red"
                            ]
                        },
                        "labelssrc": "AL1148:21:07893c",
                        "valuessrc": "AL1148:21:d3d26c"
                    }
                ],
                "layout": {
                    "title": "AUD Currency Sentiment Analysis",
                    "width": 500,
                    "height": 400
                }
            },
            "height": 400,
            "width": 500,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AL1148",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 21:37:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AL1148",
                "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": "2024-04-16T22:06:39.782339Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~awerook/10.embed",
            "fid": "awerook:10",
            "filename": "speed4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/awerook/10/9_GXH4J8LB90FTW51CCCXUYNL48DRMVR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/awerook/10/2_B3AOQBI4JJP8MOTE7VTMLTQ130L1G3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/10/8_S6CHLSCLPM60YRKVVITXXRG9XTHB4H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/10/9_GXH4J8LB90FTW51CCCXUYNL48DRMVR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/awerook:10",
                "plots": "https://api.plotly.com/v2/plots/awerook:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=awerook"
            },
            "owner": "awerook",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~awerook/10/",
            "world_readable": true,
            "date_modified": "2024-04-16T23:01:02.550Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~awerook/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "awerook:11:25ab94",
                        "ysrc": "awerook:11:428c79"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~awerook",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.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": "2024-04-15 21:33:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "awerook",
                "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": "2024-04-16T21:56:10.316024Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marantrod/43.embed",
            "fid": "marantrod:43",
            "filename": "Plot 43",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marantrod/43/9_W5M8QLGROG51XUBP4OS1YBXKG9ACRU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marantrod/43/2_FYFAK7UMSQ2N7HMBBMB5H45DA79WAJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marantrod/43/8_K65DNKTE908BSMKM84S2KMRJEUDIS9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marantrod/43/9_W5M8QLGROG51XUBP4OS1YBXKG9ACRU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marantrod:43",
                "plots": "https://api.plotly.com/v2/plots/marantrod:43",
                "parent": "https://api.plotly.com/v2/folders/home?user=marantrod"
            },
            "owner": "marantrod",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~marantrod/43/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:56:10.326Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marantrod/43/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "1"
                            }
                        },
                        "mode": "markers",
                        "name": "IA ",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:506494",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "2"
                            }
                        },
                        "name": "sensores y percepción computacional ",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:091211",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "3"
                            }
                        },
                        "name": "HCI",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:95a43b",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "4"
                            }
                        },
                        "name": "IoT y dispositivos portátiles",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:6f6ad7",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "5"
                            }
                        },
                        "name": "Procesamiento de señales y visión por computadora",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:cfee5a",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Autor, año",
                                "y": "6"
                            }
                        },
                        "name": "Aplicaciones móviles y plataformas interactivas ",
                        "type": "bar",
                        "xsrc": "marantrod:42:b2fee4",
                        "ysrc": "marantrod:42:9b9fab",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            30.5
                        ],
                        "title": {
                            "text": "Estudios"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            10.526315789473685
                        ],
                        "title": {
                            "text": "Áreas de investigación y desarrollo"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.6775774754198837,
                        "y": 0.9534412955465587
                    },
                    "barmode": "relative",
                    "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/~marantrod",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 18:21:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marantrod",
                "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": "2024-04-16T21:52:59.877545Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kembroethan/1.embed",
            "fid": "kembroethan:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kembroethan/1/9_QA6O8MZH3WJ3N5KXKW8XPSUIN75J5U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kembroethan/1/2_7K1JXJ8D1XATN8Q8ZU4T1EOUIDUFCR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kembroethan/1/8_5FIWY7SSEK6KLUREODUOA8ZYJWJPRB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kembroethan/1/9_QA6O8MZH3WJ3N5KXKW8XPSUIN75J5U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kembroethan:1",
                "plots": "https://api.plotly.com/v2/plots/kembroethan:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=kembroethan"
            },
            "owner": "kembroethan",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~kembroethan/1/",
            "world_readable": true,
            "date_modified": "2024-04-16T21:52:59.889Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kembroethan/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "kembroethan:0:f0a449",
                        "ysrc": "kembroethan:0:d53d26"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "range": [
                            -0.11256830601092901,
                            6.887431693989071
                        ],
                        "autorange": false,
                        "showspikes": true
                    },
                    "yaxis": {
                        "range": [
                            -0.8023715415019763,
                            4.1976284584980235
                        ],
                        "autorange": false,
                        "showspikes": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kembroethan",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.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": "2024-04-16 21:52:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kembroethan",
                "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": "2024-04-16T21:52:52.215927Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~awerook/8.embed",
            "fid": "awerook:8",
            "filename": "distance4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/awerook/8/9_WX6PCLNPYZFCXWU37OIZ28YGMTE5R4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/awerook/8/2_A48830O9NE4XU0ZN8B80H0LPOTRSTN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/8/8_AE6KR4L2MYVLJVX0D1ZKIW8847LPFT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/awerook/8/9_WX6PCLNPYZFCXWU37OIZ28YGMTE5R4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/awerook:8",
                "plots": "https://api.plotly.com/v2/plots/awerook:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=awerook"
            },
            "owner": "awerook",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~awerook/8/",
            "world_readable": true,
            "date_modified": "2024-04-16T23:01:02.674Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~awerook/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "awerook:9:f632ad",
                        "ysrc": "awerook:9:fea081"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~awerook",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.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": "2024-04-15 21:33:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "awerook",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}