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=cD0yMDI1LTA3LTAxKzEyJTNBMzclM0EzMy4yNzc3NzUlMkIwMCUzQTAw&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDI1LTA3LTAxKzExJTNBMDIlM0E0OS41ODc3ODUlMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNS0wNy0wMSsxMiUzQTMxJTNBMjguMTk3OTI2JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-07-01T12:31:28.197926Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~legend05070911/31.embed", "fid": "legend05070911:31", "filename": "线程数=4 & io-depth = 8时rdma单向写4k的时延数据plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/legend05070911/31/9_035AIF89CFZ8FQIZFYVXHKAM6DP1V6.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/legend05070911/31/2_JZBG0O4KS544JXFHNMPLNZPBIS60IE.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/legend05070911/31/8_GUKP0J2V2O2VWTCA82RE23W5Z45VQE.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/legend05070911/31/9_035AIF89CFZ8FQIZFYVXHKAM6DP1V6.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/legend05070911:31", "plots": "https://api.plotly.com/v2/plots/legend05070911:31", "parent": "https://api.plotly.com/v2/folders/home?user=legend05070911" }, "owner": "legend05070911", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~legend05070911/31/", "world_readable": true, "date_modified": "2025-07-01T12:31:28.209Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~legend05070911/31/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "data.0.x", "y": "data.0.y" } }, "mode": "lines+markers", "name": "huawei 2*100G", "type": "scatter", "xsrc": "legend05070911:30:1205f2", "ysrc": "legend05070911:30:1e30e1" }, { "meta": { "columnNames": { "x": "data.1.x", "y": "data.1.y" } }, "mode": "lines+markers", "name": "mellanox 2*100G", "type": "scatter", "xsrc": "legend05070911:30:8f540c", "ysrc": "legend05070911:30:d20791", "xaxis": "x" } ], "frames": [], "layout": { "title": { "text": "线程数=4 & io-depth = 8时rdma单向写4k的时延数据" }, "xaxis": { "type": "linear", "range": [ -85.01512859304084, 1695.0151285930408 ], "title": { "text": "连接数(per-thread)" }, "autorange": true, "showspikes": false }, "yaxis": { "type": "linear", "range": [ 17.082551594746715, 72.91744840525328 ], "title": { "text": "时延(us)" }, "autorange": true, "showspikes": false }, "legend": { "x": 0.5312236320071054, "y": 1.288225824663466 }, "autosize": true, "dragmode": "zoom", "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } } } ], "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, "#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, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 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, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "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, "#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, "#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, "#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, "#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": "", "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "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" ], "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, "#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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~legend05070911", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-26 13:16:36", "mapbox_access_tokens": null, "has_password": null, "username": "legend05070911", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T12:28:01.510400Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mei9301/9.embed", "fid": "Mei9301:9", "filename": "září 2024", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mei9301/9/9_NUUGJ9CIHCER1KHZ576ST3OSGRJOMT.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mei9301/9/2_KUFV8S482XO92LYEWP3UUIVM70V882.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mei9301/9/8_CJUTCSLBWUVWXA83NTHK2TJJ03JS9V.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mei9301/9/9_NUUGJ9CIHCER1KHZ576ST3OSGRJOMT.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mei9301:9", "plots": "https://api.plotly.com/v2/plots/Mei9301:9", "parent": "https://api.plotly.com/v2/folders/home?user=Mei9301" }, "owner": "Mei9301", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Mei9301/9/", "world_readable": true, "date_modified": "2025-07-01T12:28:01.520Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mei9301/9/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(0, 0, 0)", "shape": "linear" }, "meta": { "columnNames": { "x": "F", "y": "G" } }, "mode": "lines", "name": "Fourier fit", "type": "scatter", "xsrc": "Mei9301:8:f1a0a8", "ysrc": "Mei9301:8:73cf06", "xaxis": "x2", "yaxis": "y2", "visible": true, "connectgaps": false }, { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "D" } } }, "mode": "markers", "type": "scatter", "xsrc": "Mei9301:8:ed1fd8", "ysrc": "Mei9301:8:df1828", "xaxis": "x", "yaxis": "y", "error_y": { "meta": { "columnNames": { "array": "D" } }, "arraysrc": "Mei9301:8:6bf3e7" }, "visible": true, "boxpoints": false, "transforms": [ { "meta": { "columnNames": { "groups": "C" } }, "type": "groupby", "styles": [ { "value": { "mode": "markers", "name": "Opava 29. 7.–30. 7.", "marker": { "color": "rgb(255, 0, 0)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "3" }, { "value": { "name": "Ondřejov 29. 7.–30. 7.", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": true }, "target": "4" }, { "value": { "name": "Opava 30. 7.–31. 7.", "marker": { "color": "rgb(0, 255, 5)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "5" }, { "value": { "name": "Ondřejov 30. 7.–31. 7.", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 } }, "target": "6" }, { "value": { "name": "Opava 30. 8.–31. 8.", "marker": { "color": "rgb(255, 0, 0)" }, "error_y": { "width": 2, "thickness": 1 }, "visible": true }, "target": "7" }, { "value": { "name": "Ondřejov 30. 8.–31. 8.", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 }, "visible": "legendonly" }, "target": "8" }, { "value": { "name": "Opava 31. 8.–1. 9.", "marker": { "color": "rgb(0, 255, 5)" }, "error_y": { "width": 2, "thickness": 1 }, "visible": true }, "target": "9" }, { "value": { "name": "Ondřejov 31. 8.–1. 9.", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 }, "visible": "legendonly" }, "target": "10" }, { "value": { "name": "Ondřejov 10. 9.–11. 9. (1 pole)", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 } }, "target": "11" }, { "value": { "name": "Ondřejov 10. 9.–11. 9. (2 pole)", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 } }, "target": "12" } ], "groupssrc": "Mei9301:8:a3783b" } ] } ], "frames": [], "layout": { "title": { "text": "" }, "xaxis": { "side": "bottom", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "tick0": 0, "ticks": "inside", "title": { "text": "Synodická rotační fáze" }, "anchor": "y", "domain": [ 0, 1 ], "showgrid": false, "showline": true, "tickmode": "linear", "autorange": false, "rangemode": "normal" }, "yaxis": { "side": "left", "type": "linear", "dtick": 0.1, "range": [ 18.5, 17.9 ], "ticks": "", "title": { "text": "R (1, 41°)" }, "domain": [ 0, 0 ], "nticks": 0, "showgrid": false, "showline": true, "tickmode": "auto", "autorange": false, "rangemode": "normal", "separatethousands": false }, "legend": { "x": 0.009227087973981921, "y": 0.9893407803650095, "yanchor": "auto" }, "xaxis2": { "side": "top", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "ticks": "inside", "title": { "text": "" }, "showgrid": false, "showline": true, "tickmode": "linear", "autorange": true, "rangemode": "normal", "overlaying": "x" }, "yaxis2": { "side": "right", "type": "linear", "dtick": 0.1, "range": [ 18.5, 17.9 ], "nticks": 0, "showgrid": false, "showline": true, "tickmode": "auto", "autorange": false, "rangemode": "normal", "overlaying": "y" }, "autosize": true, "dragmode": "select", "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/~Mei9301", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-01 11:01:15", "mapbox_access_tokens": null, "has_password": null, "username": "Mei9301", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T12:21:17.385372Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~roparici/6.embed", "fid": "roparici:6", "filename": "Plot 6", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/roparici/6/9_3O0OY3AM0C1CSQBPCJ8E7RQOUPKQC2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/roparici/6/2_Y8JZ7MEU3J76VD595A38S76PB9Z142.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/roparici/6/8_RUU9XMEQ68H3L9M15FQI5CLKWC6WN3.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/roparici/6/9_3O0OY3AM0C1CSQBPCJ8E7RQOUPKQC2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/roparici:6", "plots": "https://api.plotly.com/v2/plots/roparici:6", "parent": "https://api.plotly.com/v2/folders/home?user=roparici" }, "owner": "roparici", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~roparici/6/", "world_readable": true, "date_modified": "2025-07-01T12:21:17.398Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~roparici/6/", "current_user_permission": "read", "is_theme": null, "is_template": true, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "x", "y": "y" } }, "type": "bar", "xsrc": "roparici:5:34e141", "ysrc": "roparici:5:4c7131", "marker": { "color": "#0F5D81" }, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Results from the specific country" }, "xaxis": { "type": "date", "range": [ "2023-05-21 12:00", "2025-12-30 12:00" ], "title": { "text": "Dates" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 1347.3684210526317 ], "title": { "text": "Number of forms" }, "autorange": true }, "bargap": 0.05, "barmode": "overlay", "autosize": true, "bargroupgap": 0.2 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~roparici", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-23 12:18:04", "mapbox_access_tokens": null, "has_password": null, "username": "roparici", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T12:18:14.213291Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~p1Marshall/13.embed", "fid": "p1Marshall:13", "filename": "RomanCalibration3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/p1Marshall/13/9_DWOGQ72Z3Y1O5RU1TL7CJF4IIW7ZSR.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/p1Marshall/13/2_7JOJ8W2EOY9YUSF7TU5F7EG6K5PUP5.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/p1Marshall/13/8_4SPHD7RAFPZP0EQFVGNFOL9C3KB652.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/p1Marshall/13/9_DWOGQ72Z3Y1O5RU1TL7CJF4IIW7ZSR.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/p1Marshall:13", "plots": "https://api.plotly.com/v2/plots/p1Marshall:13", "parent": "https://api.plotly.com/v2/folders/home?user=p1Marshall" }, "owner": "p1Marshall", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~p1Marshall/13/", "world_readable": true, "date_modified": "2025-07-01T12:18:14.227Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~p1Marshall/13/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "fill": "toself", "line": { "dash": "solid", "color": "transparent", "width": 1.8897637795275593 }, "mode": "lines", "type": "scatter", "xsrc": "p1Marshall:12:d6dcc3", "ysrc": "p1Marshall:12:920489", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "p1Marshall:12:c1629a", "fillcolor": "rgba(240,228,66,1)", "hoverinfo": "text", "showlegend": false }, { "fill": "toself", "line": { "dash": "solid", "color": "transparent", "width": 1.8897637795275593 }, "mode": "lines", "type": "scatter", "xsrc": "p1Marshall:12:16df2c", "ysrc": "p1Marshall:12:7a6fbb", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "p1Marshall:12:9177ff", "fillcolor": "rgba(153,153,153,1)", "hoverinfo": "text", "showlegend": false }, { "mode": "markers", "name": "ETH", "type": "scatter", "xsrc": "p1Marshall:12:e43473", "ysrc": "p1Marshall:12:778c68", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(86,180,233,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(86,180,233,1)", "symbol": "square", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:34742e", "hoverinfo": "text", "showlegend": true, "legendgroup": "ETH" }, { "mode": "markers", "name": "GrA", "type": "scatter", "xsrc": "p1Marshall:12:da05ce", "ysrc": "p1Marshall:12:99ed3c", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(240,228,66,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(240,228,66,1)", "symbol": "circle", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:0e511e", "hoverinfo": "text", "showlegend": true, "legendgroup": "GrA" }, { "mode": "markers", "name": "GrM", "type": "scatter", "xsrc": "p1Marshall:12:33fce5", "ysrc": "p1Marshall:12:31567c", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(86,180,233,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(86,180,233,1)", "symbol": "circle-open", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:9d31e6", "hoverinfo": "text", "showlegend": true, "legendgroup": "GrM" }, { "mode": "markers", "name": "MAMS", "type": "scatter", "xsrc": "p1Marshall:12:02c0ce", "ysrc": "p1Marshall:12:3dd736", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(240,228,66,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(240,228,66,1)", "symbol": "triangle-up", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:1311bb", "hoverinfo": "text", "showlegend": true, "legendgroup": "MAMS" }, { "mode": "markers", "name": "PLD", "type": "scatter", "xsrc": "p1Marshall:12:e99350", "ysrc": "p1Marshall:12:f0b0f8", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(240,228,66,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(240,228,66,1)", "symbol": "diamond", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:f22e49", "hoverinfo": "text", "showlegend": true, "legendgroup": "PLD" }, { "mode": "markers", "name": "QL", "type": "scatter", "xsrc": "p1Marshall:12:864161", "ysrc": "p1Marshall:12:6e30a3", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(153,153,153,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(153,153,153,1)", "symbol": "diamond-open", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:7d5dcd", "hoverinfo": "text", "showlegend": true, "legendgroup": "QL" }, { "mode": "markers", "name": "UB", "type": "scatter", "xsrc": "p1Marshall:12:f7dfc1", "ysrc": "p1Marshall:12:6e61da", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(153,153,153,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(153,153,153,1)", "symbol": "triangle-down-open", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:8ec47a", "hoverinfo": "text", "showlegend": true, "legendgroup": "UB" }, { "mode": "markers", "name": "Wk", "type": "scatter", "xsrc": "p1Marshall:12:653000", "ysrc": "p1Marshall:12:b329e6", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(153,153,153,1)", "width": 1.8897637795275593 }, "size": 7.559055118110237, "color": "rgba(153,153,153,1)", "symbol": "square-x-open", "opacity": 1, "autocolorscale": false }, "hoveron": "points", "textsrc": "p1Marshall:12:15a979", "hoverinfo": "text", "showlegend": true, "legendgroup": "Wk" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(ETH,1)", "type": "scatter", "xsrc": "p1Marshall:12:112c99", "ysrc": "p1Marshall:12:c2fa03", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(86,180,233,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:705e99", "symmetric": false, "arrayminussrc": "p1Marshall:12:cd27bd" }, "opacity": 1, "textsrc": "p1Marshall:12:6feb0f", "hoverinfo": "text", "showlegend": true, "legendgroup": "(ETH,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(GrA,1)", "type": "scatter", "xsrc": "p1Marshall:12:cfb532", "ysrc": "p1Marshall:12:2fd3c9", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:8b97d3", "symmetric": false, "arrayminussrc": "p1Marshall:12:fdf4e2" }, "opacity": 1, "textsrc": "p1Marshall:12:03ec32", "hoverinfo": "text", "showlegend": true, "legendgroup": "(GrA,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(GrM,1)", "type": "scatter", "xsrc": "p1Marshall:12:5a2886", "ysrc": "p1Marshall:12:ea0c64", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(86,180,233,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:a3d68b", "symmetric": false, "arrayminussrc": "p1Marshall:12:ece6ac" }, "opacity": 1, "textsrc": "p1Marshall:12:88bbba", "hoverinfo": "text", "showlegend": true, "legendgroup": "(GrM,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(MAMS,1)", "type": "scatter", "xsrc": "p1Marshall:12:d5fe45", "ysrc": "p1Marshall:12:f6fe3a", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:efe297", "symmetric": false, "arrayminussrc": "p1Marshall:12:6fd4bc" }, "opacity": 1, "textsrc": "p1Marshall:12:e09213", "hoverinfo": "text", "showlegend": true, "legendgroup": "(MAMS,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(PLD,1)", "type": "scatter", "xsrc": "p1Marshall:12:2d661d", "ysrc": "p1Marshall:12:b8d885", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:d6fd09", "symmetric": false, "arrayminussrc": "p1Marshall:12:b77b6d" }, "opacity": 1, "textsrc": "p1Marshall:12:adb0a0", "hoverinfo": "text", "showlegend": true, "legendgroup": "(PLD,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(QL,1)", "type": "scatter", "xsrc": "p1Marshall:12:646f8e", "ysrc": "p1Marshall:12:80792e", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:1df68f", "symmetric": false, "arrayminussrc": "p1Marshall:12:682a95" }, "opacity": 1, "textsrc": "p1Marshall:12:909206", "hoverinfo": "text", "showlegend": true, "legendgroup": "(QL,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(UB,1)", "type": "scatter", "xsrc": "p1Marshall:12:525664", "ysrc": "p1Marshall:12:9908f6", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:e71c8a", "symmetric": false, "arrayminussrc": "p1Marshall:12:b60a60" }, "opacity": 1, "textsrc": "p1Marshall:12:96ec51", "hoverinfo": "text", "showlegend": true, "legendgroup": "(UB,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(Wk,1)", "type": "scatter", "xsrc": "p1Marshall:12:ea8639", "ysrc": "p1Marshall:12:bfedf0", "frame": null, "xaxis": "x", "yaxis": "y", "error_y": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.1833246004715004, "arraysrc": "p1Marshall:12:a6732a", "symmetric": false, "arrayminussrc": "p1Marshall:12:71ba60" }, "opacity": 1, "textsrc": "p1Marshall:12:4f97a2", "hoverinfo": "text", "showlegend": true, "legendgroup": "(Wk,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(ETH,1)", "type": "scatter", "xsrc": "p1Marshall:12:f89ad7", "ysrc": "p1Marshall:12:2f7ad7", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(86,180,233,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:9cefc3", "symmetric": false, "arrayminussrc": "p1Marshall:12:a1676f" }, "opacity": 1, "textsrc": "p1Marshall:12:5c94e1", "hoverinfo": "text", "showlegend": false, "legendgroup": "(ETH,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(GrA,1)", "type": "scatter", "xsrc": "p1Marshall:12:28642e", "ysrc": "p1Marshall:12:64d25d", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:73fe97", "symmetric": false, "arrayminussrc": "p1Marshall:12:36419f" }, "opacity": 1, "textsrc": "p1Marshall:12:692b6a", "hoverinfo": "text", "showlegend": false, "legendgroup": "(GrA,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(GrM,1)", "type": "scatter", "xsrc": "p1Marshall:12:b83190", "ysrc": "p1Marshall:12:8f48e6", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(86,180,233,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:47e4f2", "symmetric": false, "arrayminussrc": "p1Marshall:12:8c381d" }, "opacity": 1, "textsrc": "p1Marshall:12:0393c7", "hoverinfo": "text", "showlegend": false, "legendgroup": "(GrM,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(MAMS,1)", "type": "scatter", "xsrc": "p1Marshall:12:780e8f", "ysrc": "p1Marshall:12:c5c8a4", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:fd3cc5", "symmetric": false, "arrayminussrc": "p1Marshall:12:ccc88f" }, "opacity": 1, "textsrc": "p1Marshall:12:7d406f", "hoverinfo": "text", "showlegend": false, "legendgroup": "(MAMS,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(PLD,1)", "type": "scatter", "xsrc": "p1Marshall:12:73c253", "ysrc": "p1Marshall:12:c27983", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(240,228,66,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:a9aaee", "symmetric": false, "arrayminussrc": "p1Marshall:12:ec3bb4" }, "opacity": 1, "textsrc": "p1Marshall:12:50c755", "hoverinfo": "text", "showlegend": false, "legendgroup": "(PLD,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(QL,1)", "type": "scatter", "xsrc": "p1Marshall:12:b873d6", "ysrc": "p1Marshall:12:6d0bdb", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:07f4f2", "symmetric": false, "arrayminussrc": "p1Marshall:12:46a48b" }, "opacity": 1, "textsrc": "p1Marshall:12:459b5f", "hoverinfo": "text", "showlegend": false, "legendgroup": "(QL,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(UB,1)", "type": "scatter", "xsrc": "p1Marshall:12:9bfeb9", "ysrc": "p1Marshall:12:909a03", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:a0fef9", "symmetric": false, "arrayminussrc": "p1Marshall:12:c5f624" }, "opacity": 1, "textsrc": "p1Marshall:12:557d8b", "hoverinfo": "text", "showlegend": false, "legendgroup": "(UB,1)" }, { "line": { "color": "transparent" }, "mode": "lines", "name": "(Wk,1)", "type": "scatter", "xsrc": "p1Marshall:12:9f263a", "ysrc": "p1Marshall:12:b0a9bb", "frame": null, "xaxis": "x", "yaxis": "y", "error_x": { "type": "data", "color": "rgba(153,153,153,1)", "width": 0.16945187165777117, "arraysrc": "p1Marshall:12:0b96cf", "symmetric": false, "arrayminussrc": "p1Marshall:12:5294a3" }, "opacity": 1, "textsrc": "p1Marshall:12:f9459c", "hoverinfo": "text", "showlegend": false, "legendgroup": "(Wk,1)" } ], "layout": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "xaxis": { "type": "linear", "range": [ -1986.525, -1413.975 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Calendar date (cal BP - AD 1950)" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": false, "showline": true, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "1500", "1600", "1700", "1800", "1900" ], "tickvals": [ -1500, -1600, -1700, -1800, -1900 ], "zeroline": false, "autorange": false, "gridcolor": null, "gridwidth": 0, "linecolor": "rgba(0,0,0,1)", "linewidth": 0.66417600664176, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "1500", "1600", "1700", "1800", "1900" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ 1475.4, 2148.6 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Radiocarbon Age (BP)" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": false, "showline": true, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "1600", "1800", "2000" ], "tickvals": [ 1600, 1800, 2000 ], "zeroline": false, "autorange": false, "gridcolor": null, "gridwidth": 0, "linecolor": "rgba(0,0,0,1)", "linewidth": 0.66417600664176, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "1600", "1800", "2000" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 11.68949771689498, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Lab" }, "bgcolor": "rgba(255,255,255,1)", "bordercolor": "transparent", "borderwidth": 1.8897637795275593 }, "margin": { "b": 43.39898948961121, "l": 48.94977168949772, "r": 7.305936073059362, "t": 29.444651590067824 }, "shapes": [ { "x0": 0, "x1": 1, "y0": 0, "y1": 1, "line": { "color": null, "width": 0, "linetype": [] }, "type": "rect", "xref": "paper", "yref": "paper", "fillcolor": null } ], "barmode": "relative", "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(255,255,255,1)", "paper_bgcolor": "rgba(255,255,255,1)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~p1Marshall", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2021-06-30 12:49:59", "mapbox_access_tokens": null, "has_password": null, "username": "p1Marshall", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T12:09:11.246950Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mei9301/7.embed", "fid": "Mei9301:7", "filename": "srpen 2024", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mei9301/7/9_AE2DWNM7NGJ1P6PEPJ8Z769VMRGYGM.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mei9301/7/2_9PRUUQ20BF9SRDB4IQ9R3TXBFHAZZT.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mei9301/7/8_MX599E4NI78QMX95D02D27DX7QOMAJ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mei9301/7/9_AE2DWNM7NGJ1P6PEPJ8Z769VMRGYGM.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mei9301:7", "plots": "https://api.plotly.com/v2/plots/Mei9301:7", "parent": "https://api.plotly.com/v2/folders/home?user=Mei9301" }, "owner": "Mei9301", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Mei9301/7/", "world_readable": true, "date_modified": "2025-07-01T12:20:20.855Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mei9301/7/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(0, 0, 0)", "shape": "linear" }, "meta": { "columnNames": { "x": "F", "y": "G" } }, "mode": "lines", "name": "Fourier fit", "type": "scatter", "xsrc": "Mei9301:6:df9cee", "ysrc": "Mei9301:6:e87448", "xaxis": "x2", "yaxis": "y2", "visible": true, "connectgaps": false }, { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "D" } } }, "mode": "markers", "type": "scatter", "xsrc": "Mei9301:6:cd6250", "ysrc": "Mei9301:6:9ead64", "xaxis": "x", "yaxis": "y", "error_y": { "meta": { "columnNames": { "array": "D" } }, "arraysrc": "Mei9301:6:a84ed3" }, "visible": true, "boxpoints": false, "transforms": [ { "meta": { "columnNames": { "groups": "C" } }, "type": "groupby", "styles": [ { "value": { "mode": "markers", "name": "Opava 29. 7.–30. 7.", "marker": { "color": "rgb(255, 0, 0)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "3" }, { "value": { "name": "Ondřejov 29. 7.–30. 7.", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": true }, "target": "4" }, { "value": { "name": "Opava 30. 7.–31. 7.", "marker": { "color": "rgb(0, 255, 5)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "5" }, { "value": { "name": "Ondřejov 30. 7.–31. 7.", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 } }, "target": "6" }, { "value": { "name": "Opava 30. 8.–31. 8.", "marker": { "color": "rgb(255, 0, 0)" }, "error_y": { "width": 2, "thickness": 1 }, "visible": true }, "target": "7" }, { "value": { "name": "Ondřejov 30. 8.–31. 8.", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 }, "visible": "legendonly" }, "target": "8" }, { "value": { "name": "Opava 31. 8.–1. 9.", "marker": { "color": "rgb(0, 255, 5)" }, "error_y": { "width": 2, "thickness": 1 }, "visible": true }, "target": "9" }, { "value": { "name": "Ondřejov 31. 8.–1. 9.", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "width": 2, "thickness": 1 }, "visible": "legendonly" }, "target": "10" } ], "groupssrc": "Mei9301:6:1b4328" } ] } ], "frames": [], "layout": { "title": { "text": "" }, "xaxis": { "side": "bottom", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "tick0": 0, "ticks": "inside", "title": { "text": "Synodická rotační fáze" }, "anchor": "y", "domain": [ 0, 1 ], "showgrid": false, "showline": true, "tickmode": "linear", "autorange": false, "rangemode": "normal" }, "yaxis": { "side": "left", "type": "linear", "dtick": 0.1, "range": [ 18.5, 17.9 ], "ticks": "", "title": { "text": "R (1, 41°)" }, "domain": [ 0, 0 ], "nticks": 0, "showgrid": false, "showline": true, "tickmode": "auto", "autorange": false, "rangemode": "normal", "separatethousands": false }, "legend": { "x": 0.009227087973981921, "y": 0.9893407803650095, "yanchor": "auto" }, "xaxis2": { "side": "top", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "ticks": "inside", "title": { "text": "" }, "showgrid": false, "showline": true, "tickmode": "linear", "autorange": true, "rangemode": "normal", "overlaying": "x" }, "yaxis2": { "side": "right", "type": "linear", "dtick": 0.1, "range": [ 18.5, 17.9 ], "nticks": 0, "showgrid": false, "showline": true, "tickmode": "auto", "autorange": false, "rangemode": "normal", "overlaying": "y" }, "autosize": true, "dragmode": "select", "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/~Mei9301", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-01 11:01:15", "mapbox_access_tokens": null, "has_password": null, "username": "Mei9301", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T11:38:13.304228Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~sumathiD/3.embed", "fid": "sumathiD:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/sumathiD/3/9_Q9IMYLCZOJZ70Q5WDW9XSUP5Y760ZU.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/sumathiD/3/2_81BMDII0119P6N99F1W9TGV29OCYG8.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sumathiD/3/8_RGRI4MIYZNGKNX8S3SXFINAHAOMF63.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sumathiD/3/9_Q9IMYLCZOJZ70Q5WDW9XSUP5Y760ZU.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/sumathiD:3", "plots": "https://api.plotly.com/v2/plots/sumathiD:3", "parent": "https://api.plotly.com/v2/folders/home?user=sumathiD" }, "owner": "sumathiD", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~sumathiD/3/", "world_readable": true, "date_modified": "2025-07-01T11:38:13.315Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~sumathiD/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "timestamp", "y": "temperature_C" } }, "mode": "lines", "type": "scatter", "xsrc": "sumathiD:2:3b8e47", "ysrc": "sumathiD:2:37ad22" } ], "frames": [], "layout": { "xaxis": { "type": "date", "range": [ "1969-12-30 16:22:39.4905", "1970-01-02 09:37:20.5145" ], "autorange": false }, "yaxis": { "type": "linear", "range": [ -83886078.5, 83886081.5 ], "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" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~sumathiD", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-30 20:56:13", "mapbox_access_tokens": null, "has_password": null, "username": "sumathiD", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T11:33:51.957133Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~melanialee/1.embed", "fid": "melanialee:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/melanialee/1/9_6OVQBZTQZIBO4MXGI7C5YX9ER3UBRS.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/melanialee/1/2_T728LKUFUBH6GB6OKTG6ZLO5IISXXQ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/melanialee/1/8_0DZ9NLOYGV62685S0HT3XSZD4CQ37S.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/melanialee/1/9_6OVQBZTQZIBO4MXGI7C5YX9ER3UBRS.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/melanialee:1", "plots": "https://api.plotly.com/v2/plots/melanialee:1", "parent": "https://api.plotly.com/v2/folders/home?user=melanialee" }, "owner": "melanialee", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~melanialee/1/", "world_readable": true, "date_modified": "2025-07-01T11:34:19.131Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~melanialee/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "90S-24S", "y": "SHem" } }, "mode": "lines", "type": "bar", "xsrc": "melanialee:0:d56556", "ysrc": "melanialee:0:b4bcca", "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Temperature Data- s02000987" }, "xaxis": { "type": "linear", "range": [ -48.5, 58.5 ], "title": { "text": "Time" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -192.55555555555554, 178.55555555555554 ], "title": { "text": "Degree celsius" }, "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/~melanialee", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-01 11:14:29", "mapbox_access_tokens": null, "has_password": null, "username": "melanialee", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T11:27:43.036271Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~roparici/3.embed", "fid": "roparici:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/roparici/3/9_C4GGCZ5D8LV5VKOPQ1T1TPFOIXVNQB.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/roparici/3/2_R43AHOPEAXBDDR2GRIE870KVX9NTCG.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/roparici/3/8_XP6R1HNSR0NXN48Z6LNE4PLMK5Z583.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/roparici/3/9_C4GGCZ5D8LV5VKOPQ1T1TPFOIXVNQB.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/roparici:3", "plots": "https://api.plotly.com/v2/plots/roparici:3", "parent": "https://api.plotly.com/v2/folders/home?user=roparici" }, "owner": "roparici", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~roparici/3/", "world_readable": true, "date_modified": "2025-07-01T11:27:43.047Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~roparici/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "x", "y": "y" } }, "type": "bar", "xsrc": "roparici:2:8c3299", "ysrc": "roparici:2:962ae6", "marker": { "color": "#0F5D81" } } ], "frames": [], "layout": { "title": { "text": "Results from the specific country" }, "xaxis": { "type": "date", "range": [ "2023-05-21 12:00", "2025-12-30 12:00" ], "title": { "text": "Dates" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 1347.3684210526317 ], "title": { "text": "Number of forms" }, "autorange": true }, "bargap": 0.05, "barmode": "overlay", "autosize": true, "bargroupgap": 0.2 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~roparici", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-23 12:18:04", "mapbox_access_tokens": null, "has_password": null, "username": "roparici", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T11:13:17.882388Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~hphz/13.embed", "fid": "hphz:13", "filename": "Plot 13", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/hphz/13/9_BYL2QJ7V32XTBZI9TRDR200AGCVGHU.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/hphz/13/2_8FHS9HSP8GXHGR37ZO8W2J0LX6GULR.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hphz/13/8_O9QR2QA6SN7A3910YZU156GNY7QBX0.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hphz/13/9_BYL2QJ7V32XTBZI9TRDR200AGCVGHU.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/hphz:13", "plots": "https://api.plotly.com/v2/plots/hphz:13", "parent": "https://api.plotly.com/v2/folders/home?user=hphz" }, "owner": "hphz", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~hphz/13/", "world_readable": true, "date_modified": "2025-07-02T01:50:20.628Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~hphz/13/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "shape": "spline" }, "meta": { "columnNames": { "y": "-2.502441" } }, "mode": "lines", "name": "无处理", "type": "scatter", "ysrc": "hphz:6:0c748f", "visible": "legendonly" }, { "meta": { "columnNames": { "y": "no filtering" } }, "mode": "lines", "name": "去异常", "type": "scatter", "ysrc": "hphz:10:de6092", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "window_mean" } }, "mode": "lines", "name": "平均", "type": "scatter", "ysrc": "hphz:5:e748b8", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_1step" } }, "mode": "lines", "name": "滤波30 1", "type": "scatter", "ysrc": "hphz:7:190cea", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_10win" } }, "mode": "lines", "name": "10win", "type": "scatter", "ysrc": "hphz:8:519e76", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_20win" } }, "mode": "lines", "name": "20win", "type": "scatter", "ysrc": "hphz:9:4e2e8b", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_005Q" } }, "mode": "lines", "name": "0.005", "type": "scatter", "ysrc": "hphz:11:b6d896", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_10R" } }, "mode": "lines", "name": "10R", "type": "scatter", "ysrc": "hphz:12:8fbf2b", "visible": "legendonly", "stackgroup": null }, { "meta": { "columnNames": { "y": "filtered_max_min" } }, "mode": "lines", "name": "最值去异", "type": "scatter", "ysrc": "hphz:14:64fb9a", "visible": true, "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "数据处理" }, "xaxis": { "range": [ 0, 973 ], "autorange": true, "showspikes": true }, "yaxis": { "type": "linear", "range": [ -15.808091239711317, -0.3659721113640221 ], "title": { "text": "Click to enter Y axis title" }, "autorange": true, "showspikes": true }, "autosize": true, "dragmode": "pan", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~hphz", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-01 10:15:46", "mapbox_access_tokens": null, "has_password": null, "username": "hphz", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-07-01T11:02:49.587785Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mei9301/1.embed", "fid": "Mei9301:1", "filename": "červenec 2024", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/Mei9301:1/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mei9301/1/2_AF0M28P65L9NCUX4HCTPQFZ89M3X82.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mei9301/1/8_H98LX5FKVVMU3WW1T7F3WJ264GS0ZH.png", "list-thumb": "https://api.plotly.com/v2/files/Mei9301:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mei9301:1", "plots": "https://api.plotly.com/v2/plots/Mei9301:1", "parent": "https://api.plotly.com/v2/folders/home?user=Mei9301" }, "owner": "Mei9301", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Mei9301/1/", "world_readable": true, "date_modified": "2025-07-01T11:47:45.680Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mei9301/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(0, 0, 0)", "shape": "linear" }, "meta": { "columnNames": { "x": "F", "y": "G" } }, "mode": "lines", "name": "Fourier fit", "type": "scatter", "xsrc": "Mei9301:0:df9cee", "ysrc": "Mei9301:0:e87448", "xaxis": "x2", "yaxis": "y2", "visible": true, "connectgaps": false }, { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "D" } } }, "mode": "markers", "type": "scatter", "xsrc": "Mei9301:0:cd6250", "ysrc": "Mei9301:0:9ead64", "xaxis": "x", "yaxis": "y", "error_y": { "meta": { "columnNames": { "array": "D" } }, "arraysrc": "Mei9301:0:a84ed3" }, "visible": true, "boxpoints": false, "transforms": [ { "meta": { "columnNames": { "groups": "C" } }, "type": "groupby", "styles": [ { "value": { "mode": "markers", "name": "Opava 29. 7.–30. 7.", "marker": { "color": "rgb(255, 0, 0)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "3" }, { "value": { "name": "Ondřejov 29. 7.–30. 7.", "marker": { "color": "rgb(128, 21, 231)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": true }, "target": "4" }, { "value": { "name": "Opava 30. 7.–31. 7.", "marker": { "color": "rgb(0, 255, 5)" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 }, "visible": "legendonly" }, "target": "5" }, { "value": { "name": "Ondřejov 30. 7.–31. 7.", "marker": { "color": "rgb(243, 215, 25)", "symbol": "diamond" }, "error_y": { "type": "data", "width": 2, "visible": true, "symmetric": true, "thickness": 1 } }, "target": "6" } ], "groupssrc": "Mei9301:0:1b4328" } ] } ], "frames": [], "layout": { "title": { "text": "" }, "xaxis": { "side": "bottom", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "tick0": 0, "ticks": "inside", "title": { "text": "Synodická rotační fáze" }, "anchor": "y", "domain": [ 0, 1 ], "showgrid": false, "showline": true, "tickmode": "linear", "autorange": false, "rangemode": "normal" }, "yaxis": { "side": "left", "type": "linear", "dtick": 0.05, "range": [ 18.466973568281936, 17.967173568281936 ], "ticks": "", "title": { "text": "R (1, 41°)" }, "domain": [ 0, 0 ], "nticks": 0, "showgrid": false, "showline": true, "tickmode": "auto", "autorange": false, "rangemode": "normal", "separatethousands": false }, "legend": { "x": 0.009227087973981921, "y": 0.9893407803650095, "yanchor": "auto" }, "xaxis2": { "side": "top", "type": "linear", "dtick": 0.1, "range": [ 0, 1 ], "ticks": "inside", "title": { "text": "" }, "showgrid": false, "showline": true, "tickmode": "linear", "autorange": true, "rangemode": "normal", "overlaying": "x" }, "yaxis2": { "side": "right", "type": "linear", "range": [ 18.466973568281936, 17.967173568281936 ], "showgrid": false, "showline": true, "autorange": false, "rangemode": "normal", "overlaying": "y" }, "autosize": true, "dragmode": "select", "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/~Mei9301", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-01 11:01:15", "mapbox_access_tokens": null, "has_password": null, "username": "Mei9301", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "