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=cD0yMDI0LTA0LTE4KzEzJTNBMTYlM0ExNS4xNTY0MTklMkIwMCUzQTAw&format=api
https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE4KzExJTNBNTUlM0EwOS4xMTQ2NjQlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOCsxMyUzQTEyJTNBMTQuNjkxNjYyJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-18T13:12:14.691662Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Lizzy2007/4.embed", "fid": "Lizzy2007:4", "filename": "Plot 4", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/4/9_1KRVT9O02135Z5N3DMZP4MQ3G4ACZ9.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/4/2_ATA95GG7PK0QJN03P5RMONWZ6SU3YV.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/4/8_BVF7Y9KHZKGM4VGZJAAB44F6845GSN.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/4/9_1KRVT9O02135Z5N3DMZP4MQ3G4ACZ9.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Lizzy2007:4", "plots": "https://api.plotly.com/v2/plots/Lizzy2007:4", "parent": "https://api.plotly.com/v2/folders/home?user=Lizzy2007" }, "owner": "Lizzy2007", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Lizzy2007/4/", "world_readable": true, "date_modified": "2024-04-18T13:12:14.702Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Lizzy2007/4/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "type": "scatter", "xsrc": "Lizzy2007:2:cbeffc", "ysrc": "Lizzy2007:2:cd95b9" } ], "frames": [], "layout": { "title": { "text": "" }, "xaxis": { "type": "category", "range": [ -0.3161873156342182, 5.3161873156342185 ], "title": { "text": "volume of HCl added (ml)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 6.95665914221219, 10.24334085778781 ], "title": { "text": "pH" }, "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/~Lizzy2007", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2024-02-26 09:34:00", "mapbox_access_tokens": null, "has_password": null, "username": "Lizzy2007", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:57:28.300271Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Lizzy2007/3.embed", "fid": "Lizzy2007:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/3/9_CYQVNSWH3D0GPKRCMV88CPCFU5PH1X.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/3/2_4FND3LVS8D2EXHHBB17I7DVINFFHTI.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/3/8_Q4XCP7UMUKIEZZW8PU2QBCBLFJMIGY.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Lizzy2007/3/9_CYQVNSWH3D0GPKRCMV88CPCFU5PH1X.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Lizzy2007:3", "plots": "https://api.plotly.com/v2/plots/Lizzy2007:3", "parent": "https://api.plotly.com/v2/folders/home?user=Lizzy2007" }, "owner": "Lizzy2007", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Lizzy2007/3/", "world_readable": true, "date_modified": "2024-04-18T13:12:12.070Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Lizzy2007/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "type": "scatter", "xsrc": "Lizzy2007:2:cbeffc", "ysrc": "Lizzy2007:2:cd95b9" } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "category", "range": [ -0.3113907712165215, 5.311390771216521 ], "title": { "text": "hydrochloric acid added." }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 6.96426116838488, 10.23573883161512 ], "title": { "text": "Ph" }, "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/~Lizzy2007", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2024-02-26 09:34:00", "mapbox_access_tokens": null, "has_password": null, "username": "Lizzy2007", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:53:22.503264Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~dianamindroc/9.embed", "fid": "dianamindroc:9", "filename": "test2", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/9/9_B80S3WYYB07PFI3YAUEGH8VJDA07SR.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/9/2_F3T7QLNLODNQ4EWD9R9GMUHMJIYW0C.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/9/8_52H7S8BN8BN6LY0OEXCE46YE6XHSVC.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dianamindroc/9/9_B80S3WYYB07PFI3YAUEGH8VJDA07SR.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/dianamindroc:9", "plots": "https://api.plotly.com/v2/plots/dianamindroc:9", "parent": "https://api.plotly.com/v2/folders/home?user=dianamindroc" }, "owner": "dianamindroc", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 16, "web_url": "https://chart-studio.plotly.com/~dianamindroc/9/", "world_readable": true, "date_modified": "2024-04-18T13:49:53.497Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~dianamindroc/9/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "name": "predicted_0", "type": "scatter3d", "xsrc": "dianamindroc:15:f2f357", "ysrc": "dianamindroc:15:f5e7bf", "zsrc": "dianamindroc:15:641e9c", "scene": "scene", "marker": { "size": 2, "color": "darkturquoise", "opacity": 0.5 } }, { "mode": "markers+text", "name": "Center of Mass_pred_0", "type": "scatter3d", "xsrc": "dianamindroc:15:ad9d4f", "ysrc": "dianamindroc:15:2061ef", "zsrc": "dianamindroc:15:0567fb", "scene": "scene", "marker": { "size": 7, "color": "yellow", "symbol": "diamond", "opacity": 0.7 }, "textsrc": "dianamindroc:15:21f9f6", "textposition": "top center" }, { "mode": "markers", "name": "ground truth_0", "type": "scatter3d", "xsrc": "dianamindroc:15:fbef78", "ysrc": "dianamindroc:15:1b4e08", "zsrc": "dianamindroc:15:fa837c", "scene": "scene", "marker": { "size": 2, "color": "red", "opacity": 0.5 } }, { "mode": "markers+text", "name": "Center of Mass_gt_0", "type": "scatter3d", "xsrc": "dianamindroc:15:60b0bc", "ysrc": "dianamindroc:15:87a617", "zsrc": "dianamindroc:15:3187b0", "scene": "scene", "marker": { "size": 7, "color": "green", "symbol": "diamond", "opacity": 0.7 }, "textsrc": "dianamindroc:15:7c07d0", "textposition": "top center" }, { "mode": "markers", "name": "predicted_1", "type": "scatter3d", "xsrc": "dianamindroc:15:3721b5", "ysrc": "dianamindroc:15:4834e6", "zsrc": "dianamindroc:15:52e30a", "scene": "scene2", "marker": { "size": 2, "color": "darkturquoise", "opacity": 0.5 } }, { "mode": "markers+text", "name": "Center of Mass_pred_1", "type": "scatter3d", "xsrc": "dianamindroc:15:e14136", "ysrc": "dianamindroc:15:112f42", "zsrc": "dianamindroc:15:4809ce", "scene": "scene2", "marker": { "size": 7, "color": "yellow", "symbol": "diamond", "opacity": 0.7 }, "textsrc": "dianamindroc:15:aa0613", "textposition": "top center" }, { "mode": "markers", "name": "ground truth_1", "type": "scatter3d", "xsrc": "dianamindroc:15:5667a9", "ysrc": "dianamindroc:15:e7f2cd", "zsrc": "dianamindroc:15:b3cbc8", "scene": "scene2", "marker": { "size": 2, "color": "red", "opacity": 0.5 } }, { "mode": "markers+text", "name": "Center of Mass_gt_1", "type": "scatter3d", "xsrc": "dianamindroc:15:4804bb", "ysrc": "dianamindroc:15:c0004b", "zsrc": "dianamindroc:15:53482a", "scene": "scene2", "marker": { "size": 7, "color": "green", "symbol": "diamond", "opacity": 0.7 }, "textsrc": "dianamindroc:15:16d804", "textposition": "top center" } ], "layout": { "scene": { "xaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "yaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "zaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "domain": { "x": [ 0.0, 0.49 ], "y": [ 0.0, 1.0 ] } }, "scene2": { "xaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "yaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "zaxis": { "title": { "font": { "size": 4 } }, "showticklabels": false }, "domain": { "x": [ 0.51, 1.0 ], "y": [ 0.0, 1.0 ] } }, "template": { "data": { "scatter3d": [ { "type": "scatter3d", "marker": { "color": "gray" } } ] }, "layout": { "font": { "size": 16, "color": "#FFFFFF", "family": "Helvetica Neue, Helvetica, Sans-serif" }, "title": { "font": { "size": 30, "color": "#FFFFFF", "family": "HelveticaNeue-CondensedBold, Helvetica, Sans-serif" } }, "colorway": [ "#ec7424", "#a4abab" ], "hovermode": "closest", "plot_bgcolor": "#000000", "paper_bgcolor": "#000000" } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~dianamindroc", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.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": "2021-03-11 09:16:37", "mapbox_access_tokens": null, "has_password": null, "username": "dianamindroc", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:51:08.089238Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~cmaric/3.embed", "fid": "cmaric:3", "filename": "CNV deciles", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/cmaric/3/9_AORW0CGR7TKPC0XFJO4W484FQLMYO4.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/cmaric/3/2_S52XXM5O5X6M623FS0239W87BHZWKK.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cmaric/3/8_1QB3YPB3R8D3N3HJ4GRQKXFB4ZLKA4.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cmaric/3/9_AORW0CGR7TKPC0XFJO4W484FQLMYO4.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/cmaric:3", "plots": "https://api.plotly.com/v2/plots/cmaric:3", "parent": "https://api.plotly.com/v2/folders/home?user=cmaric" }, "owner": "cmaric", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~cmaric/3/", "world_readable": true, "date_modified": "2024-04-18T12:52:38.106Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~cmaric/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "y": "ori" } }, "name": "ori", "type": "box", "ysrc": "cmaric:2:3f3007", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "orientation": "v", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "decile 1et2" } }, "name": "decile 1et2", "type": "box", "ysrc": "cmaric:2:90e60e", "xaxis": "x", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "decile 3et4" } }, "name": "decile 3et4", "type": "box", "ysrc": "cmaric:2:dfe594", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "decile 5et6" } }, "name": "decile 5et6", "type": "box", "ysrc": "cmaric:2:555284", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "decile 7et8" } }, "name": "decile 7et8", "type": "box", "ysrc": "cmaric:2:891665", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "decile 9et10" } }, "name": "decile 9et10", "type": "box", "ysrc": "cmaric:2:4a0b4c", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "Ori K562" } }, "name": "Ori K562", "type": "box", "ysrc": "cmaric:2:d9dfad", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "Random" } }, "name": "Random", "type": "box", "ysrc": "cmaric:2:97d4fd", "marker": { "color": "rgb(192, 192, 192)" }, "boxmean": true, "boxpoints": "outliers", "whiskerwidth": 0.29 } ], "frames": [], "layout": { "title": { "text": "CNV deciles" }, "xaxis": { "type": "category", "range": [ -0.5, 7.5 ], "title": { "text": "Click to enter X axis title" }, "showgrid": false, "autorange": true, "showspikes": true, "rangeslider": { "range": [ -0.5, 2.5 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": false }, "yaxis": { "type": "linear", "range": [ -1.137151889377867, 21.60588589817947 ], "autorange": true, "showspikes": true }, "boxgap": 0.71, "legend": { "traceorder": "normal" }, "boxmode": "overlay", "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" }, "hovermode": "closest", "showlegend": true, "boxgroupgap": 0.29 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~cmaric", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-17 09:46:14", "mapbox_access_tokens": null, "has_password": null, "username": "cmaric", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:43:24.981654Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~m_jude/1.embed", "fid": "m_jude:1", "filename": "Tension", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/m_jude/1/9_IRYDECER1KMXCTCM1O6INTIZNP85QU.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/m_jude/1/2_J2E4WRQY6PC84DAIWGIJZNJRTZKSPQ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/m_jude/1/8_ZFOQMO6CBHBOIFBAYMDH4DO9RVHGC5.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/m_jude/1/9_IRYDECER1KMXCTCM1O6INTIZNP85QU.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/m_jude:1", "plots": "https://api.plotly.com/v2/plots/m_jude:1", "parent": "https://api.plotly.com/v2/folders/home?user=m_jude" }, "owner": "m_jude", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~m_jude/1/", "world_readable": true, "date_modified": "2024-04-18T12:43:24.992Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~m_jude/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "intensity": "C" } }, "mode": "lines", "type": "scatter3d", "xsrc": "m_jude:0:b9936d", "ysrc": "m_jude:0:26e713", "zsrc": "m_jude:0:ba444a", "intensitysrc": "m_jude:0:ba444a" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 1.090711292929368, "y": -0.6590079666672118, "z": 0.35137543174805796 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "domain": { "x": [ 0, 1 ], "y": [ 0.375, 1 ] }, "dragmode": "turntable", "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "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/~m_jude", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-18 12:41:01", "mapbox_access_tokens": null, "has_password": null, "username": "m_jude", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:38:45.520563Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~huutai355/11.embed", "fid": "huutai355:11", "filename": "Heave", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/huutai355/11/9_6SWKEEC927M4RLWT0AML53ILFFFVMK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/huutai355/11/2_7SJJKXKZSYSE68VGXGJYITEP9LJYKH.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/huutai355/11/8_2VNA0XAS6U2ZN8Y1RE0ALCDO09GNOQ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/huutai355/11/9_6SWKEEC927M4RLWT0AML53ILFFFVMK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/huutai355:11", "plots": "https://api.plotly.com/v2/plots/huutai355:11", "parent": "https://api.plotly.com/v2/folders/home?user=huutai355" }, "owner": "huutai355", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~huutai355/11/", "world_readable": true, "date_modified": "2024-04-18T12:38:45.530Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~huutai355/11/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "width": 2 }, "meta": { "columnNames": { "y": "A" } }, "mode": "markers", "name": "4mps<br>", "type": "box", "ysrc": "huutai355:8:8a9e1e", "width": 0, "boxmean": false, "visible": true, "boxpoints": false, "hoverinfo": "x+y+name", "hoverlabel": { "namelength": 15 }, "legendgroup": 1, "orientation": "v", "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "B" } }, "name": "trace 1", "type": "box", "ysrc": "huutai355:8:064c69", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "C" } }, "type": "box", "ysrc": "huutai355:8:8e1db5", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "D" } }, "name": "trace 3", "type": "box", "ysrc": "huutai355:8:ccc38d", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "E" } }, "type": "box", "ysrc": "huutai355:8:033854", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "F" } }, "type": "box", "ysrc": "huutai355:8:666f26", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "G" } }, "type": "box", "ysrc": "huutai355:8:981888", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "H" } }, "type": "box", "ysrc": "huutai355:8:6934db", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "I" } }, "type": "box", "ysrc": "huutai355:8:3b4d82", "width": 0, "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "J" } }, "type": "box", "ysrc": "huutai355:8:2e46a5", "width": 0, "xaxis": "x", "visible": true, "boxpoints": false, "legendgroup": 1, "orientation": "v", "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "A" } }, "type": "box", "ysrc": "huutai355:10:720489", "width": 0, "xaxis": "x2", "yaxis": "y", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "B" } }, "type": "box", "ysrc": "huutai355:8:064c69", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "C" } }, "type": "box", "ysrc": "huutai355:10:fd6118", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "D" } }, "type": "box", "ysrc": "huutai355:10:9769ab", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "E" } }, "type": "box", "ysrc": "huutai355:10:f543e8", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "F" } }, "type": "box", "ysrc": "huutai355:10:5ff193", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "G" } }, "type": "box", "ysrc": "huutai355:10:b66886", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "H" } }, "type": "box", "ysrc": "huutai355:10:6146c6", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "I" } }, "type": "box", "ysrc": "huutai355:10:9bf25f", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 }, { "line": { "width": 2 }, "meta": { "columnNames": { "y": "J" } }, "type": "box", "ysrc": "huutai355:10:cd1f9c", "width": 0, "xaxis": "x2", "visible": true, "boxpoints": false, "legendgroup": 1, "whiskerwidth": 0.46 } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -0.5, 9.5 ], "anchor": "y", "showgrid": false, "showline": false, "zeroline": false, "autorange": false }, "yaxis": { "type": "linear", "range": [ -1.3252944444444443, 0.6905944444444444 ], "anchor": "x", "autorange": true }, "boxgap": 0.5900000000000001, "legend": { "x": 1.02, "y": 1.0775681341719077 }, "xaxis2": { "side": "top", "type": "category", "range": [ -0.5, 9.5 ], "autorange": true, "overlaying": "x" }, "boxmode": "overlay", "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" }, "boxgroupgap": 0.31 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~huutai355", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-09 11:14:42", "mapbox_access_tokens": null, "has_password": null, "username": "huutai355", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:36:31.540115Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~labheshnp888/4.embed", "fid": "labheshnp888:4", "filename": "HRR Valid", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/labheshnp888/4/9_A03X597QW34U2X7W96AITED26R9IMQ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/labheshnp888/4/2_C2NC4TM8XERXC642991710BW4FHV5S.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/labheshnp888/4/8_HNQNUN6Z9JZVINHAS8P7GLAGOT95LV.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/labheshnp888/4/9_A03X597QW34U2X7W96AITED26R9IMQ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/labheshnp888:4", "plots": "https://api.plotly.com/v2/plots/labheshnp888:4", "parent": "https://api.plotly.com/v2/folders/home?user=labheshnp888" }, "owner": "labheshnp888", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~labheshnp888/4/", "world_readable": true, "date_modified": "2024-04-18T13:55:43.526Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~labheshnp888/4/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "25e235", "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "<b>Simulation</b>", "type": "scatter", "xsrc": "labheshnp888:3:db0c49", "ysrc": "labheshnp888:3:7b8a2f" }, { "uid": "b8c560", "meta": { "columnNames": { "x": "C", "y": "D" } }, "mode": "lines", "name": "<b>Test data</b>", "type": "scatter", "xsrc": "labheshnp888:3:2e527d", "ysrc": "labheshnp888:3:e2a83c", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ -53.35351470588235, 145.82385529411764 ], "title": { "text": "<b>Crank Angle (degree)</b>" }, "zeroline": false, "autorange": false }, "yaxis": { "type": "linear", "range": [ -1.2930670555555557, 24.559014055555558 ], "title": { "text": "<b>HRR (J/deg)</b>" }, "zeroline": true, "autorange": false }, "legend": { "x": 0.4793379350573595, "y": 0.7538167938931297 }, "autosize": true, "dragmode": "pan" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~labheshnp888", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/12.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": "2024-04-18 09:24:15", "mapbox_access_tokens": null, "has_password": null, "username": "labheshnp888", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T12:23:53.964375Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~obowman25/1.embed", "fid": "obowman25:1", "filename": "BOX 12", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/obowman25/1/9_MJB40QSO531XGM502XL453C98TT2CB.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/obowman25/1/2_7SSFDWYBRGXSB71AA2KOVQ290DE38Y.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/obowman25/1/8_9G6TN9VLRMWN859ZI02QRSSAVY84GP.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/obowman25/1/9_MJB40QSO531XGM502XL453C98TT2CB.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/obowman25:1", "plots": "https://api.plotly.com/v2/plots/obowman25:1", "parent": "https://api.plotly.com/v2/folders/home?user=obowman25" }, "owner": "obowman25", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~obowman25/1/", "world_readable": true, "date_modified": "2024-04-22T14:46:08.985Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~obowman25/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R" } }, "mode": "markers", "type": "surface", "xsrc": "obowman25:0:6c3a27", "ysrc": "obowman25:0:241f40", "zsrc": "obowman25:0:5dddab,1b78a0,479e77,1273ea,4dc8d3,e438f2,74c688,42d4c7,2a7695,4596ce,238b7b,4644b4,65b1d2,42cd92,9af64b,2df766" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": 0.8202684869007612, "y": -0.1524711020034716, "z": -0.5512822983294343 }, "eye": { "x": -1.3788277855734907, "y": 0.07508143458236127, "z": -1.7786671775216394 }, "center": { "x": -0.04975811339335669, "y": 0.6007084310729603, "z": 0.05351761173783511 }, "projection": { "type": "perspective" } }, "dragmode": "orbit", "aspectmode": "auto", "aspectratio": { "x": 1.7784466522450317, "y": 1.1856311014966876, "z": 0.4742524405986751 } }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "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/~obowman25", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.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": "2024-04-18 12:00:08", "mapbox_access_tokens": null, "has_password": null, "username": "obowman25", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T11:59:28.032607Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~xtraid1912/1.embed", "fid": "xtraid1912:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/xtraid1912/1/9_OSKW892RAM6YU4WQPGSWO8KGWZ9VFS.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/xtraid1912/1/2_NLHIAHE3T6DPAHQR4YGFRW68L51GZ3.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xtraid1912/1/8_IINGYOA9TG0TI704VGKNVZJ5I12MXT.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xtraid1912/1/9_OSKW892RAM6YU4WQPGSWO8KGWZ9VFS.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/xtraid1912:1", "plots": "https://api.plotly.com/v2/plots/xtraid1912:1", "parent": "https://api.plotly.com/v2/folders/home?user=xtraid1912" }, "owner": "xtraid1912", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~xtraid1912/1/", "world_readable": true, "date_modified": "2024-04-18T11:59:28.046Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~xtraid1912/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "type": "scatter", "xsrc": "xtraid1912:0:94778c", "ysrc": "xtraid1912:0:a13613" } ], "frames": [], "layout": { "title": { "text": "Torque vs Angular Acceleration" }, "xaxis": { "type": "linear", "range": [ 7.0397058823529415, 61.76029411764706 ], "title": { "text": "Angular Acceleration (rad/s^2)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0.023988200238379026, 0.16381179976162097 ], "title": { "text": "Torque (Nm)" }, "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/~xtraid1912", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.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": "2024-04-18 11:59:11", "mapbox_access_tokens": null, "has_password": null, "username": "xtraid1912", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-18T11:55:09.114664Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~cmaric/1.embed", "fid": "cmaric:1", "filename": "CNV", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/cmaric/1/9_9Q1SFSXX1HZ41V7ZKCZJOQNYH96QQ6.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/cmaric/1/2_HXIVAC6P5ZWCNB24WCDUDR4D0QA2VA.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cmaric/1/8_P1FS8H70XLT7H6Q4J0D7GP05SW6NQM.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cmaric/1/9_9Q1SFSXX1HZ41V7ZKCZJOQNYH96QQ6.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/cmaric:1", "plots": "https://api.plotly.com/v2/plots/cmaric:1", "parent": "https://api.plotly.com/v2/folders/home?user=cmaric" }, "owner": "cmaric", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~cmaric/1/", "world_readable": true, "date_modified": "2024-04-18T11:55:09.124Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~cmaric/1/", "current_user_permission": "read", "is_theme": null, "is_template": true, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "y": "Std" } }, "mode": "markers", "name": "Std", "type": "box", "ysrc": "cmaric:0:30cb49", "jitter": 0.08, "marker": { "line": { "color": "rgb(197, 197, 197)" }, "color": "rgb(173, 173, 175)", "symbol": "circle" }, "boxmean": true, "hoveron": "boxes+points", "notched": false, "pointpos": 0, "boxpoints": "outliers", "hoverlabel": { "namelength": 15 }, "showlegend": false, "whiskerwidth": 0.29 }, { "meta": { "columnNames": { "y": "Stress" } }, "name": "Stress", "type": "box", "ysrc": "cmaric:0:6533fc", "marker": { "color": "rgb(198, 198, 198)" }, "boxmean": true, "boxpoints": "outliers", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": 15 }, "showlegend": true, "legendgroup": "" }, { "meta": { "columnNames": { "y": "Random" } }, "name": "Random", "type": "box", "ysrc": "cmaric:0:a6992f", "marker": { "color": "rgb(202, 204, 203)" }, "boxmean": true, "boxpoints": "outliers", "hoverlabel": { "namelength": 15 }, "showlegend": false } ], "frames": [], "layout": { "title": { "text": "CNV" }, "xaxis": { "type": "linear", "range": [ -0.5, 2.5 ], "showgrid": false, "autorange": true, "showspikes": true, "rangeslider": { "range": [ -0.5, 2.5 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": false }, "yaxis": { "type": "linear", "range": [ -0.17728534998964446, 3.368421649803244 ], "autorange": true, "showspikes": true }, "boxgap": 0.71, "legend": { "itemsizing": "trace", "traceorder": "normal" }, "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" }, "hovermode": "closest", "showlegend": true, "boxgroupgap": 0.29 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~cmaric", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-17 09:46:14", "mapbox_access_tokens": null, "has_password": null, "username": "cmaric", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "