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=cD0yMDI1LTA4LTE1KzA5JTNBMTklM0ExMS42ODE4NTIlMkIwMCUzQTAw&format=api
https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTE0KzIzJTNBNTklM0E1NC4xMTg5NjAlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xNSswNiUzQTUxJTNBNTIuMTAzMTgwJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-08-15T06:51:52.103180Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~ssbhusari/1.embed", "fid": "ssbhusari:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/ssbhusari/1/9_M2JUZDG4TQAMTPMPL1MOFA6C2FSHB2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/ssbhusari/1/2_S2WKR4OYKSI1AXGD321DQ6K6ASQNGY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ssbhusari/1/8_AXSK6YMCP54JYM2MZ5KJE5ONEKLOKJ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ssbhusari/1/9_M2JUZDG4TQAMTPMPL1MOFA6C2FSHB2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/ssbhusari:1", "plots": "https://api.plotly.com/v2/plots/ssbhusari:1", "parent": "https://api.plotly.com/v2/folders/home?user=ssbhusari" }, "owner": "ssbhusari", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~ssbhusari/1/", "world_readable": true, "date_modified": "2025-08-15T06:51:52.113Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~ssbhusari/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "Max Tempreature", "type": "scatter", "xsrc": "ssbhusari:0:8c61c0", "ysrc": "ssbhusari:0:604670" }, { "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "Min Tempreature", "type": "scatter", "xsrc": "ssbhusari:0:8c61c0", "ysrc": "ssbhusari:0:94c7b4", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "Avg Tempreature", "type": "scatter", "xsrc": "ssbhusari:0:8c61c0", "ysrc": "ssbhusari:0:506829", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Max Tempreature Profile" }, "xaxis": { "type": "linear", "range": [ 0, 1800 ], "title": { "text": "Time (Secs)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 23.944444444444443, 45.05555555555556 ], "title": { "text": "Temperature (C)" }, "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" }, "annotations": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~ssbhusari", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-15 06:39:36", "mapbox_access_tokens": null, "has_password": null, "username": "ssbhusari", "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-08-15T06:31:16.934685Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~ricardojorgelopes/13.embed", "fid": "ricardojorgelopes:13", "filename": "Plot 13", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/ricardojorgelopes:13/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/ricardojorgelopes:13/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ricardojorgelopes/13/8_MT9X6GHUWDUKDPWDK6FOQ5KHL5XN97.png", "list-thumb": "https://api.plotly.com/v2/files/ricardojorgelopes:13/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/ricardojorgelopes:13", "plots": "https://api.plotly.com/v2/plots/ricardojorgelopes:13", "parent": "https://api.plotly.com/v2/folders/home?user=ricardojorgelopes" }, "owner": "ricardojorgelopes", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~ricardojorgelopes/13/", "world_readable": true, "date_modified": "2025-08-20T05:14:23.580Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~ricardojorgelopes/13/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "B", "y": "bases" } }, "mode": "lines", "name": "%{meta.columnNames.y}", "type": "scatter", "xsrc": "ricardojorgelopes:12:69bdb1", "ysrc": "ricardojorgelopes:12:c5f7b5", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "date", "range": [ "2007-06-05", "2025-02-25 " ], "domain": [ 0.25, 0.875 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ -5065924816185714, 96252977591331550 ], "domain": [ 0, 1 ], "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/~ricardojorgelopes", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2021-03-17 12:32:43", "mapbox_access_tokens": null, "has_password": null, "username": "ricardojorgelopes", "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-08-15T01:57:17.926139Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~ALGUERRE/238.embed", "fid": "ALGUERRE:238", "filename": "sBCI year", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/ALGUERRE:238/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/ALGUERRE/238/2_GXUEZQHPY5QBUVIF4PW3LUQ3X5BSMH.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ALGUERRE/238/8_5HVJI708P9MQYTV31POXGWDPIYMZXZ.png", "list-thumb": "https://api.plotly.com/v2/files/ALGUERRE:238/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/ALGUERRE:238", "plots": "https://api.plotly.com/v2/plots/ALGUERRE:238", "parent": "https://api.plotly.com/v2/folders/home?user=ALGUERRE" }, "owner": "ALGUERRE", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~ALGUERRE/238/", "world_readable": true, "date_modified": "2025-08-15T03:28:43.043Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~ALGUERRE/238/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(0, 0, 0)", "width": 1.3 }, "meta": { "columnNames": { "x": "Locality", "y": "BCI_deviance" } }, "mode": "markers", "type": "box", "xsrc": "ALGUERRE:234:e11e0a", "ysrc": "ALGUERRE:234:2ce2f0", "jitter": 1, "marker": { "line": { "color": "rgb(0, 0, 0)", "width": 0.4 }, "size": 5, "color": "rgb(85, 84, 84)", "opacity": 0.65 }, "notched": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgba(79, 216, 255, 0.7)", "notchwidth": 0.15, "transforms": [ { "meta": { "columnNames": { "groups": "YEAR" } }, "type": "groupby", "styles": [ { "value": { "boxpoints": false, "fillcolor": "rgba(214, 124, 255, 0.7)" }, "target": "2024" }, { "value": { "boxpoints": false, "fillcolor": "rgba(157, 239, 38, 0.7)" }, "target": "2025" } ], "groupssrc": "ALGUERRE:234:f6f4d5" } ], "whiskerwidth": 0.22 } ], "frames": [], "layout": { "width": 979, "xaxis": { "type": "category", "range": [ -0.3412698412698413, 4.658730158730159 ], "title": { "font": { "size": 11, "color": "rgb(0, 0, 0)" }, "text": "<br>" }, "mirror": "ticks", "showline": true, "tickfont": { "size": 18, "color": "rgb(0, 0, 0)" }, "autorange": false, "gridcolor": "rgb(240, 240, 240)", "linecolor": "rgb(0, 0, 0)" }, "yaxis": { "type": "linear", "range": [ -0.09701247687878789, 0.15983508201010097 ], "title": { "font": { "size": 19, "color": "rgb(0, 0, 0)" }, "text": "<b>Standardized Body Condition Index</b>" }, "mirror": "ticks", "showline": true, "tickfont": { "size": 17, "color": "rgb(0, 0, 0)" }, "autorange": false, "gridcolor": "rgb(240, 240, 240)", "linecolor": "rgb(0, 0, 0)" }, "boxgap": 0, "height": 600, "legend": { "x": 0.020000000000000018, "y": 0.98, "font": { "size": 18, "color": "rgb(0, 0, 0)" } }, "margin": { "t": 80 }, "boxmode": "group", "autosize": false, "dragmode": "pan", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(51,51,51)", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(51,51,51)", "minorgridcolor": "white", "startlinecolor": "rgb(51,51,51)" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "len": 0.2, "ticks": "inside", "ticklen": 6, "tickcolor": "rgb(237,237,237)", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "rgb(237,237,237)", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(51,51,51)" }, "polar": { "bgcolor": "rgb(237,237,237)", "radialaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)" }, "angularaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)" } }, "scene": { "xaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "tickcolor": "rgb(51,51,51)", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(237,237,237)" }, "yaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "tickcolor": "rgb(51,51,51)", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(237,237,237)" }, "zaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "tickcolor": "rgb(51,51,51)", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(237,237,237)" } }, "xaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)", "automargin": true, "zerolinecolor": "white" }, "yaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)", "automargin": true, "zerolinecolor": "white" }, "ternary": { "aaxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)" }, "baxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)" }, "caxis": { "ticks": "outside", "showgrid": true, "gridcolor": "white", "linecolor": "white", "tickcolor": "rgb(51,51,51)" }, "bgcolor": "rgb(237,237,237)" }, "colorway": [ "#F8766D", "#A3A500", "#00BF7D", "#00B0F6", "#E76BF3" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#40004b" ], [ 0.1, "#762a83" ], [ 0.2, "#9970ab" ], [ 0.3, "#c2a5cf" ], [ 0.4, "#e7d4e8" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#d9f0d3" ], [ 0.7, "#a6dba0" ], [ 0.8, "#5aae61" ], [ 0.9, "#1b7837" ], [ 1, "#00441b" ] ], "sequential": [ [ 0, "rgb(20,44,66)" ], [ 1, "rgb(90,179,244)" ] ], "sequentialminus": [ [ 0, "rgb(20,44,66)" ], [ 1, "rgb(90,179,244)" ] ] }, "plot_bgcolor": "rgb(237,237,237)", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.3, "fillcolor": "black" }, "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 } }, "themeRef": "GGPLOT2" }, "boxgroupgap": 0.27, "plot_bgcolor": "rgb(255, 255, 255)" } }, "height": 600, "width": 979, "user": { "profile_url": "https://chart-studio.plotly.com/~ALGUERRE", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2018-11-29 21:43:47", "mapbox_access_tokens": null, "has_password": null, "username": "ALGUERRE", "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-08-15T01:56:20.942698Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~elsaeaster/19.embed", "fid": "elsaeaster:19", "filename": "HHT_alphadiver_Simpson_g", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/elsaeaster:19/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/elsaeaster:19/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elsaeaster/19/8_QFH6ZA1XR3093BXKWMWVRJS6ASI8DL.png", "list-thumb": "https://api.plotly.com/v2/files/elsaeaster:19/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/elsaeaster:19", "plots": "https://api.plotly.com/v2/plots/elsaeaster:19", "parent": "https://api.plotly.com/v2/folders/home?user=elsaeaster" }, "owner": "elsaeaster", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~elsaeaster/19/", "world_readable": true, "date_modified": "2025-08-17T02:50:57.888Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~elsaeaster/19/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "uid": "49484799-08ca-4801-a508-f4026625f1af", "meta": { "columnNames": { "x": "CON", "y": "Simp" } }, "name": "CON", "type": "box", "xsrc": "elsaeaster:18:d2103b", "ysrc": "elsaeaster:18:b20a90", "jitter": 0.3, "marker": { "line": { "color": "rgb(35, 41, 49)", "width": 0 }, "size": 9, "color": "rgb(35, 41, 49)", "symbol": "circle", "opacity": 1 }, "boxmean": true, "hoveron": "boxes+points", "notched": false, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgba(106, 111, 122, 0.5)", "showlegend": false, "orientation": "v", "hovertemplate": "" }, { "line": { "color": "rgb(4, 86, 4)" }, "meta": { "columnNames": { "x": "EAE", "y": "Simp2" } }, "name": "EAE", "type": "box", "xsrc": "elsaeaster:18:0af2de", "ysrc": "elsaeaster:18:fd5334", "marker": { "line": { "color": "rgb(35, 41, 49)" }, "size": 9, "color": "rgb(4, 139, 4)", "opacity": 1 }, "boxmean": true, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(122, 222, 122)", "showlegend": false }, { "line": { "color": "rgb(36, 21, 220)" }, "meta": { "columnNames": { "x": "HHT-AuNP", "y": "Simp3" } }, "name": "HHT-AuNP", "type": "box", "xsrc": "elsaeaster:18:239201", "ysrc": "elsaeaster:18:02ab34", "jitter": 0.3, "marker": { "size": 9 }, "boxmean": true, "notched": false, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(102, 104, 239)", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": 0 }, "showlegend": false, "orientation": "v" } ], "frames": [], "layout": { "font": { "color": "rgb(31, 28, 28)" }, "title": { "font": { "size": 19, "family": "Times New Roman" }, "text": "<br>" }, "width": 500, "xaxis": { "type": "category", "range": [ -0.5, 2.5 ], "title": { "font": { "size": 14 } }, "nticks": 0, "showgrid": false, "showline": true, "tickfont": { "size": 22, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "autorange": true, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "automargin": false, "showspikes": false, "rangeslider": { "range": [ -0.5, 1.5 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": true, "spikethickness": 3 }, "yaxis": { "side": "left", "type": "linear", "range": [ 0.4, 1 ], "ticks": "inside", "title": { "font": { "size": 26, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "text": "<b>Simpson</b>" }, "nticks": 0, "ticklen": 8, "showgrid": false, "showline": true, "tickfont": { "size": 20, "color": "rgb(31, 28, 28)" }, "autorange": false, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "tickcolor": "rgb(31, 28, 28)", "tickwidth": 2, "fixedrange": false, "showspikes": false, "showexponent": "all", "exponentformat": "B", "spikethickness": 3 }, "boxgap": 0.30000000000000004, "height": 500, "margin": { "b": 80, "l": 80, "t": 80, "pad": 0 }, "boxmode": "overlay", "modebar": { "orientation": "h" }, "autosize": false, "dragmode": "pan", "clickmode": "event", "hovermode": "x", "hoverlabel": { "align": "auto" }, "separators": ".,", "uniformtext": { "mode": false } } }, "height": 500, "width": 500, "user": { "profile_url": "https://chart-studio.plotly.com/~elsaeaster", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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": "2025-05-14 06:58:19", "mapbox_access_tokens": null, "has_password": null, "username": "elsaeaster", "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-08-15T01:48:03.252422Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~elsaeaster/17.embed", "fid": "elsaeaster:17", "filename": "HHT_alphadiver_Shannon_g", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/elsaeaster:17/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/elsaeaster:17/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elsaeaster/17/8_KEN45FF82K1JSUOI1ZBBP64EWV9ILI.png", "list-thumb": "https://api.plotly.com/v2/files/elsaeaster:17/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/elsaeaster:17", "plots": "https://api.plotly.com/v2/plots/elsaeaster:17", "parent": "https://api.plotly.com/v2/folders/home?user=elsaeaster" }, "owner": "elsaeaster", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~elsaeaster/17/", "world_readable": true, "date_modified": "2025-08-17T02:49:04.721Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~elsaeaster/17/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "uid": "49484799-08ca-4801-a508-f4026625f1af", "meta": { "columnNames": { "x": "CON", "y": "Sha" } }, "name": "CON", "type": "box", "xsrc": "elsaeaster:16:d2103b", "ysrc": "elsaeaster:16:b20a90", "jitter": 0.3, "marker": { "line": { "color": "rgb(35, 41, 49)", "width": 0 }, "size": 9, "color": "rgb(35, 41, 49)", "symbol": "circle", "opacity": 1 }, "boxmean": true, "hoveron": "boxes+points", "notched": false, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgba(106, 111, 122, 0.5)", "showlegend": false, "orientation": "v", "hovertemplate": "" }, { "line": { "color": "rgb(4, 86, 4)" }, "meta": { "columnNames": { "x": "EAE", "y": "Sha2" } }, "name": "EAE", "type": "box", "xsrc": "elsaeaster:16:0af2de", "ysrc": "elsaeaster:16:fd5334", "marker": { "line": { "color": "rgb(35, 41, 49)" }, "size": 9, "color": "rgb(4, 139, 4)", "opacity": 1 }, "boxmean": true, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(122, 222, 122)", "showlegend": false }, { "line": { "color": "rgb(36, 21, 220)" }, "meta": { "columnNames": { "x": "HHT-AuNP", "y": "Sha3" } }, "name": "HHT-AuNP", "type": "box", "xsrc": "elsaeaster:16:239201", "ysrc": "elsaeaster:16:02ab34", "jitter": 0.3, "marker": { "size": 9 }, "boxmean": true, "notched": false, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(102, 104, 239)", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": 0 }, "showlegend": false, "orientation": "v" } ], "frames": [], "layout": { "font": { "color": "rgb(31, 28, 28)" }, "title": { "font": { "size": 19, "family": "Times New Roman" }, "text": "<br>" }, "width": 500, "xaxis": { "type": "category", "range": [ -0.5, 2.5 ], "title": { "font": { "size": 14 } }, "showgrid": false, "showline": true, "tickfont": { "size": 22, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "autorange": true, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "automargin": false, "showspikes": false, "rangeslider": { "range": [ -0.5, 1.5 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": true, "spikethickness": 3 }, "yaxis": { "side": "left", "type": "linear", "range": [ 1, 2.8 ], "ticks": "inside", "title": { "font": { "size": 26, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "text": "<b>Shannon</b>" }, "nticks": 0, "ticklen": 8, "showgrid": false, "showline": true, "tickfont": { "size": 20, "color": "rgb(31, 28, 28)" }, "autorange": false, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "tickcolor": "rgb(31, 28, 28)", "tickwidth": 2, "showspikes": false, "showexponent": "all", "exponentformat": "B", "spikethickness": 3 }, "boxgap": 0.30000000000000004, "height": 500, "margin": { "b": 80, "l": 80, "t": 80, "pad": 0 }, "boxmode": "overlay", "modebar": { "orientation": "h" }, "autosize": false, "dragmode": "pan", "clickmode": "event", "hovermode": "x", "hoverlabel": { "align": "auto" } } }, "height": 500, "width": 500, "user": { "profile_url": "https://chart-studio.plotly.com/~elsaeaster", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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": "2025-05-14 06:58:19", "mapbox_access_tokens": null, "has_password": null, "username": "elsaeaster", "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-08-15T01:20:29.086620Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~elsaeaster/15.embed", "fid": "elsaeaster:15", "filename": "HHT_alphadiver_ACE_g", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/elsaeaster:15/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/elsaeaster:15/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elsaeaster/15/8_4FRBNIN4IKA7AHWAAM00TETLI9SIZJ.png", "list-thumb": "https://api.plotly.com/v2/files/elsaeaster:15/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/elsaeaster:15", "plots": "https://api.plotly.com/v2/plots/elsaeaster:15", "parent": "https://api.plotly.com/v2/folders/home?user=elsaeaster" }, "owner": "elsaeaster", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~elsaeaster/15/", "world_readable": true, "date_modified": "2025-08-17T02:45:07.381Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~elsaeaster/15/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "uid": "49484799-08ca-4801-a508-f4026625f1af", "meta": { "columnNames": { "x": "CON", "y": "ACE" } }, "name": "CON", "type": "box", "xsrc": "elsaeaster:14:d2103b", "ysrc": "elsaeaster:14:b20a90", "jitter": 0.3, "marker": { "line": { "color": "rgb(35, 41, 49)", "width": 0 }, "size": 9, "color": "rgb(35, 41, 49)", "symbol": "circle", "opacity": 1 }, "boxmean": true, "hoveron": "boxes+points", "notched": false, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgba(106, 111, 122, 0.5)", "showlegend": false, "orientation": "v", "hovertemplate": "" }, { "line": { "color": "rgb(4, 86, 4)" }, "meta": { "columnNames": { "x": "EAE", "y": "ACE2" } }, "name": "EAE", "type": "box", "xsrc": "elsaeaster:14:0af2de", "ysrc": "elsaeaster:14:fd5334", "marker": { "line": { "color": "rgb(35, 41, 49)" }, "size": 9, "color": "rgb(4, 139, 4)", "opacity": 1 }, "boxmean": true, "visible": true, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(122, 222, 122)", "showlegend": false }, { "line": { "color": "rgb(36, 21, 220)" }, "meta": { "columnNames": { "x": "HHT-AuNP", "y": "ACE3" } }, "name": "HHT-AuNP", "type": "box", "xsrc": "elsaeaster:14:239201", "ysrc": "elsaeaster:14:02ab34", "jitter": 0.3, "marker": { "size": 9 }, "boxmean": true, "notched": false, "pointpos": 0, "boxpoints": "all", "fillcolor": "rgb(102, 104, 239)", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": 0 }, "showlegend": false, "orientation": "v" } ], "frames": [], "layout": { "font": { "color": "rgb(31, 28, 28)" }, "title": { "font": { "size": 19, "family": "Times New Roman" }, "text": "<br>" }, "width": 500, "xaxis": { "type": "category", "range": [ -0.5, 2.5 ], "title": { "font": { "size": 14 } }, "showgrid": false, "showline": true, "tickfont": { "size": 22, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "autorange": true, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "automargin": false, "showspikes": false, "rangeslider": { "range": [ -0.5, 1.5 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": true, "spikethickness": 3 }, "yaxis": { "side": "left", "type": "linear", "range": [ 30, 55 ], "ticks": "inside", "title": { "font": { "size": 26, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "text": "<b>ACE</b>" }, "nticks": 0, "ticklen": 8, "showgrid": false, "showline": true, "tickfont": { "size": 20, "color": "rgb(31, 28, 28)" }, "autorange": false, "linecolor": "rgb(31, 28, 28)", "linewidth": 2, "tickcolor": "rgb(31, 28, 28)", "tickwidth": 2, "showspikes": false, "showexponent": "all", "exponentformat": "B", "spikethickness": 3 }, "boxgap": 0.30000000000000004, "height": 500, "margin": { "b": 80, "l": 80, "t": 80, "pad": 0 }, "boxmode": "overlay", "modebar": { "orientation": "h" }, "autosize": false, "dragmode": "pan", "clickmode": "event", "hovermode": "x", "hoverlabel": { "align": "auto" } } }, "height": 500, "width": 500, "user": { "profile_url": "https://chart-studio.plotly.com/~elsaeaster", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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": "2025-05-14 06:58:19", "mapbox_access_tokens": null, "has_password": null, "username": "elsaeaster", "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-08-15T00:50:26.750530Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~elsaeaster/13.embed", "fid": "elsaeaster:13", "filename": "PCoA_HHTAuNP_Bray-Curtis_g", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/elsaeaster:13/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/elsaeaster:13/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/elsaeaster/13/8_FJFCKAV1AFJSZ8WWTQCM6A7VUC49NI.png", "list-thumb": "https://api.plotly.com/v2/files/elsaeaster:13/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/elsaeaster:13", "plots": "https://api.plotly.com/v2/plots/elsaeaster:13", "parent": "https://api.plotly.com/v2/folders/home?user=elsaeaster" }, "owner": "elsaeaster", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 3, "web_url": "https://chart-studio.plotly.com/~elsaeaster/13/", "world_readable": true, "date_modified": "2025-08-17T02:58:16.450Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~elsaeaster/13/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "CON, x", "y": "CON, y", "z": "CON, z", "text": "CON" } }, "mode": "markers", "name": "<b>CON</b>", "type": "scatter3d", "xsrc": "elsaeaster:12:c5621a", "ysrc": "elsaeaster:12:c54a75", "zsrc": "elsaeaster:12:15b9c5", "marker": { "line": { "color": "rgb(35, 41, 49)", "width": 2 }, "size": 8, "color": "rgb(106, 111, 122)" }, "textsrc": "elsaeaster:12:95a522", "visible": true, "hovertemplate": "" }, { "meta": { "columnNames": { "x": "EAE, x", "y": "EAE, y", "z": "EAE, z", "text": "EAE" } }, "mode": "markers", "name": "<b>EAE</b>", "type": "scatter3d", "xsrc": "elsaeaster:12:940912", "ysrc": "elsaeaster:12:b58b11", "zsrc": "elsaeaster:12:bc0f6b", "scene": "scene", "marker": { "line": { "color": "rgb(4, 86, 4)", "width": 2 }, "color": "rgb(4, 139, 4)" }, "textsrc": "elsaeaster:12:2592be", "visible": true }, { "meta": { "columnNames": { "x": "HHT, x", "y": "HHT, y", "z": "HHT, z", "text": "HHT" } }, "mode": "markers", "name": "<b>HHT-AuNP</b>", "type": "scatter3d", "xsrc": "elsaeaster:12:33836a", "ysrc": "elsaeaster:12:ce5caf", "zsrc": "elsaeaster:12:4479a9", "marker": { "line": { "color": "rgb(20, 10, 138)", "width": 2 }, "color": "rgb(36, 21, 220)", "opacity": 1 }, "textsrc": "elsaeaster:12:747b6a" } ], "frames": [], "layout": { "font": { "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "scene": { "xaxis": { "type": "linear", "range": [ -0.4, 0.4 ], "title": { "font": { "size": 20, "family": "Times New Roman" }, "text": "<b>PCoA1 (53.3%)</b>" }, "mirror": false, "showline": true, "tickfont": { "size": 16, "family": "Times New Roman" }, "autorange": false, "gridcolor": "rgb(201, 203, 206)", "gridwidth": 1, "linecolor": "rgb(31, 28, 28)", "linewidth": 4, "tickangle": 45, "zerolinecolor": "rgb(31, 28, 28)", "zerolinewidth": 2 }, "yaxis": { "type": "linear", "range": [ -0.3, 0.3 ], "title": { "font": { "size": 20, "family": "Times New Roman" }, "text": "<b>PCoA2 (14.6%)</b>" }, "mirror": false, "showline": true, "tickfont": { "size": 16, "family": "Times New Roman" }, "autorange": false, "gridcolor": "rgb(201, 203, 206)", "gridwidth": 2, "linecolor": "rgb(31, 28, 28)", "linewidth": 3, "tickangle": 45, "zerolinecolor": "rgb(31, 28, 28)", "zerolinewidth": 2 }, "zaxis": { "type": "linear", "range": [ -0.2, 0.2 ], "title": { "font": { "size": 20, "family": "Times New Roman" }, "text": "<b>PCoA3 (11.0%)</b>" }, "mirror": false, "showline": true, "tickfont": { "size": 16, "family": "Times New Roman" }, "autorange": false, "gridcolor": "rgb(201, 203, 206)", "gridwidth": 2, "linecolor": "rgb(31, 28, 28)", "linewidth": 3, "tickangle": 45, "zerolinecolor": "rgb(31, 28, 28)", "zerolinewidth": 2 }, "camera": { "up": { "x": 0.16138637902100766, "y": 0.7364026895782929, "z": 0.6570125687141336 }, "eye": { "x": -0.6583760854023333, "y": 1.1521345960120484, "z": -1.3894251721143782 }, "center": { "x": -0.07027171553973308, "y": -0.16100199129565282, "z": -0.0620757096143081 }, "projection": { "type": "perspective" } }, "dragmode": "pan", "aspectmode": "auto", "aspectratio": { "x": 1.35635817787979, "y": 1.0121973644153364, "z": 0.7283840172835034 } }, "title": { "x": 0.5, "font": { "size": 30, "color": "rgb(31, 28, 28)", "family": "Times New Roman" }, "text": "<b>Bray-Curtis</b>" }, "width": 1000, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "height": 850, "legend": { "x": 0.8425012491504553, "y": 1.0054545454545454, "font": { "size": 22, "family": "Times New Roman" }, "borderwidth": 0 }, "margin": { "b": 100, "l": 100, "r": 101, "t": 200 }, "autosize": false, "colorway": [ "#1b9e77", "#d95f02", "#7570b3", "#e7298a", "#66a61e", "#e6ab02", "#a6761d", "#666666" ], "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" }, "uniformtext": { "mode": false }, "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": 850, "width": 1000, "user": { "profile_url": "https://chart-studio.plotly.com/~elsaeaster", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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": "2025-05-14 06:58:19", "mapbox_access_tokens": null, "has_password": null, "username": "elsaeaster", "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-08-15T00:34:44.486423Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Lotte2312/1.embed", "fid": "Lotte2312:1", "filename": "Skalen_Boxplot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Lotte2312/1/9_YDRPETK0M1NLMKHBCHM4KFCB1644JX.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Lotte2312/1/2_3KKHYUI8ZCGQZZ9RF10FN8F14RXVG0.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Lotte2312/1/8_HXR2KSRU08VAQ4KCAVY7R6MP2MO3NH.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Lotte2312/1/9_YDRPETK0M1NLMKHBCHM4KFCB1644JX.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Lotte2312:1", "plots": "https://api.plotly.com/v2/plots/Lotte2312:1", "parent": "https://api.plotly.com/v2/folders/home?user=Lotte2312" }, "owner": "Lotte2312", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Lotte2312/1/", "world_readable": true, "date_modified": "2025-08-15T00:34:44.498Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Lotte2312/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "width": 2 }, "meta": { "columnNames": { "x": "Merkmal", "y": "Gesamt" } }, "mode": "markers", "name": "Gesamt", "type": "box", "xsrc": "Lotte2312:0:a1022a", "ysrc": "Lotte2312:0:1400fd", "width": 0, "jitter": 0, "marker": { "size": 3, "color": "rgb(130, 30, 63)" }, "boxmean": false, "notched": false, "pointpos": 0, "boxpoints": "outliers", "fillcolor": "rgb(163, 83, 95)", "showlegend": true, "transforms": [ { "meta": { "columnNames": { "groups": "" } }, "type": "groupby", "styles": [] } ], "whiskerwidth": 0.75 }, { "line": { "color": "rgb(106, 118, 163)", "width": 2 }, "meta": { "columnNames": { "x": "Merkmal", "y": "Gesamt" } }, "name": "Physiotherapie", "type": "box", "xsrc": "Lotte2312:0:a1022a", "ysrc": "Lotte2312:0:1400fd", "marker": { "size": 3 }, "boxmean": false, "notched": false, "pointpos": 0, "boxpoints": "outliers", "fillcolor": "rgb(138, 147, 182)", "whiskerwidth": 0.75 }, { "line": { "width": 2 }, "meta": { "columnNames": { "x": "Merkmal", "y": "C" } }, "name": "Ergotherapie", "type": "box", "xsrc": "Lotte2312:0:a1022a", "ysrc": "Lotte2312:0:d36a8a", "marker": { "size": 3, "color": "rgb(183, 156, 183)" }, "boxmean": false, "notched": false, "pointpos": 0, "boxpoints": "outliers", "fillcolor": "rgb(203, 179, 201)", "whiskerwidth": 0.75 }, { "line": { "width": 2 }, "meta": { "columnNames": { "x": "Merkmal", "y": "E" } }, "name": "Logopädie", "type": "box", "xsrc": "Lotte2312:0:a1022a", "ysrc": "Lotte2312:0:5578ba", "marker": { "line": { "width": 0 }, "size": 3, "color": "rgb(176, 178, 194)" }, "boxmean": false, "notched": false, "pointpos": 0, "boxpoints": "outliers", "fillcolor": "rgb(198, 200, 218)", "whiskerwidth": 0.75 } ], "frames": [], "layout": { "font": { "size": 10, "family": "Times New Roman" }, "title": { "font": { "size": 14 } }, "xaxis": { "side": "bottom", "type": "category", "range": [ 0.487, 7.513341804320203 ], "title": { "font": { "size": 10.5 }, "text": "Dimensionen und Subdimensionen des Modells beruflicher Gratifikationskrisen" }, "tickson": "boundaries", "showgrid": false, "showline": false, "tickfont": { "size": 10.5 }, "tickmode": "auto", "autorange": false, "tickangle": "auto", "automargin": true, "showspikes": true, "rangeslider": { "range": [ 0.4866581956797967, 7.513341804320203 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": true, "spikethickness": 1 }, "yaxis": { "type": "linear", "range": [ 0.8333333333333334, 4.166666666666667 ], "ticks": "", "title": { "font": { "size": 10.5 }, "text": "Skalenmittelwert" }, "nticks": 0, "showgrid": true, "showline": false, "zeroline": true, "autorange": true, "gridcolor": "rgb(221, 221, 221)", "gridwidth": 0.01 }, "boxgap": 0.09999999999999998, "legend": { "font": { "size": 10.5 }, "title": { "text": "<br>" } }, "boxmode": "group", "modebar": { "orientation": "h" }, "autosize": false, "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" }, "boxgroupgap": 0.3, "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Lotte2312", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-14 15:17:34", "mapbox_access_tokens": null, "has_password": null, "username": "Lotte2312", "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-08-15T00:27:26.901502Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Damianex/3.embed", "fid": "Damianex:3", "filename": "15_08_v02", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/Damianex:3/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Damianex/3/2_O5110IVRHGHLVEYYKCPLCSUY9PRDCP.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Damianex/3/8_ZBEQDRFMAQG416YQ8TZ618EL9MQY38.png", "list-thumb": "https://api.plotly.com/v2/files/Damianex:3/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Damianex:3", "plots": "https://api.plotly.com/v2/plots/Damianex:3", "parent": "https://api.plotly.com/v2/folders/home?user=Damianex" }, "owner": "Damianex", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Damianex/3/", "world_readable": true, "date_modified": "2025-08-15T00:56:45.666Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Damianex/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "time", "y": "Vehicle speed: ---" } }, "mode": "lines", "name": "SPEED", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:36f4e0" }, { "meta": { "columnNames": { "x": "time", "y": "SLIP1" } }, "mode": "lines", "name": "SLIP1", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:eb187e", "yaxis": "y2", "stackgroup": null }, { "line": { "color": "rgb(0, 7, 204)" }, "meta": { "columnNames": { "x": "time", "y": "SLIP2" } }, "mode": "lines", "name": "SLIP2", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:744d77", "yaxis": "y2", "stackgroup": null }, { "line": { "color": "rgb(255, 4, 8)" }, "meta": { "columnNames": { "x": "time", "y": "Clutch 1, actual position (mm): Clutch_1_Actual_Position_mm" } }, "mode": "lines", "name": "CL1 mm", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:759467", "yaxis": "y3", "stackgroup": null }, { "line": { "color": "rgb(15, 8, 212)" }, "meta": { "columnNames": { "x": "time", "y": "Clutch 2, actual position (mm): Clutch_2_Actual_Position_mm" } }, "mode": "lines", "name": "CL2 mm", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:30141c", "yaxis": "y3", "stackgroup": null }, { "line": { "color": "rgb(250, 99, 102)" }, "meta": { "columnNames": { "x": "time", "y": "Pressure of partial transmission 1 actual value: Pressure Transmission Part 1 Actual Value" } }, "mode": "lines", "name": "CL1 press", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:0d97c0", "yaxis": "y4", "stackgroup": null }, { "line": { "color": "rgb(5, 15, 175)" }, "meta": { "columnNames": { "x": "time", "y": "Pressure of partial transmission 2 actual value: Pressure Transmission Part 2 Actual Value" } }, "mode": "lines", "name": "CL2 press", "type": "scatter", "xsrc": "Damianex:2:c6da2d", "ysrc": "Damianex:2:715ae2", "yaxis": "y4", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ 0, 186737 ], "domain": [ 0, 1 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -5.066666666666667, 96.26666666666667 ], "domain": [ 0.75, 1 ], "autorange": true }, "yaxis2": { "side": "right", "type": "linear", "range": [ -1177.888888888889, 1459.888888888889 ], "domain": [ 0.5, 0.75 ], "autorange": true, "overlaying": false }, "yaxis3": { "side": "right", "type": "linear", "range": [ -0.050000000000000044, 24.95 ], "domain": [ 0.25, 0.5 ], "autorange": true, "overlaying": false }, "yaxis4": { "side": "right", "type": "linear", "range": [ 5.818333333333333, 46.05166666666666 ], "domain": [ 0, 0.25 ], "autorange": true, "overlaying": false }, "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/~Damianex", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-06 01:38:16", "mapbox_access_tokens": null, "has_password": null, "username": "Damianex", "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-08-14T23:59:54.118960Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~rupak.goswami/1.embed", "fid": "rupak.goswami:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/rupak.goswami:1/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/rupak.goswami/1/2_55DU6NE042LRSI8XIP0F0ONGWV86GE.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rupak.goswami/1/8_JVSU5WKI9PHQ4JHTEBRMCUGF6ESQCO.png", "list-thumb": "https://api.plotly.com/v2/files/rupak.goswami:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/rupak.goswami:1", "plots": "https://api.plotly.com/v2/plots/rupak.goswami:1", "parent": "https://api.plotly.com/v2/folders/home?user=rupak.goswami" }, "owner": "rupak.goswami", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~rupak.goswami/1/", "world_readable": true, "date_modified": "2025-08-14T23:59:54.130Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~rupak.goswami/1/", "current_user_permission": "read", "is_theme": null, "is_template": true, "autosize": true, "caption": "", "figure": { "data": [ { "box": { "width": 0.1, "visible": true }, "line": { "width": 1 }, "meta": { "columnNames": { "x": "Farm Type", "y": "N application (kg/ha)" } }, "mode": "markers", "side": "both", "type": "violin", "xsrc": "rupak.goswami:0:0e04e4", "ysrc": "rupak.goswami:0:428af3", "jitter": 0.25, "marker": { "line": { "width": 0 }, "size": 4, "color": "rgb(58, 112, 231)", "opacity": 1 }, "points": "all", "opacity": 1, "meanline": { "color": "rgb(250, 137, 99)", "visible": true }, "pointpos": -1.5, "spanmode": "soft", "bandwidth": 0, "fillcolor": "rgba(250, 231, 99, 0.5)", "scalemode": "width" } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -1.0166581710286062, 6.895613587948874 ], "title": { "text": "Farm Types (FT)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 53.0866929172303, 205.6633070827697 ], "title": { "text": "N applination (kg/ha)" }, "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" }, "violingap": 0, "violinmode": "overlay", "violingroupgap": 0.31 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~rupak.goswami", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-14 23:58:25", "mapbox_access_tokens": null, "has_password": null, "username": "rupak.goswami", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "