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=cj0xJnA9MjAyNS0wOS0xMSswMyUzQTM0JTNBMjkuMTQ2MzE1JTJCMDAlM0EwMA%3D%3D&format=api
https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA5LTExKzA0JTNBMTAlM0EzNi42MTcxNDMlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOS0xMSswNyUzQTI0JTNBNTcuMzExMTc0JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-09-11T07:24:57.311174Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/55.embed", "fid": "gergely_istvan_toth:55", "filename": "multi_country_yield_distribution_potato_1757575493", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/gergely_istvan_toth:55/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/gergely_istvan_toth:55/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:55/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:55/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/gergely_istvan_toth:55", "plots": "https://api.plotly.com/v2/plots/gergely_istvan_toth:55", "parent": "https://api.plotly.com/v2/folders/home?user=gergely_istvan_toth" }, "owner": "gergely_istvan_toth", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/55/", "world_readable": true, "date_modified": "2025-09-11T07:24:57.322Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/55/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "x0": " ", "y0": " ", "name": "CSO_CZ", "type": "box", "xsrc": "gergely_istvan_toth:54:d5cde8", "ysrc": "gergely_istvan_toth:54:fb6dce", "xaxis": "x", "yaxis": "y", "marker": { "color": "#2ca02c" }, "notched": false, "showlegend": true, "legendgroup": "CSO_CZ", "offsetgroup": "CSO_CZ", "orientation": "v", "customdatasrc": "gergely_istvan_toth:54:9d4078", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "type": "box", "xsrc": "gergely_istvan_toth:54:11ac42", "ysrc": "gergely_istvan_toth:54:b03cd5", "xaxis": "x", "yaxis": "y", "marker": { "color": "#1f77b4" }, "notched": false, "showlegend": true, "legendgroup": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "offsetgroup": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "orientation": "v", "customdatasrc": "gergely_istvan_toth:54:6171d8", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Polish Statistical Office_PL", "type": "box", "xsrc": "gergely_istvan_toth:54:de5860", "ysrc": "gergely_istvan_toth:54:46f67d", "xaxis": "x", "yaxis": "y", "marker": { "color": "#8c564b" }, "notched": false, "showlegend": true, "legendgroup": "Polish Statistical Office_PL", "offsetgroup": "Polish Statistical Office_PL", "orientation": "v", "customdatasrc": "gergely_istvan_toth:54:258d67", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" } ], "layout": { "title": { "text": "Yield Distribution for Potato by Data Source and Country (Multi-Country Crop)" }, "width": 800, "xaxis": { "title": { "text": "Data Source - Country" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "tickangle": -45, "categoryarray": [ "CSO_CZ", "Ellsäßer (2022); Völker & Sommer (2020)_DE", "Polish Statistical Office_PL" ], "categoryorder": "array" }, "yaxis": { "title": { "text": "Mean Yield (t/ha)" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 600, "legend": { "x": 0.5, "y": 1.02, "title": { "text": "Data Source - Country" }, "xanchor": "center", "yanchor": "bottom", "orientation": "h", "tracegroupgap": 0 }, "margin": { "b": 120, "l": 0, "r": 0, "t": 80 }, "boxmode": "overlay", "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "showlegend": true, "annotations": [ { "x": 0.02, "y": 0.98, "font": { "size": 10 }, "text": "Countries: 3 | Source-Country combinations: 3 | Regions: 420", "xref": "paper", "yref": "paper", "bgcolor": "rgba(255,255,255,0.8)", "showarrow": false } ] } }, "height": 600, "width": 800, "user": { "profile_url": "https://chart-studio.plotly.com/~gergely_istvan_toth", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-09 15:22:15", "mapbox_access_tokens": null, "has_password": null, "username": "gergely_istvan_toth", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:24:53.395916Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/53.embed", "fid": "gergely_istvan_toth:53", "filename": "multi_country_yield_distribution_oat_1757575489", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/gergely_istvan_toth:53/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/gergely_istvan_toth:53/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:53/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:53/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/gergely_istvan_toth:53", "plots": "https://api.plotly.com/v2/plots/gergely_istvan_toth:53", "parent": "https://api.plotly.com/v2/folders/home?user=gergely_istvan_toth" }, "owner": "gergely_istvan_toth", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/53/", "world_readable": true, "date_modified": "2025-09-11T07:24:53.405Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/53/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "x0": " ", "y0": " ", "name": "CSO_CZ", "type": "box", "xsrc": "gergely_istvan_toth:52:581668", "ysrc": "gergely_istvan_toth:52:13ba75", "xaxis": "x", "yaxis": "y", "marker": { "color": "#2ca02c" }, "notched": false, "showlegend": true, "legendgroup": "CSO_CZ", "offsetgroup": "CSO_CZ", "orientation": "v", "customdatasrc": "gergely_istvan_toth:52:44c35f", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "uk_defra_UK", "type": "box", "xsrc": "gergely_istvan_toth:52:0e0e0e", "ysrc": "gergely_istvan_toth:52:c9bc9d", "xaxis": "x", "yaxis": "y", "marker": { "color": "#e377c2" }, "notched": false, "showlegend": true, "legendgroup": "uk_defra_UK", "offsetgroup": "uk_defra_UK", "orientation": "v", "customdatasrc": "gergely_istvan_toth:52:8680b9", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "type": "box", "xsrc": "gergely_istvan_toth:52:2c0ccf", "ysrc": "gergely_istvan_toth:52:4174f8", "xaxis": "x", "yaxis": "y", "marker": { "color": "#1f77b4" }, "notched": false, "showlegend": true, "legendgroup": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "offsetgroup": "Ellsäßer (2022); Völker & Sommer (2020)_DE", "orientation": "v", "customdatasrc": "gergely_istvan_toth:52:02588a", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Polish Statistical Office_PL", "type": "box", "xsrc": "gergely_istvan_toth:52:773441", "ysrc": "gergely_istvan_toth:52:07b2a7", "xaxis": "x", "yaxis": "y", "marker": { "color": "#8c564b" }, "notched": false, "showlegend": true, "legendgroup": "Polish Statistical Office_PL", "offsetgroup": "Polish Statistical Office_PL", "orientation": "v", "customdatasrc": "gergely_istvan_toth:52:7eb988", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" } ], "layout": { "title": { "text": "Yield Distribution for Oat by Data Source and Country (Multi-Country Crop)" }, "width": 800, "xaxis": { "title": { "text": "Data Source - Country" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "tickangle": -45, "categoryarray": [ "CSO_CZ", "uk_defra_UK", "Ellsäßer (2022); Völker & Sommer (2020)_DE", "Polish Statistical Office_PL" ], "categoryorder": "array" }, "yaxis": { "title": { "text": "Mean Yield (t/ha)" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 600, "legend": { "x": 0.5, "y": 1.02, "title": { "text": "Data Source - Country" }, "xanchor": "center", "yanchor": "bottom", "orientation": "h", "tracegroupgap": 0 }, "margin": { "b": 120, "l": 0, "r": 0, "t": 80 }, "boxmode": "overlay", "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "showlegend": true, "annotations": [ { "x": 0.02, "y": 0.98, "font": { "size": 10 }, "text": "Countries: 4 | Source-Country combinations: 4 | Regions: 599", "xref": "paper", "yref": "paper", "bgcolor": "rgba(255,255,255,0.8)", "showarrow": false } ] } }, "height": 600, "width": 800, "user": { "profile_url": "https://chart-studio.plotly.com/~gergely_istvan_toth", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-09 15:22:15", "mapbox_access_tokens": null, "has_password": null, "username": "gergely_istvan_toth", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:24:49.373883Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/51.embed", "fid": "gergely_istvan_toth:51", "filename": "multi_country_yield_distribution_grain_maize_1757575486", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/gergely_istvan_toth:51/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/gergely_istvan_toth:51/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:51/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:51/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/gergely_istvan_toth:51", "plots": "https://api.plotly.com/v2/plots/gergely_istvan_toth:51", "parent": "https://api.plotly.com/v2/folders/home?user=gergely_istvan_toth" }, "owner": "gergely_istvan_toth", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/51/", "world_readable": true, "date_modified": "2025-09-11T07:24:49.384Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/51/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_DE", "type": "box", "xsrc": "gergely_istvan_toth:50:7b41d3", "ysrc": "gergely_istvan_toth:50:727a96", "xaxis": "x", "yaxis": "y", "marker": { "color": "#1f77b4" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_DE", "offsetgroup": "Ronchetti et al. (2024)_DE", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:a3d40b", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_CZ", "type": "box", "xsrc": "gergely_istvan_toth:50:101e0f", "ysrc": "gergely_istvan_toth:50:b7f9cb", "xaxis": "x", "yaxis": "y", "marker": { "color": "#2ca02c" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_CZ", "offsetgroup": "Ronchetti et al. (2024)_CZ", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:4e7918", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_SK", "type": "box", "xsrc": "gergely_istvan_toth:50:00f860", "ysrc": "gergely_istvan_toth:50:790c90", "xaxis": "x", "yaxis": "y", "marker": { "color": "#ff7f0e" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_SK", "offsetgroup": "Ronchetti et al. (2024)_SK", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:be014f", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_PL", "type": "box", "xsrc": "gergely_istvan_toth:50:324680", "ysrc": "gergely_istvan_toth:50:e74411", "xaxis": "x", "yaxis": "y", "marker": { "color": "#8c564b" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_PL", "offsetgroup": "Ronchetti et al. (2024)_PL", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:c56668", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_RO", "type": "box", "xsrc": "gergely_istvan_toth:50:4090a6", "ysrc": "gergely_istvan_toth:50:c6ba76", "xaxis": "x", "yaxis": "y", "marker": { "color": "#d62728" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_RO", "offsetgroup": "Ronchetti et al. (2024)_RO", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:878868", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_HU", "type": "box", "xsrc": "gergely_istvan_toth:50:91518c", "ysrc": "gergely_istvan_toth:50:74c6c6", "xaxis": "x", "yaxis": "y", "marker": { "color": "#9467bd" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_HU", "offsetgroup": "Ronchetti et al. (2024)_HU", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:a3068f", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "CSO_CZ", "type": "box", "xsrc": "gergely_istvan_toth:50:3f9630", "ysrc": "gergely_istvan_toth:50:ab693f", "xaxis": "x", "yaxis": "y", "marker": { "color": "#2ca02c" }, "notched": false, "showlegend": true, "legendgroup": "CSO_CZ", "offsetgroup": "CSO_CZ", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:ec4351", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Polish Statistical Office_PL", "type": "box", "xsrc": "gergely_istvan_toth:50:741f1c", "ysrc": "gergely_istvan_toth:50:330d08", "xaxis": "x", "yaxis": "y", "marker": { "color": "#8c564b" }, "notched": false, "showlegend": true, "legendgroup": "Polish Statistical Office_PL", "offsetgroup": "Polish Statistical Office_PL", "orientation": "v", "customdatasrc": "gergely_istvan_toth:50:86a350", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" } ], "layout": { "title": { "text": "Yield Distribution for Grain Maize by Data Source and Country (Multi-Country Crop)" }, "width": 1200, "xaxis": { "title": { "text": "Data Source - Country" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "tickangle": -45, "categoryarray": [ "Ronchetti et al. (2024)_DE", "Ronchetti et al. (2024)_CZ", "Ronchetti et al. (2024)_SK", "Ronchetti et al. (2024)_PL", "Ronchetti et al. (2024)_RO", "Ronchetti et al. (2024)_HU", "CSO_CZ", "Polish Statistical Office_PL" ], "categoryorder": "array" }, "yaxis": { "title": { "text": "Mean Yield (t/ha)" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 600, "legend": { "x": 0.5, "y": 1.02, "title": { "text": "Data Source - Country" }, "xanchor": "center", "yanchor": "bottom", "orientation": "h", "tracegroupgap": 0 }, "margin": { "b": 120, "l": 0, "r": 0, "t": 80 }, "boxmode": "overlay", "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "showlegend": true, "annotations": [ { "x": 0.02, "y": 0.98, "font": { "size": 10 }, "text": "Countries: 6 | Source-Country combinations: 8 | Regions: 638", "xref": "paper", "yref": "paper", "bgcolor": "rgba(255,255,255,0.8)", "showarrow": false } ] } }, "height": 600, "width": 1200, "user": { "profile_url": "https://chart-studio.plotly.com/~gergely_istvan_toth", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-09 15:22:15", "mapbox_access_tokens": null, "has_password": null, "username": "gergely_istvan_toth", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:24:45.668328Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/49.embed", "fid": "gergely_istvan_toth:49", "filename": "multi_country_yield_distribution_durum_wheat_1757575482", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/gergely_istvan_toth:49/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/gergely_istvan_toth:49/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:49/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:49/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/gergely_istvan_toth:49", "plots": "https://api.plotly.com/v2/plots/gergely_istvan_toth:49", "parent": "https://api.plotly.com/v2/folders/home?user=gergely_istvan_toth" }, "owner": "gergely_istvan_toth", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/49/", "world_readable": true, "date_modified": "2025-09-11T07:24:45.682Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/49/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_SK", "type": "box", "xsrc": "gergely_istvan_toth:48:bf2410", "ysrc": "gergely_istvan_toth:48:4b5ce1", "xaxis": "x", "yaxis": "y", "marker": { "color": "#ff7f0e" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_SK", "offsetgroup": "Ronchetti et al. (2024)_SK", "orientation": "v", "customdatasrc": "gergely_istvan_toth:48:6e045c", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_RO", "type": "box", "xsrc": "gergely_istvan_toth:48:104bd4", "ysrc": "gergely_istvan_toth:48:73262c", "xaxis": "x", "yaxis": "y", "marker": { "color": "#d62728" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_RO", "offsetgroup": "Ronchetti et al. (2024)_RO", "orientation": "v", "customdatasrc": "gergely_istvan_toth:48:463be4", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" }, { "x0": " ", "y0": " ", "name": "Ronchetti et al. (2024)_HU", "type": "box", "xsrc": "gergely_istvan_toth:48:38aeef", "ysrc": "gergely_istvan_toth:48:65904f", "xaxis": "x", "yaxis": "y", "marker": { "color": "#9467bd" }, "notched": false, "showlegend": true, "legendgroup": "Ronchetti et al. (2024)_HU", "offsetgroup": "Ronchetti et al. (2024)_HU", "orientation": "v", "customdatasrc": "gergely_istvan_toth:48:ad7a87", "hovertemplate": "Data Source - Country=%{x}<br>Mean Yield (t/ha)=%{y}<br>nuts_code=%{customdata[0]}<br>count=%{customdata[1]}<br>std=%{customdata[2]}<br>country=%{customdata[3]}<extra></extra>", "alignmentgroup": "True" } ], "layout": { "title": { "text": "Yield Distribution for Durum Wheat by Data Source and Country (Multi-Country Crop)" }, "width": 800, "xaxis": { "title": { "text": "Data Source - Country" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "tickangle": -45, "categoryarray": [ "Ronchetti et al. (2024)_SK", "Ronchetti et al. (2024)_RO", "Ronchetti et al. (2024)_HU" ], "categoryorder": "array" }, "yaxis": { "title": { "text": "Mean Yield (t/ha)" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 600, "legend": { "x": 0.5, "y": 1.02, "title": { "text": "Data Source - Country" }, "xanchor": "center", "yanchor": "bottom", "orientation": "h", "tracegroupgap": 0 }, "margin": { "b": 120, "l": 0, "r": 0, "t": 80 }, "boxmode": "overlay", "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "showlegend": true, "annotations": [ { "x": 0.02, "y": 0.98, "font": { "size": 10 }, "text": "Countries: 3 | Source-Country combinations: 3 | Regions: 61", "xref": "paper", "yref": "paper", "bgcolor": "rgba(255,255,255,0.8)", "showarrow": false } ] } }, "height": 600, "width": 800, "user": { "profile_url": "https://chart-studio.plotly.com/~gergely_istvan_toth", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-09 15:22:15", "mapbox_access_tokens": null, "has_password": null, "username": "gergely_istvan_toth", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:23:18.593506Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~JHofmann/1.embed", "fid": "JHofmann:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/JHofmann:1/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/JHofmann:1/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/JHofmann:1/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/JHofmann:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/JHofmann:1", "plots": "https://api.plotly.com/v2/plots/JHofmann:1", "parent": "https://api.plotly.com/v2/folders/home?user=JHofmann" }, "owner": "JHofmann", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~JHofmann/1/", "world_readable": true, "date_modified": "2025-09-11T07:23:18.607Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~JHofmann/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "labels": "B", "values": "C", "parents": "A" } }, "mode": "markers", "type": "sunburst", "labelssrc": "JHofmann:0:ce5a7f", "valuessrc": "JHofmann:0:abbbd8", "parentssrc": "JHofmann:0:b9d20b" } ], "frames": [], "layout": { "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "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/~JHofmann", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.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-09-11 07:22:06", "mapbox_access_tokens": null, "has_password": null, "username": "JHofmann", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:20:15.520334Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Shahid121/1.embed", "fid": "Shahid121:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/Shahid121:1/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/Shahid121:1/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/Shahid121:1/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/Shahid121:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Shahid121:1", "plots": "https://api.plotly.com/v2/plots/Shahid121:1", "parent": "https://api.plotly.com/v2/folders/home?user=Shahid121" }, "owner": "Shahid121", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Shahid121/1/", "world_readable": true, "date_modified": "2025-09-11T07:20:15.532Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Shahid121/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "X Title", "y": "Y Title", "z": "z[0] - z[1] - z[2]" } }, "type": "heatmap", "xsrc": "Shahid121:0:4aaeae", "ysrc": "Shahid121:0:beece8", "zsrc": "Shahid121:0:86b2f7,9ec7bc,a605da", "transpose": false, "colorscale": "RdBu" } ], "frames": [], "layout": { "title": { "text": "Histogram Title" }, "xaxis": { "type": "category", "range": [ -0.5, 3.5 ], "title": { "text": "X Title" }, "autorange": true }, "yaxis": { "type": "category", "range": [ -0.5, 3.5 ], "title": { "text": "Y Title" }, "autorange": true }, "bargap": 1, "barmode": "overlay", "bargroupgap": 1 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Shahid121", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-11 07:12:41", "mapbox_access_tokens": null, "has_password": null, "username": "Shahid121", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T07:13:48.916410Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/47.embed", "fid": "gergely_istvan_toth:47", "filename": "test_chart_upload_1757574825", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/gergely_istvan_toth:47/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/gergely_istvan_toth:47/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gergely_istvan_toth/47/8_DY9BDHITF8Q3NB2UXOOZKY7PVT07AB.png", "list-thumb": "https://api.plotly.com/v2/files/gergely_istvan_toth:47/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/gergely_istvan_toth:47", "plots": "https://api.plotly.com/v2/plots/gergely_istvan_toth:47", "parent": "https://api.plotly.com/v2/folders/home?user=gergely_istvan_toth" }, "owner": "gergely_istvan_toth", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/47/", "world_readable": true, "date_modified": "2025-09-11T07:13:48.927Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~gergely_istvan_toth/47/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "name": "Test", "type": "scatter", "xsrc": "gergely_istvan_toth:46:f7dc3a", "ysrc": "gergely_istvan_toth:46:e45c41" } ], "layout": { "title": { "text": "Chart Studio Upload Test" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~gergely_istvan_toth", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-09 15:22:15", "mapbox_access_tokens": null, "has_password": null, "username": "gergely_istvan_toth", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T05:48:13.243803Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~barathchitti/1.embed", "fid": "barathchitti:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/barathchitti/1/9_XZTBNOLRO7WU18GSMIR3CHXRZ6T9R5.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/barathchitti/1/2_YMQ5ZAWCFQWLG5806EL9JKKNQK3VVF.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/barathchitti/1/8_II22NT94M8Z2HC4QYJFX4IK2K0YJSZ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/barathchitti/1/9_XZTBNOLRO7WU18GSMIR3CHXRZ6T9R5.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/barathchitti:1", "plots": "https://api.plotly.com/v2/plots/barathchitti:1", "parent": "https://api.plotly.com/v2/folders/home?user=barathchitti" }, "owner": "barathchitti", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~barathchitti/1/", "world_readable": true, "date_modified": "2025-09-11T05:48:25.481Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~barathchitti/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "date", "y": "index" } }, "mode": "markers", "type": "scatter", "xsrc": "barathchitti:0:9e5d76", "ysrc": "barathchitti:0:c0e224", "transforms": [ { "meta": { "columnNames": { "groups": "mac" } }, "type": "groupby", "styles": [ { "value": { "name": "BBBBBBBBBB13" }, "target": "BBBBBBBBBB13" }, { "value": { "name": "86996D902BE4" }, "target": "86996D902BE4" }, { "value": { "name": "B8ACBADFD3FD" }, "target": "B8ACBADFD3FD" } ], "groupssrc": "barathchitti:0:fee4c8" } ] } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "date", "range": [ "2025-09-10 07:02:11.7117", "2025-09-11 02:33:08.2883" ], "title": { "text": "Timestamp" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -16.638171667829727, 271.63817166782974 ], "title": { "text": "Index" }, "anchor": "x", "autorange": true }, "autosize": true, "dragmode": "zoom", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~barathchitti", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-11 05:43:02", "mapbox_access_tokens": null, "has_password": null, "username": "barathchitti", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T05:11:51.516623Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jimmyg23/659.embed", "fid": "jimmyg23:659", "filename": "corn yld wasde SEPTEMBER", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/659/9_TOFR94DONPRB4ZU6P0V2IMEZ0LCH3E.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/659/2_ST4CCO78IO2FE0UKI2PNTZ24NO5MC7.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/659/8_I5ARP21H8VEQT052HDEJSIH6LHRSKM.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/659/9_TOFR94DONPRB4ZU6P0V2IMEZ0LCH3E.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jimmyg23:659", "plots": "https://api.plotly.com/v2/plots/jimmyg23:659", "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23" }, "owner": "jimmyg23", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~jimmyg23/659/", "world_readable": true, "date_modified": "2025-09-11T06:12:17.894Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/659/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": false, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Year", "y": "Yield Change", "text": "Yield Change", "textposition": "" } }, "name": "<b>Yield Change</b>", "type": "bar", "xsrc": "jimmyg23:660:e7ea51", "ysrc": "jimmyg23:660:7363a6", "marker": { "color": "rgb(34, 68, 173)" }, "textsrc": "jimmyg23:660:7363a6", "textfont": { "size": 18 }, "textangle": 0, "orientation": "v", "textposition": "auto" } ], "frames": [], "layout": { "font": { "size": 17, "color": "rgb(0, 0, 0)", "family": "Overpass" }, "title": { "text": "SEPTEMBER" }, "width": 1500, "xaxis": { "type": "linear", "range": [ 2009.5, 2025.5 ], "ticks": "outside", "nticks": 15, "ticklen": 7, "showline": true, "tickfont": { "size": 18, "color": "rgb(0, 4, 13)", "family": "Overpass" }, "tickmode": "linear", "zeroline": true, "autorange": false, "linecolor": "rgb(0, 0, 0)", "linewidth": 3, "tickangle": 45, "zerolinecolor": "rgb(199, 89, 56)" }, "yaxis": { "type": "linear", "range": [ -28.511111111111113, 35.71111111111111 ], "ticks": "outside", "title": { "font": { "size": 17, "family": "Overpass" }, "text": "<b>Bushels</b>" }, "nticks": 13, "ticklen": 7, "showgrid": true, "showline": true, "tickfont": { "size": 18, "family": "Overpass" }, "autorange": true, "gridcolor": "rgb(205, 197, 197)", "gridwidth": 1, "linecolor": "rgb(0, 0, 0)", "linewidth": 3, "zerolinecolor": "rgb(213, 74, 36)", "zerolinewidth": 2 }, "bargap": 0.25, "height": 750, "legend": { "x": 1.0142383980997414, "y": 0.7335701598579041 }, "margin": { "b": 100, "l": 100, "r": 200, "t": 100, "pad": 0 }, "barmode": "group", "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" }, "showlegend": true, "bargroupgap": 0 } }, "height": 750, "width": 1500, "user": { "profile_url": "https://chart-studio.plotly.com/~jimmyg23", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-03-19 23:02:49", "mapbox_access_tokens": null, "has_password": null, "username": "jimmyg23", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2025-09-11T04:10:36.617143Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~SSpectre/59.embed", "fid": "SSpectre:59", "filename": "Spider Awfulness Plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/SSpectre/59/9_4IUE8MMBJQWSGTSSQVXMLL53GKTJGZ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/SSpectre/59/2_7BXPWCL5I0EPEAX8NWHHM24AZP7VOF.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SSpectre/59/8_O5VPJMG2LKS6GDAQYPPXABXD78VDKT.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/SSpectre/59/9_4IUE8MMBJQWSGTSSQVXMLL53GKTJGZ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/SSpectre:59", "plots": "https://api.plotly.com/v2/plots/SSpectre:59", "parent": "https://api.plotly.com/v2/folders/home?user=SSpectre" }, "owner": "SSpectre", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~SSpectre/59/", "world_readable": true, "date_modified": "2025-09-11T04:46:44.186Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~SSpectre/59/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Overall Size", "y": "Leg Thickness", "z": "Movement Speed/Likelihood", "text": "Type", "marker": { "color": "Awfulness" } } }, "mode": "markers", "type": "scatter3d", "xsrc": "SSpectre:58:cb1110", "ysrc": "SSpectre:58:86c94e", "zsrc": "SSpectre:58:2aa38c", "marker": { "line": { "color": "transparent" }, "meta": { "columnNames": { "color": "Awfulness" } }, "cauto": true, "colorbar": { "x": 0.7161687749109501, "y": 0.470873786407767, "title": { "text": "Awfulness" } }, "colorsrc": "SSpectre:58:53da7a", "fillcolor": "rgba(31,119,180,1)", "colorscale": [ [ 0, "#f1ecec" ], [ 0.09090909090909091, "#e6d1cb" ], [ 0.18181818181818182, "#ddb6aa" ], [ 0.2727272727272727, "#d59c89" ], [ 0.36363636363636365, "#cd8167" ], [ 0.45454545454545453, "#c46649" ], [ 0.5454545454545454, "#ba4a2f" ], [ 0.6363636363636364, "#ac2c24" ], [ 0.7272727272727273, "#951327" ], [ 0.8181818181818182, "#780e28" ], [ 0.9090909090909091, "#590d1f" ], [ 1, "#3c0911" ] ] }, "error_x": { "type": "data", "visible": true, "symmetric": false }, "error_y": { "type": "data", "visible": true, "symmetric": false }, "textsrc": "SSpectre:58:faf6ec", "hoverinfo": "x+y+z+text", "hoverlabel": { "namelength": -1 }, "texttemplate": "", "hovertemplate": "", "autocolorscale": false } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "range": [ 0.71875, 10.281250000000002 ], "ticks": "", "title": { "text": "Overall Size" }, "autorange": true, "rangemode": "normal", "showspikes": true }, "yaxis": { "type": "linear", "range": [ 0.71875, 10.281250000000002 ], "title": { "text": "Leg Thickness" }, "autorange": true, "rangemode": "normal", "showspikes": true }, "zaxis": { "type": "linear", "title": { "text": "Movement Speed/Likelihood" }, "showspikes": true }, "camera": { "up": { "x": 0.38581274436021434, "y": 0.8732998211147422, "z": 0.29748268643771375 }, "eye": { "x": -1.786982122472686, "y": 1.2133757203609798, "z": -1.5133810077448104 }, "center": { "x": -0.13269358422146138, "y": -0.05939686965011924, "z": 0.077523256087629 }, "projection": { "type": "perspective" } }, "hovermode": "closest", "aspectmode": "auto", "aspectratio": { "x": 1.0000000000000002, "y": 1.0000000000000002, "z": 1.0000000000000002 } }, "xaxis": { "domain": [ 0, 1 ] }, "yaxis": { "domain": [ 0, 1 ] }, "margin": { "b": 40, "l": 60, "r": 10, "t": 25 }, "autosize": true, "showlegend": false, "annotations": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~SSpectre", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.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": "2016-10-04 16:13:20", "mapbox_access_tokens": null, "has_password": null, "username": "SSpectre", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "