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=cD0yMDI1LTA5LTE1KzE4JTNBMTIlM0EwMy43MDYyMTklMkIwMCUzQTAw&format=api
https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA5LTE1KzE1JTNBNDMlM0E1OC43NTk3NzIlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOS0xNSsxOCUzQTA5JTNBNDEuNDIwNjg0JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-09-15T18:09:41.420684Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~grabby/26.embed", "fid": "grabby:26", "filename": "grpc_coffee_lr", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/grabby:26/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/grabby/26/2_5JFQ3W0GAZHHHQI4FWJAUSZSBLCO6S.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/grabby/26/8_7W20FGWJISG4DLEYTMXYEXW496UXYZ.png", "list-thumb": "https://api.plotly.com/v2/files/grabby:26/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/grabby:26", "plots": "https://api.plotly.com/v2/plots/grabby:26", "parent": "https://api.plotly.com/v2/folders/home?user=grabby" }, "owner": "grabby", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~grabby/26/", "world_readable": true, "date_modified": "2025-09-15T18:09:41.430Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~grabby/26/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Oracles", "y": " LR Mean", "error_y": { "array": "LR Std Dev" } } }, "mode": "markers", "type": "bar", "xsrc": "grabby:25:731eea", "ysrc": "grabby:25:628a91", "error_y": { "meta": { "columnNames": { "array": "LR Std Dev" } }, "type": "data", "visible": true, "arraysrc": "grabby:25:61b2ed", "symmetric": true }, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Learning Rounds (Mean ± SD) by Oracle" }, "xaxis": { "type": "category", "range": [ -0.5, 3.5 ], "title": { "text": "Equivalence Oracle Type" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 3.389473684210526 ], "title": { "text": "Mean Learning Rounds (LR)" }, "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/~grabby", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/93.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-29 03:44:44", "mapbox_access_tokens": null, "has_password": null, "username": "grabby", "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-15T18:06:25.869803Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~teia/1.embed", "fid": "teia:1", "filename": "BASIL PLOT", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/teia:1/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/teia/1/2_TXRBLIELE9NSDF6UBUU9FEV8BN5C7R.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/teia/1/8_7EGXEGBCSJOZU4SN3EM5DSX842A6KS.png", "list-thumb": "https://api.plotly.com/v2/files/teia:1/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/teia:1", "plots": "https://api.plotly.com/v2/plots/teia:1", "parent": "https://api.plotly.com/v2/folders/home?user=teia" }, "owner": "teia", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~teia/1/", "world_readable": true, "date_modified": "2025-09-15T18:06:25.885Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~teia/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "B", "y": "A", "error_y": { "array": "C" } } }, "mode": "markers", "type": "bar", "xsrc": "teia:0:9e8115", "ysrc": "teia:0:85073b", "marker": { "line": { "color": "rgb(43, 221, 7)", "width": 3 }, "color": "rgb(1, 161, 1)", "opacity": 0.75 }, "error_y": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "color": "rgb(43, 221, 7)", "value": 0.16307641301088, "width": 4, "visible": true, "arraysrc": "teia:0:698b02", "symmetric": true, "thickness": 2, "valueminus": 10 }, "orientation": "v" } ], "frames": [], "layout": { "font": { "size": 14, "family": "Old Standard TT" }, "title": { "font": { "size": 27 }, "text": "Basil Growth 🫘🌱" }, "xaxis": { "type": "category", "range": [ -0.5, 2.5 ], "title": { "text": "# of Basil Seeds🫘" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 2.757471739095663 ], "title": { "text": "Basil Height (cm)📏" }, "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "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": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "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": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~teia", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/72.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-29 18:39:34", "mapbox_access_tokens": null, "has_password": null, "username": "teia", "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-15T17:59:50.337323Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~nhouse29/1.embed", "fid": "nhouse29:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/nhouse29/1/9_444178H681MOZKYJM6TIQ3A69BVBMR.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/nhouse29/1/2_KWHQLSESDZPOQCE2D5SH0L352MNWFZ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nhouse29/1/8_WYJS5FO3WL422JBA1B4SEBX943F1JP.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nhouse29/1/9_444178H681MOZKYJM6TIQ3A69BVBMR.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/nhouse29:1", "plots": "https://api.plotly.com/v2/plots/nhouse29:1", "parent": "https://api.plotly.com/v2/folders/home?user=nhouse29" }, "owner": "nhouse29", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~nhouse29/1/", "world_readable": true, "date_modified": "2025-09-15T17:59:50.356Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~nhouse29/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "lines", "type": "scatter3d", "xsrc": "nhouse29:0:114fdc", "ysrc": "nhouse29:0:2d0664", "zsrc": "nhouse29:0:98a7e6" }, { "meta": { "columnNames": { "x": "D", "y": "E", "z": "F" } }, "mode": "lines", "type": "scatter3d", "xsrc": "nhouse29:0:7bb639", "ysrc": "nhouse29:0:ef04ab", "zsrc": "nhouse29:0:ff2ea3" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": 0.4642353797082819, "y": -0.8713691569855582, "z": -0.15874918734086693 }, "eye": { "x": -0.06623939569840925, "y": -0.06978130000999128, "z": 2.7217584920101623 }, "center": { "x": -0.4461310305750026, "y": 0.27277133972959644, "z": -0.26943125977357163 }, "projection": { "type": "perspective" } }, "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "title": { "text": "Click to enter Plot title" }, "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/~nhouse29", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-10 09:56:16", "mapbox_access_tokens": null, "has_password": null, "username": "nhouse29", "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-15T17:51:41.182317Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~avinkhanli/5.embed", "fid": "avinkhanli:5", "filename": "Spores vs No Spores lab", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/avinkhanli:5/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/avinkhanli/5/2_91ZBRQ09GIV1RYQ30GPMFZZQ3OEYYT.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/avinkhanli/5/8_0VTMGUHY6DO89YNUMFB35AN8C7DJW3.png", "list-thumb": "https://api.plotly.com/v2/files/avinkhanli:5/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/avinkhanli:5", "plots": "https://api.plotly.com/v2/plots/avinkhanli:5", "parent": "https://api.plotly.com/v2/folders/home?user=avinkhanli" }, "owner": "avinkhanli", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~avinkhanli/5/", "world_readable": true, "date_modified": "2025-09-15T17:51:41.192Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~avinkhanli/5/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "C" } } }, "mode": "markers", "name": "Spores ", "type": "bar", "xsrc": "avinkhanli:4:9bf6bd", "ysrc": "avinkhanli:4:78e0d0", "error_x": { "type": "percent", "color": "#444", "value": 10, "width": 4, "visible": false, "symmetric": true, "thickness": 2 }, "error_y": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "color": "#444", "value": 10, "width": 4, "visible": true, "arraysrc": "avinkhanli:4:49287f", "symmetric": true, "thickness": 2, "valueminus": 10 }, "orientation": "v" } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -0.5, 1.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 11.418265915789473 ], "autorange": true }, "bargap": 0.19999999999999996, "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/~avinkhanli", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-29 18:35:52", "mapbox_access_tokens": null, "has_password": null, "username": "avinkhanli", "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-15T17:50:17.573586Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~maeve01/1.embed", "fid": "maeve01:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/maeve01/1/9_CUVN32O42XBE11ZHRNWOJ6R9XENJFR.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/maeve01/1/2_A0UJWS9M8EARVBX37HVQJZ3FX6AQNN.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/maeve01/1/8_7IK3L27IW54VCN6WHSLEB1I4JTS5XJ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/maeve01/1/9_CUVN32O42XBE11ZHRNWOJ6R9XENJFR.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/maeve01:1", "plots": "https://api.plotly.com/v2/plots/maeve01:1", "parent": "https://api.plotly.com/v2/folders/home?user=maeve01" }, "owner": "maeve01", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~maeve01/1/", "world_readable": true, "date_modified": "2025-09-15T17:50:17.585Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~maeve01/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "lines", "type": "scatter3d", "xsrc": "maeve01:0:f69f85", "ysrc": "maeve01:0:f27ee1", "zsrc": "maeve01:0:8aa797" }, { "meta": { "columnNames": { "x": "D", "y": "E", "z": "F" } }, "mode": "lines", "type": "scatter3d", "xsrc": "maeve01:0:78ed1d", "ysrc": "maeve01:0:89e12b", "zsrc": "maeve01:0:8db322" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": -0.1914823844333219, "y": -0.7053441248147538, "z": 0.6825131222482387 }, "eye": { "x": 0.09514060766629107, "y": 1.014047985064887, "z": 1.0746614461302046 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "title": { "text": "vector lab" }, "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/~maeve01", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-09-15 17:43:20", "mapbox_access_tokens": null, "has_password": null, "username": "maeve01", "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-15T17:34:14.411240Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~AD500/3.embed", "fid": "AD500:3", "filename": "Basil Plants", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/AD500:3/image?image_name=list-thumb", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/AD500/3/2_5SAG058O80U9MMRLTFL7GJ7GBNIMPH.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AD500/3/8_3L5FMPTB24QAA28ZDHS638L576OO1Q.png", "list-thumb": "https://api.plotly.com/v2/files/AD500:3/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/AD500:3", "plots": "https://api.plotly.com/v2/plots/AD500:3", "parent": "https://api.plotly.com/v2/folders/home?user=AD500" }, "owner": "AD500", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~AD500/3/", "world_readable": true, "date_modified": "2025-09-15T17:37:14.404Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~AD500/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "C" } } }, "mode": "markers", "type": "bar", "xsrc": "AD500:2:7996d8", "ysrc": "AD500:2:072a3d", "error_x": { "type": "percent", "color": "#444", "value": 10, "width": 4, "visible": false, "symmetric": true, "thickness": 2 }, "error_y": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "visible": true, "arraysrc": "AD500:2:12307e", "symmetric": true }, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "category", "range": [ -0.5, 2.5 ], "title": { "text": "Number of seeds" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 2.9291311210526314 ], "title": { "text": "Height after 4 weeks (cm)" }, "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/~AD500", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-29 18:32:17", "mapbox_access_tokens": null, "has_password": null, "username": "AD500", "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-15T16:50:46.057377Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~smailcaileana/1.embed", "fid": "smailcaileana:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/smailcaileana/1/9_HQ80PHFYALOH8ZAQKBN9RDKBAG57SK.png", "image_urls": { "default": "https://api.plotly.com/v2/files/smailcaileana:1/image?image_name=default", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/smailcaileana/1/8_GDNWU8EH28TW2VECXWWP906KX5VXJ6.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/smailcaileana/1/9_HQ80PHFYALOH8ZAQKBN9RDKBAG57SK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/smailcaileana:1", "plots": "https://api.plotly.com/v2/plots/smailcaileana:1", "parent": "https://api.plotly.com/v2/folders/home?user=smailcaileana" }, "owner": "smailcaileana", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~smailcaileana/1/", "world_readable": true, "date_modified": "2025-09-15T16:53:10.730Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~smailcaileana/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "be9318", "meta": { "columnNames": { "x": "Time", "y": "Distance Car A" } }, "mode": "markers", "name": "Car A", "type": "scatter", "xsrc": "smailcaileana:0:3def7c", "ysrc": "smailcaileana:0:1e422b" }, { "uid": "b11607", "meta": { "columnNames": { "x": "Time", "y": "Distance Car B" } }, "mode": "markers", "name": "Car B", "type": "scatter", "xsrc": "smailcaileana:0:3def7c", "ysrc": "smailcaileana:0:209b9c", "stackgroup": null }, { "uid": "14ba0b", "transforms": [ { "rms": "", "type": "fit", "inputUid": "be9318", "regressor": "x", "parameters": [ { "hold": false, "name": "m", "error": 0.2327730587586849, "value": 16.619111111109763 }, { "hold": false, "name": "b", "error": 3.3246642784392884, "value": 3.829555555578332 } ], "regressand": "y", "correlation": "", "fitfunction": "m*x + b", "inputxrange": [], "outputxrange": [], "interpolation": 50 } ] }, { "uid": "19200f", "transforms": [ { "rms": "", "type": "fit", "inputUid": "b11607", "regressor": "x", "parameters": [ { "hold": false, "name": "m", "error": 0.4077922859741759, "value": 34.11122222222247 }, { "hold": false, "name": "b", "error": 5.824438848002244, "value": -13.584666666671215 } ], "regressand": "y", "correlation": "", "fitfunction": "m*x + b", "inputxrange": [], "outputxrange": [], "interpolation": 50 } ] } ], "frames": [], "layout": { "title": { "text": "Distance vs Time" }, "xaxis": { "type": "linear", "range": [ -1.4958556801560217, 25.495855680156023 ], "title": { "text": "Time" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -70.33692077727952, 881.6369207772794 ], "title": { "text": "Distance" }, "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/~smailcaileana", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.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-09-15 16:50:01", "mapbox_access_tokens": null, "has_password": null, "username": "smailcaileana", "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-15T16:37:06.228598Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~mp27173/1.embed", "fid": "mp27173:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/mp27173/1/9_7DLBSYJFM17DHX3IC6L7GTLDZTNPG2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/mp27173/1/2_DJ91V86BAEA49XBBSZ7HO2D5RKD5O6.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mp27173/1/8_1A08J9J8B4XXUEXCE671Q48IP2C688.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mp27173/1/9_7DLBSYJFM17DHX3IC6L7GTLDZTNPG2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/mp27173:1", "plots": "https://api.plotly.com/v2/plots/mp27173:1", "parent": "https://api.plotly.com/v2/folders/home?user=mp27173" }, "owner": "mp27173", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~mp27173/1/", "world_readable": true, "date_modified": "2025-09-15T21:38:20.690Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~mp27173/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "error_y": { "array": "C" } } }, "mode": "markers", "type": "bar", "xsrc": "mp27173:0:1f5646", "ysrc": "mp27173:0:38ff5c", "error_y": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "visible": true, "arraysrc": "mp27173:0:d87eda", "symmetric": true }, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "spores vs. no spores" }, "xaxis": { "type": "category", "range": [ -0.5, 1.5 ], "title": { "text": "The soil that the chives grew in" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 11.418265924210525 ], "title": { "text": "The average height of the chives in cm" }, "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/~mp27173", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/63.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-08-29 16:09:21", "mapbox_access_tokens": null, "has_password": null, "username": "mp27173", "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-15T16:36:58.274499Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Madi1031/1.embed", "fid": "Madi1031:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Madi1031/1/9_HP6VQQP0ZB60H2E6YOPT9P2IF1HRW7.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Madi1031/1/2_G0UB0ZLUDCNM5X4SHOA5Q3GRYR1VPA.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Madi1031/1/8_APTTPT5EHNDX0FNXYEYUGCQVZ9H4VC.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Madi1031/1/9_HP6VQQP0ZB60H2E6YOPT9P2IF1HRW7.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Madi1031:1", "plots": "https://api.plotly.com/v2/plots/Madi1031:1", "parent": "https://api.plotly.com/v2/folders/home?user=Madi1031" }, "owner": "Madi1031", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Madi1031/1/", "world_readable": true, "date_modified": "2025-09-16T03:54:53.781Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Madi1031/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "error_x": { "array": "C" }, "error_y": { "array": "C" } } }, "mode": "markers", "type": "bar", "xsrc": "Madi1031:0:4fc788", "ysrc": "Madi1031:0:0076e2", "error_x": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "visible": true, "arraysrc": "Madi1031:0:a589e1", "symmetric": true }, "error_y": { "meta": { "columnNames": { "array": "C" } }, "type": "data", "visible": true, "arraysrc": "Madi1031:0:a589e1", "symmetric": true }, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Spores vs. No Spores" }, "xaxis": { "type": "category", "range": [ -0.5, 1.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 11.418265924210527 ], "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/~Madi1031", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-29 16:11:05", "mapbox_access_tokens": null, "has_password": null, "username": "Madi1031", "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-15T15:43:58.759772Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~tim_stuhec/34.embed", "fid": "tim_stuhec:34", "filename": "image-search-deployed-vs-new", "filetype": "plot", "img_url": "https://api.plotly.com/v2/files/tim_stuhec:34/image?image_name=list-thumb", "image_urls": { "default": "https://api.plotly.com/v2/files/tim_stuhec:34/image?image_name=default", "block-thumb": "https://api.plotly.com/v2/files/tim_stuhec:34/image?image_name=block-thumb", "list-thumb": "https://api.plotly.com/v2/files/tim_stuhec:34/image?image_name=list-thumb" }, "api_urls": { "files": "https://api.plotly.com/v2/files/tim_stuhec:34", "plots": "https://api.plotly.com/v2/plots/tim_stuhec:34", "parent": "https://api.plotly.com/v2/folders/home?user=tim_stuhec" }, "owner": "tim_stuhec", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~tim_stuhec/34/", "world_readable": true, "date_modified": "2025-09-18T00:01:58.636Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~tim_stuhec/34/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "fill": "toself", "line": { "color": "#636EFA", "width": 0 }, "mode": "lines", "name": "Deployed Model uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:e9c1aa", "ysrc": "tim_stuhec:50:655dea", "opacity": 1.0, "fillcolor": "rgba(99,110,250,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#636EFA", "width": 3 }, "mode": "lines+markers", "name": "Deployed Model", "type": "scatter", "xsrc": "tim_stuhec:50:927fbe", "ysrc": "tim_stuhec:50:88fda9", "marker": { "size": 3, "color": "#636EFA" }, "textsrc": "tim_stuhec:50:231584", "hoverinfo": "text" }, { "fill": "toself", "line": { "color": "#EF553B", "width": 0 }, "mode": "lines", "name": "context uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:256ff5", "ysrc": "tim_stuhec:50:f4c6f9", "opacity": 1.0, "fillcolor": "rgba(239,85,59,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#EF553B", "width": 3 }, "mode": "lines+markers", "name": "context", "type": "scatter", "xsrc": "tim_stuhec:50:51309a", "ysrc": "tim_stuhec:50:5fc5d7", "marker": { "size": 3, "color": "#EF553B" }, "textsrc": "tim_stuhec:50:5cd41d", "hoverinfo": "text" }, { "fill": "toself", "line": { "color": "#00CC96", "width": 0 }, "mode": "lines", "name": "OCR uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:4c58dc", "ysrc": "tim_stuhec:50:290d41", "opacity": 1.0, "fillcolor": "rgba(0,204,150,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#00CC96", "width": 3 }, "mode": "lines+markers", "name": "OCR", "type": "scatter", "xsrc": "tim_stuhec:50:f1db9e", "ysrc": "tim_stuhec:50:7602b4", "marker": { "size": 3, "color": "#00CC96" }, "textsrc": "tim_stuhec:50:35513b", "hoverinfo": "text" }, { "fill": "toself", "line": { "color": "#AB63FA", "width": 0 }, "mode": "lines", "name": "Image uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:339d63", "ysrc": "tim_stuhec:50:08b689", "opacity": 1.0, "fillcolor": "rgba(171,99,250,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#AB63FA", "width": 3 }, "mode": "lines+markers", "name": "Image", "type": "scatter", "xsrc": "tim_stuhec:50:18044f", "ysrc": "tim_stuhec:50:06b71b", "marker": { "size": 3, "color": "#AB63FA" }, "textsrc": "tim_stuhec:50:056871", "hoverinfo": "text" }, { "fill": "toself", "line": { "color": "#FFA15A", "width": 0 }, "mode": "lines", "name": "Image+OCR uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:aa504a", "ysrc": "tim_stuhec:50:836dc2", "opacity": 1.0, "fillcolor": "rgba(255,161,90,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#FFA15A", "width": 3 }, "mode": "lines+markers", "name": "Image+OCR", "type": "scatter", "xsrc": "tim_stuhec:50:a7f13f", "ysrc": "tim_stuhec:50:c46fac", "marker": { "size": 3, "color": "#FFA15A" }, "textsrc": "tim_stuhec:50:83962c", "hoverinfo": "text" }, { "fill": "toself", "line": { "color": "#19D3F3", "width": 0 }, "mode": "lines", "name": "Image+OCR+context uncertainty", "type": "scatter", "xsrc": "tim_stuhec:50:c9e078", "ysrc": "tim_stuhec:50:bbfba3", "opacity": 1.0, "fillcolor": "rgba(25,211,243,0.3)", "hoverinfo": "text", "showlegend": false }, { "line": { "color": "#19D3F3", "width": 3 }, "mode": "lines+markers", "name": "Image+OCR+context", "type": "scatter", "xsrc": "tim_stuhec:50:fc29e7", "ysrc": "tim_stuhec:50:12ea2f", "marker": { "size": 3, "color": "#19D3F3" }, "textsrc": "tim_stuhec:50:d19ca8", "hoverinfo": "text" } ], "layout": { "title": { "text": "Evaluating Image Retrieval with Precision-Recall Curve" }, "xaxis": { "minor": { "dtick": 0.05, "showgrid": true, "gridcolor": "rgb(230,230,230)", "gridwidth": 0.5 }, "range": [ 0.0, 1.05 ], "title": { "text": "Retrieval Recall" }, "mirror": true, "gridcolor": "LightGrey", "gridwidth": 1, "linecolor": "black", "linewidth": 1, "tickformat": ".0%" }, "yaxis": { "minor": { "dtick": 0.05, "showgrid": true, "gridcolor": "rgb(230,230,230)", "gridwidth": 0.5 }, "range": [ 0.0, 1.05 ], "title": { "text": "Retrieval Precision@1" }, "mirror": true, "gridcolor": "LightGrey", "gridwidth": 1, "linecolor": "black", "linewidth": 1, "tickformat": ".0%" }, "height": 700, "legend": { "x": 0.02, "y": 0.02, "xanchor": "left", "yanchor": "bottom", "bordercolor": "Black", "borderwidth": 1 }, "shapes": [ { "x0": 0.05, "x1": 0.05, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.1, "x1": 0.1, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.15000000000000002, "x1": 0.15000000000000002, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.2, "x1": 0.2, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.25, "x1": 0.25, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.3, "x1": 0.3, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.35000000000000003, "x1": 0.35000000000000003, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.4, "x1": 0.4, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.45, "x1": 0.45, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.5, "x1": 0.5, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.55, "x1": 0.55, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.6000000000000001, "x1": 0.6000000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.6500000000000001, "x1": 0.6500000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.7000000000000001, "x1": 0.7000000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.7500000000000001, "x1": 0.7500000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.8, "x1": 0.8, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.8500000000000001, "x1": 0.8500000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.9000000000000001, "x1": 0.9000000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0.9500000000000001, "x1": 0.9500000000000001, "y0": 0, "y1": 1.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "x", "yref": "paper", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.05, "y1": 0.05, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.1, "y1": 0.1, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.15000000000000002, "y1": 0.15000000000000002, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.2, "y1": 0.2, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.25, "y1": 0.25, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.3, "y1": 0.3, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.35000000000000003, "y1": 0.35000000000000003, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.4, "y1": 0.4, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.45, "y1": 0.45, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.5, "y1": 0.5, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.55, "y1": 0.55, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.6000000000000001, "y1": 0.6000000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.6500000000000001, "y1": 0.6500000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.7000000000000001, "y1": 0.7000000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.7500000000000001, "y1": 0.7500000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.8, "y1": 0.8, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.8500000000000001, "y1": 0.8500000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.9000000000000001, "y1": 0.9000000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" }, { "x0": 0, "x1": 1.05, "y0": 0.9500000000000001, "y1": 0.9500000000000001, "line": { "color": "rgb(230,230,230)", "width": 0.5 }, "type": "line", "xref": "paper", "yref": "y", "layer": "below" } ], "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 } } } ], "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 } } } ], "scattermap": [ { "type": "scattermap", "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 } } }, "plot_bgcolor": "white" } }, "height": 700, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~tim_stuhec", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-09 07:40:53", "mapbox_access_tokens": null, "has_password": null, "username": "tim_stuhec", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "