Plots List
Plots
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=cj0xJnA9MjAyNC0wNC0xMisxNyUzQTI5JTNBMzEuNTYxMzE0JTJCMDAlM0EwMA%3D%3D&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEyKzE3JTNBMzQlM0ExOC40MTA2OTglMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMisxOCUzQTMwJTNBMTkuODQyOTk1JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-12T18:30:19.842995Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~NAVEEN05/1.embed", "fid": "NAVEEN05:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/NAVEEN05/1/9_TIT24XOX6HGJBFJMAHBI9DVCJ3XZKY.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/NAVEEN05/1/2_JJMSN6KUINO1ZN92U7HECRGFK51VLR.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NAVEEN05/1/8_S9GRRLT9ZKER60Q5MO0X6KV3NRZAK0.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NAVEEN05/1/9_TIT24XOX6HGJBFJMAHBI9DVCJ3XZKY.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/NAVEEN05:1", "plots": "https://api.plotly.com/v2/plots/NAVEEN05:1", "parent": "https://api.plotly.com/v2/folders/home?user=NAVEEN05" }, "owner": "NAVEEN05", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~NAVEEN05/1/", "world_readable": true, "date_modified": "2024-04-12T18:30:19.854Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~NAVEEN05/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Time (milliseconds):", "y": "Magnetometer (nT):" } }, "mode": "lines", "type": "scatter", "xsrc": "NAVEEN05:0:7a7d3c", "ysrc": "NAVEEN05:0:40c292" } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "linear", "range": [ 0, 100 ], "title": { "text": "Time(milliseconds)" }, "autorange": true }, "yaxis": { "range": [ 52085.61111111111, 52153.38888888889 ], "title": { "text": "Magnetometer(nT)" }, "autorange": true }, "autosize": true, "dragmode": "zoom", "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/~NAVEEN05", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 18:29:02", "mapbox_access_tokens": null, "has_password": null, "username": "NAVEEN05", "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-12T18:27:21.222735Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~saraujo/27.embed", "fid": "saraujo:27", "filename": "Plot 27", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/saraujo/27/9_9E2WMYDBF472ZYR7YMWLAQCNBL1EZ4.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/saraujo/27/2_YDSA332ZJCHHARS76IEBBL7EN42X7E.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/saraujo/27/8_1G869IDIIC571WABL54ZJRW04UI1PH.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/saraujo/27/9_9E2WMYDBF472ZYR7YMWLAQCNBL1EZ4.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/saraujo:27", "plots": "https://api.plotly.com/v2/plots/saraujo:27", "parent": "https://api.plotly.com/v2/folders/home?user=saraujo" }, "owner": "saraujo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~saraujo/27/", "world_readable": true, "date_modified": "2024-04-12T18:27:21.235Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~saraujo/27/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "pie", "labelssrc": "saraujo:26:723397", "valuessrc": "saraujo:26:560a59" } ], "layout": { "title": { "text": "Simple Pie Chart" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~saraujo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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 13:34:22", "mapbox_access_tokens": null, "has_password": null, "username": "saraujo", "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-12T18:16:30.806967Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~ccerrillo/3.embed", "fid": "ccerrillo:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/ccerrillo/3/9_9MAISC7WXASUQA0LJP0CGDJQBLF041.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/ccerrillo/3/2_VZBKTAOTPRJEJAQ7TUZ8EJGHE4DBVG.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ccerrillo/3/8_I47PRAQX2NJVSV7D8EF8SMBXFXRSJ8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ccerrillo/3/9_9MAISC7WXASUQA0LJP0CGDJQBLF041.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/ccerrillo:3", "plots": "https://api.plotly.com/v2/plots/ccerrillo:3", "parent": "https://api.plotly.com/v2/folders/home?user=ccerrillo" }, "owner": "ccerrillo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~ccerrillo/3/", "world_readable": true, "date_modified": "2024-04-12T18:16:30.821Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~ccerrillo/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "timestamp", "y": "Banda pecho" } }, "mode": "lines", "type": "scatter", "xsrc": "ccerrillo:2:5a1109", "ysrc": "ccerrillo:2:430e5b" }, { "meta": { "columnNames": { "x": "timestamp", "y": "Polar verity" } }, "mode": "lines", "type": "scatter", "xsrc": "ccerrillo:2:5a1109", "ysrc": "ccerrillo:2:a420db", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "date", "range": [ "2024-04-12 14:57:52", "2024-04-12 15:45:04" ], "autorange": true, "showspikes": true }, "yaxis": { "type": "linear", "range": [ 85.5, 155.5 ], "autorange": true, "showspikes": true }, "autosize": true, "dragmode": "zoom", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" }, "hovermode": "x" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~ccerrillo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/44.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": "2024-04-10 20:04:34", "mapbox_access_tokens": null, "has_password": null, "username": "ccerrillo", "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-12T18:04:38.394322Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~saraujo/13.embed", "fid": "saraujo:13", "filename": "basic-bar-chart", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/saraujo/13/9_LBSCFH4Z73QTNRS5HM0MUGMNLTEC6I.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/saraujo/13/2_PZIQ1EW1U3PEXHB4O3NTRZEEACBGRT.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/saraujo/13/8_RPZG3B0TOAPU7WA1W2SBQGM6EAWFWU.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/saraujo/13/9_LBSCFH4Z73QTNRS5HM0MUGMNLTEC6I.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/saraujo:13", "plots": "https://api.plotly.com/v2/plots/saraujo:13", "parent": "https://api.plotly.com/v2/folders/home?user=saraujo" }, "owner": "saraujo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~saraujo/13/", "world_readable": true, "date_modified": "2024-04-24T16:19:07.851Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~saraujo/13/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "bar", "xsrc": "saraujo:106:292517", "ysrc": "saraujo:106:a81c24" } ], "layout": { "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~saraujo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.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 13:34:22", "mapbox_access_tokens": null, "has_password": null, "username": "saraujo", "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-12T17:59:19.598256Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~samuel.brohe/14.embed", "fid": "samuel.brohe:14", "filename": "Plot 14", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/samuel.brohe/14/9_46I0Z4YK45CA0YVW3OVU415TUKIUK2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/samuel.brohe/14/2_VE8LI2B6SDPYG2ABG0LOTR44PRCYGX.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel.brohe/14/8_SZK5CPM6LQXT6YPWY6MMK77HD15PHQ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel.brohe/14/9_46I0Z4YK45CA0YVW3OVU415TUKIUK2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/samuel.brohe:14", "plots": "https://api.plotly.com/v2/plots/samuel.brohe:14", "parent": "https://api.plotly.com/v2/folders/home?user=samuel.brohe" }, "owner": "samuel.brohe", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~samuel.brohe/14/", "world_readable": true, "date_modified": "2024-04-13T01:19:40.874Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~samuel.brohe/14/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "text": "A" } }, "mode": "markers+text", "type": "scatter", "xsrc": "samuel.brohe:17:2b0456", "ysrc": "samuel.brohe:17:5319f5", "marker": { "size": 12 }, "textsrc": "samuel.brohe:1:d8df16", "textfont": { "size": 13 }, "bandwidth": 0, "textposition": "top right", "autocolorscale": true } ], "frames": [], "layout": { "title": { "text": "Graphique de dispersion et régression de rang entre l'évolution des émissions de CO2 et celle du profit; en pourcentage pour McDonald's<br> Corporation au niveau mondial entre 2013 et 2023 par intervalle annuel" }, "xaxis": { "type": "linear", "range": [ 0.4181669394435352, 10.581833060556464 ], "title": { "text": "Evolution des émissions de CO2 (%)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0.3022151898734178, 10.697784810126581 ], "title": { "text": "Evolution du profit (%)" }, "autorange": true }, "legend": { "x": 0.8604567996237871, "y": 1.0776255707762556 }, "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/~samuel.brohe", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.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-12 17:58:56", "mapbox_access_tokens": null, "has_password": null, "username": "samuel.brohe", "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-12T17:53:38.307122Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~dionchu/98.embed", "fid": "dionchu:98", "filename": "20240412_basis", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/dionchu/98/9_OJQPPOOVJP6EYTTCVRR3AF7SI0UJPN.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/dionchu/98/2_6PERAWF23VLKV1ZRS37FPS9BSFQ0JR.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/98/8_WXOG63VH4XLHDKR51Z8XWNY31R7G9U.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/98/9_OJQPPOOVJP6EYTTCVRR3AF7SI0UJPN.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/dionchu:98", "plots": "https://api.plotly.com/v2/plots/dionchu:98", "parent": "https://api.plotly.com/v2/folders/home?user=dionchu" }, "owner": "dionchu", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~dionchu/98/", "world_readable": true, "date_modified": "2024-04-12T17:53:38.317Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~dionchu/98/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(167, 91, 162)" }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "<b>Aave Borrow</b><br>correlation 100.00%", "type": "scatter", "xsrc": "dionchu:97:14d0b8", "ysrc": "dionchu:97:85dcc5" }, { "line": { "color": "rgb(68, 170, 192)" }, "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "<b>3mo Basis (ETH)</b><br>correlation 96.06%", "type": "scatter", "xsrc": "dionchu:97:14d0b8", "ysrc": "dionchu:97:2860cd", "stackgroup": null }, { "line": { "color": "rgb(132, 137, 137)" }, "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "<b>Perp Funding</b><br>correlation 94.37%", "type": "scatter", "xsrc": "dionchu:97:14d0b8", "ysrc": "dionchu:97:f7b55d", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "DeFi money markets vs. ETH derivatives funding rates" }, "xaxis": { "type": "category", "range": [ 0, 288 ], "autorange": true }, "yaxis": { "range": [ 0.9772222222222215, 31.63277777777778 ], "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/~dionchu", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.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": "2023-10-20 19:36:55", "mapbox_access_tokens": null, "has_password": null, "username": "dionchu", "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-12T17:49:02.645123Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~vinayakmalkari/1.embed", "fid": "vinayakmalkari:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/vinayakmalkari/1/9_Y0L7V6O18XFRGQINHAHFIKSLJ5SDEK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/vinayakmalkari/1/2_OLBEM6VYJHQPMK3OFIUYIYJ1N5EFHB.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vinayakmalkari/1/8_7MWUE7S7GYR1C5GUZLO1KR9NCROMNK.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vinayakmalkari/1/9_Y0L7V6O18XFRGQINHAHFIKSLJ5SDEK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/vinayakmalkari:1", "plots": "https://api.plotly.com/v2/plots/vinayakmalkari:1", "parent": "https://api.plotly.com/v2/folders/home?user=vinayakmalkari" }, "owner": "vinayakmalkari", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 15, "web_url": "https://chart-studio.plotly.com/~vinayakmalkari/1/", "world_readable": true, "date_modified": "2024-04-12T17:49:02.656Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~vinayakmalkari/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": "vinayakmalkari:0:e24ac9", "ysrc": "vinayakmalkari:0:f3c01a" } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ -0.5739940691082044, -0.523663207321456 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ 2.2629619741438383, 2.2851700426344252 ], "autorange": false }, "autosize": true, "template": { "themeRef": "PLOTLY_CLASSIC" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~vinayakmalkari", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 17:47:47", "mapbox_access_tokens": null, "has_password": null, "username": "vinayakmalkari", "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-12T17:48:12.561024Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~HAMEER/1.embed", "fid": "HAMEER:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/HAMEER/1/9_996ZXK1SXET2ISJRTUMA1UD3BWODKE.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/HAMEER/1/2_7R7UOI9BTINJO8WDYYFXKL1X6RRHFX.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/HAMEER/1/8_Y5XKTD7K3L4TI07JJKZN727G8DN7HB.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/HAMEER/1/9_996ZXK1SXET2ISJRTUMA1UD3BWODKE.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/HAMEER:1", "plots": "https://api.plotly.com/v2/plots/HAMEER:1", "parent": "https://api.plotly.com/v2/folders/home?user=HAMEER" }, "owner": "HAMEER", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~HAMEER/1/", "world_readable": true, "date_modified": "2024-04-12T17:48:12.580Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~HAMEER/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "LANGUAGE", "y": "POPULATION ", "labels": "LANGUAGE", "values": "" } }, "mode": "markers", "type": "bar", "xsrc": "HAMEER:0:e62079", "ysrc": "HAMEER:0:5e1c57", "labelssrc": "HAMEER:0:e62079", "orientation": "v" } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -0.5, 24.5 ], "title": { "font": { "color": "rgb(86, 39, 39)" } }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 12790 ], "autorange": false }, "autosize": true, "template": { "themeRef": "PLOTLY_CLASSIC" }, "annotations": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~HAMEER", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 17:39:04", "mapbox_access_tokens": null, "has_password": null, "username": "HAMEER", "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-12T17:47:58.721134Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~dionchu/96.embed", "fid": "dionchu:96", "filename": "20240412", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/dionchu/96/9_YKI7YV93EP1PX9Z05MK97KUWFBDIL6.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/dionchu/96/2_IPJWGANRYRYB8ZL0KVF9P00ZIZR10V.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/96/8_VSJSNR1FKSNU5X5WRIH6TSEQU32V2Z.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/96/9_YKI7YV93EP1PX9Z05MK97KUWFBDIL6.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/dionchu:96", "plots": "https://api.plotly.com/v2/plots/dionchu:96", "parent": "https://api.plotly.com/v2/folders/home?user=dionchu" }, "owner": "dionchu", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~dionchu/96/", "world_readable": true, "date_modified": "2024-04-12T17:47:58.731Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~dionchu/96/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "e5f816", "meta": { "columnNames": { "x": "C", "y": "B" } }, "mode": "lines", "name": "Clearing Volume - wETH/wstETH", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:e6b691", "xaxis": "x", "yaxis": "y2", "marker": { "color": "rgb(92, 58, 214)", "opacity": 1 }, "opacity": 0.5, "stackgroup": null, "orientation": "v" }, { "uid": "fc1e4a", "line": { "color": "rgb(92, 58, 214)" }, "meta": { "columnNames": { "x": "C", "y": "A" } }, "mode": "markers+lines", "name": "Clearing Rate - wETH/wstETH<br>", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:3a6c5e", "opacity": 1 }, { "uid": "a767bc", "line": { "color": "rgb(92, 58, 214)", "width": 2 }, "meta": { "columnNames": { "x": "C", "y": "D" } }, "mode": "markers+lines", "name": "Clearing Rate - USDC/sDAI", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:96417f", "xaxis": "x2", "yaxis": "y3", "stackgroup": null, "connectgaps": false }, { "uid": "7f8dba", "meta": { "columnNames": { "x": "C", "y": "E" } }, "mode": "lines", "name": "Clearing Volume - USDC/sDAI", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:fe32a9", "xaxis": "x2", "yaxis": "y4", "marker": { "color": "rgb(92, 58, 214)", "opacity": 1 }, "opacity": 0.5, "stackgroup": null, "orientation": "v" }, { "uid": "d1c0cf", "meta": { "columnNames": { "x": "C", "y": "F" } }, "name": "Clearing Volume - USDC/wstETH", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:2301c5", "xaxis": "x2", "yaxis": "y4", "marker": { "color": "rgb(99, 209, 207)", "opacity": 0.75 }, "visible": true, "orientation": "v" }, { "uid": "e60dcb", "meta": { "columnNames": { "x": "C", "y": "G" } }, "mode": "markers+lines", "name": "Clearing Rate - USDC/wstETH", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:686774", "xaxis": "x2", "yaxis": "y3", "marker": { "color": "rgb(99, 209, 207)" }, "orientation": "v" }, { "uid": "c172a0", "line": { "color": "rgb(99, 209, 207)" }, "meta": { "columnNames": { "x": "C", "y": "I" } }, "mode": "markers+lines", "name": "Clearing Rate - wETH/wstETH (12wk)", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:9018c9", "xaxis": "x", "yaxis": "y", "connectgaps": true }, { "uid": "778fcb", "meta": { "columnNames": { "x": "C", "y": "H" } }, "mode": "lines", "name": "Clearing Volume - wETH/wstETH (12wk)", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:873aba", "yaxis": "y2", "marker": { "color": "rgb(99, 209, 207)", "opacity": 0.75 }, "stackgroup": null, "orientation": "v" }, { "meta": { "columnNames": { "x": "C", "y": "J" } }, "name": "Clearing Volume - USDC/wSTBT", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:83b768", "xaxis": "x2", "yaxis": "y4", "marker": { "color": "rgb(99, 209, 207)", "opacity": 0.5 }, "orientation": "v" }, { "meta": { "columnNames": { "x": "C", "y": "P" } }, "name": "Clearing Volume - wETH/weETH 5mo", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:751e35", "xaxis": "x", "yaxis": "y2", "marker": { "color": "rgb(44, 188, 252)", "opacity": 0.5 }, "orientation": "v" }, { "meta": { "columnNames": { "x": "C", "y": "R" } }, "name": "<b>Clearing Volume - wETH/weETH</b>", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:32b770", "yaxis": "y2", "marker": { "color": "rgb(180, 92, 252)", "opacity": 0.5 }, "orientation": "v" }, { "meta": { "columnNames": { "x": "C", "y": "Q" } }, "mode": "markers+lines", "name": "<b>Clearing Rate - wETH/weETH 5mo</b>", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:48e064", "yaxis": "y", "marker": { "color": "rgb(44, 188, 252)" }, "orientation": "v" }, { "line": { "width": 2 }, "meta": { "columnNames": { "x": "C", "y": "S" } }, "mode": "markers+lines", "name": "<b>Clearing Rate - wETH/weETH</b>", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:dc0f69", "marker": { "color": "rgb(180, 92, 252)" }, "opacity": 1, "stackgroup": null }, { "line": { "color": "rgb(4, 156, 244)" }, "meta": { "columnNames": { "x": "C", "y": "M" } }, "mode": "markers+lines", "name": "Clearing Rate - USDC/wstETH High LTV", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:47f420", "xaxis": "x2", "yaxis": "y3", "connectgaps": true, "orientation": "v" }, { "line": { "color": "rgb(244, 148, 68)" }, "meta": { "columnNames": { "x": "C", "y": "O" } }, "mode": "markers+lines", "name": "<b>Clearing Rate - USDC/wBTC</b>", "type": "scatter", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:2d322d", "xaxis": "x2", "yaxis": "y3", "stackgroup": null, "connectgaps": true }, { "meta": { "columnNames": { "x": "C", "y": "L" } }, "mode": "markers", "name": "Clearing Volume - USDC/wstETH High LTV", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:ce4b48", "xaxis": "x2", "yaxis": "y4", "marker": { "color": "rgb(4, 156, 244)", "opacity": 0.5 }, "stackgroup": null, "orientation": "v" }, { "meta": { "columnNames": { "x": "C", "y": "N" } }, "mode": "markers+lines", "name": "Clearing Volume - USDC/wBTC", "type": "bar", "xsrc": "dionchu:95:824bb0", "ysrc": "dionchu:95:64b17c", "xaxis": "x2", "yaxis": "y4", "marker": { "color": "rgb(244, 148, 68)" }, "opacity": 0.5, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "<br>" }, "xaxis": { "side": "bottom", "type": "category", "range": [ 3.255142750704574, 35 ], "ticks": "", "title": { "text": "<br>" }, "anchor": "free", "domain": [ 0.55, 1 ], "showline": false, "autorange": false, "overlaying": false, "showspikes": true, "rangeslider": { "range": [ -0.6703160504028094, 10.670316050402809 ], "yaxis": {}, "yaxis2": {}, "visible": false, "autorange": true } }, "yaxis": { "type": "linear", "range": [ 0.10971069182389953, 16.26103144654088 ], "title": { "text": "<br>" }, "domain": [ 0, 1 ], "showgrid": true, "showline": false, "tickmode": "linear", "autorange": false, "gridcolor": "rgb(238, 238, 238)", "gridwidth": 1, "overlaying": false, "tickformat": "" }, "images": [ { "x": 0.5, "y": 0.5, "layer": "above", "sizex": 1, "sizey": 1, "source": "data:image/png;base64,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AAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACJyuHgBbdHJ2vnoCAACwmPcFAMDHuXAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAicrh4AAHDoLu7fWT0B4CCdnJ2vngAAcFBcuAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAETlcPAAA4dCdn56snAAAAsAEu3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAIHT1QMAAA7Nxf07qycAHKSTs/PVEwAADpoLdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAIDA6eoBAACH5uTsfPUEAAAANsiFOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAIHC6egAAwKG5uH9n9QSAg3Rydr56AgDAQXPhDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABA4XT0AAODQnJydr54AAADABrlwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4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", "visible": false, "xanchor": "center", "yanchor": "middle" } ], "legend": { "x": 0.37689872425790677, "y": 2.735632183908046, "valign": "top", "xanchor": "right", "yanchor": "bottom", "itemsizing": "trace", "traceorder": "normal", "orientation": "h" }, "xaxis2": { "side": "bottom", "type": "category", "range": [ 0.3765865450280672, 35 ], "title": { "text": "<br>" }, "anchor": "free", "domain": [ 0, 0.45 ], "autorange": false, "overlaying": false, "showspikes": false }, "yaxis2": { "side": "right", "type": "linear", "range": [ -9.826567562416649, 1016.588526777206 ], "title": { "text": "ETH Volume" }, "domain": [ 0, 1 ], "showgrid": false, "autorange": false, "overlaying": "y" }, "yaxis3": { "side": "left", "type": "linear", "range": [ -0.0756603773584906, 13 ], "title": { "text": "Clearing Rate" }, "anchor": "x2", "domain": [ 0, 1 ], "showgrid": true, "zeroline": false, "autorange": false, "overlaying": false, "zerolinecolor": "rgb(234, 234, 234)", "zerolinewidth": 1 }, "yaxis4": { "side": "right", "type": "linear", "range": [ -37735.849056603765, 3000000 ], "title": { "text": "USDC Volume" }, "anchor": "x2", "showgrid": false, "showline": false, "zeroline": false, "autorange": false, "overlaying": "y3" }, "barmode": "stack", "autosize": true, "dragmode": "pan", "showlegend": false, "annotations": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~dionchu", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.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": "2023-10-20 19:36:55", "mapbox_access_tokens": null, "has_password": null, "username": "dionchu", "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-12T17:34:18.410698Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~kwanghyunlim/19.embed", "fid": "kwanghyunlim:19", "filename": "ECG Report 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/kwanghyunlim/19/9_8PHLZ77VY3F9EASAHRNOP5E41A2OE6.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/kwanghyunlim/19/2_Y71S5YCETDYDOYF2J2XCUU2SG4D0QK.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kwanghyunlim/19/8_XX981XYY9A20R4RYJFJUMAU9532RR3.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kwanghyunlim/19/9_8PHLZ77VY3F9EASAHRNOP5E41A2OE6.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/kwanghyunlim:19", "plots": "https://api.plotly.com/v2/plots/kwanghyunlim:19", "parent": "https://api.plotly.com/v2/folders/home?user=kwanghyunlim" }, "owner": "kwanghyunlim", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~kwanghyunlim/19/", "world_readable": true, "date_modified": "2024-04-13T04:01:56.439Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~kwanghyunlim/19/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "name": "Experiment", "type": "bar", "xsrc": "kwanghyunlim:18:5a1199", "ysrc": "kwanghyunlim:18:e5a9a4", "orientation": "v" }, { "meta": { "columnNames": { "x": "A", "y": "C" } }, "name": "Baseline", "type": "bar", "xsrc": "kwanghyunlim:18:5a1199", "ysrc": "kwanghyunlim:18:1a02df", "orientation": "v" } ], "frames": [], "layout": { "font": { "size": 21 }, "xaxis": { "type": "category", "range": [ -0.5, 1.5 ], "title": { "text": "Conditions" }, "autorange": false }, "yaxis": { "type": "linear", "range": [ 0, 100.78947368421052 ], "title": { "text": "Mean Pulse Rate (bpm)" }, "autorange": false }, "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" }, "uniformtext": { "mode": false } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~kwanghyunlim", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.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-01-26 03:56:24", "mapbox_access_tokens": null, "has_password": null, "username": "kwanghyunlim", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "