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=cj0xJnA9MjAyNC0wNC0yNSsyMyUzQTI4JTNBMTkuMDMwNDAwJTJCMDAlM0EwMA%3D%3D&format=api
https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI1KzIzJTNBNTglM0ExMi41MzE5MzglMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNiswMSUzQTQwJTNBNTUuMTgzMjg0JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-26T01:40:55.183284Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~shiderbush/4.embed", "fid": "shiderbush:4", "filename": "Plot 4", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/shiderbush/4/9_KHJ994BRGR12ZO5TCOJ4T0IYBEXXW2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/shiderbush/4/2_9KM495R148I28AJQDHQ6SR83P5G0SL.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shiderbush/4/8_QZ5FF8D8ZW2WUNBYVJJ9KOCTZKSS2V.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shiderbush/4/9_KHJ994BRGR12ZO5TCOJ4T0IYBEXXW2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/shiderbush:4", "plots": "https://api.plotly.com/v2/plots/shiderbush:4", "parent": "https://api.plotly.com/v2/folders/home?user=shiderbush" }, "owner": "shiderbush", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~shiderbush/4/", "world_readable": true, "date_modified": "2024-04-26T01:40:55.195Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~shiderbush/4/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "y": "Alat elektronik" } }, "mode": "lines", "name": "%{meta.columnNames.y}", "type": "scatter", "ysrc": "shiderbush:3:5cd689", "stackgroup": null }, { "meta": { "columnNames": { "y": "Waktu (WIB)" } }, "mode": "lines", "name": "%{meta.columnNames.y}", "type": "scatter", "ysrc": "shiderbush:3:3a3393", "stackgroup": null }, { "meta": { "columnNames": { "y": "Daya yang terukur (W)" } }, "mode": "lines", "name": "%{meta.columnNames.y}", "type": "scatter", "ysrc": "shiderbush:3:13adba", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "range": [ 0, 23 ], "autorange": true }, "yaxis": { "type": "category", "range": [ -2.5000000000000004, 47.5 ], "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/~shiderbush", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.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-04-26 00:59:21", "mapbox_access_tokens": null, "has_password": null, "username": "shiderbush", "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-26T01:36:18.489371Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~rrg92/1.embed", "fid": "rrg92:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/rrg92/1/9_GX9RVRU2QW2H73LTFR8L8LE74XTUEK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/rrg92/1/2_OAH8816TOYNLEWCQ7YX0OUSXX0V5BY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rrg92/1/8_4VGL4XIXY21CI1IDGCM44FIOSRMQ23.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rrg92/1/9_GX9RVRU2QW2H73LTFR8L8LE74XTUEK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/rrg92:1", "plots": "https://api.plotly.com/v2/plots/rrg92:1", "parent": "https://api.plotly.com/v2/folders/home?user=rrg92" }, "owner": "rrg92", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~rrg92/1/", "world_readable": true, "date_modified": "2024-04-26T01:36:18.507Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~rrg92/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Area", "y": "Preco" } }, "mode": "lines", "type": "scatter", "xsrc": "rrg92:0:00f9fb", "ysrc": "rrg92:0:7a204f" } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ -0.3113865220759101, 0.21456235476374896 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ 0.8249045801526718, 1.9508587786259541 ], "autorange": false }, "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/~rrg92", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.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": "2024-04-26 01:36:01", "mapbox_access_tokens": null, "has_password": null, "username": "rrg92", "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-26T01:34:17.701924Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~shiderbush/2.embed", "fid": "shiderbush:2", "filename": "Plot 2", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/shiderbush/2/9_RI3MK6J4NWGCY59W0Z1CW2KAG0M938.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/shiderbush/2/2_IE7EG5DYH8P1ZSNZSWUNG4IF92P0AT.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shiderbush/2/8_W93R47FIOT3CVPDTW33NOC7N9IP4D0.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shiderbush/2/9_RI3MK6J4NWGCY59W0Z1CW2KAG0M938.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/shiderbush:2", "plots": "https://api.plotly.com/v2/plots/shiderbush:2", "parent": "https://api.plotly.com/v2/folders/home?user=shiderbush" }, "owner": "shiderbush", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~shiderbush/2/", "world_readable": true, "date_modified": "2024-04-26T01:34:17.715Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~shiderbush/2/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Waktu (WIB)", "y": "Daya yang terukur (W)" } }, "mode": "markers", "type": "bar", "xsrc": "shiderbush:1:b800c2", "ysrc": "shiderbush:1:fbfb2d", "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Grafik Charger HP" }, "xaxis": { "type": "category", "range": [ -0.5, 5.5 ], "autorange": true }, "yaxis": { "type": "category", "range": [ -0.1111111111111111, 2.111111111111111 ], "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/~shiderbush", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/83.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-04-26 00:59:21", "mapbox_access_tokens": null, "has_password": null, "username": "shiderbush", "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-26T01:32:27.982034Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~deckar01/81.embed", "fid": "deckar01:81", "filename": "AC Filters", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/deckar01/81/9_ZPO3M8JC4NUUACTV9VDTL61SUO9HXN.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/deckar01/81/2_TE614I6YLWQSJAE52PPRKIOBZO0DSE.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/deckar01/81/8_B65IM4GNUK9CHUNJ2XO7GDVG19ATXI.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/deckar01/81/9_ZPO3M8JC4NUUACTV9VDTL61SUO9HXN.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/deckar01:81", "plots": "https://api.plotly.com/v2/plots/deckar01:81", "parent": "https://api.plotly.com/v2/folders/home?user=deckar01" }, "owner": "deckar01", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 4, "web_url": "https://chart-studio.plotly.com/~deckar01/81/", "world_readable": true, "date_modified": "2024-04-30T08:09:33.397Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~deckar01/81/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgb(80, 80, 80)" }, "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "marker": { "size": "D", "color": "E" } } }, "mode": "markers+lines", "name": "LPF (RC1)", "type": "scatter3d", "xsrc": "deckar01:83:f280e2", "ysrc": "deckar01:83:57c805", "zsrc": "deckar01:83:80ba3b", "marker": { "cmax": 0.78, "cmin": -0.78, "line": { "width": 0 }, "meta": { "columnNames": { "size": "D", "color": "E" } }, "cauto": false, "opacity": 1, "sizeref": 0.05, "sizesrc": "deckar01:83:4ecc92", "colorsrc": "deckar01:83:0d2e3e", "sizemode": "area", "colorscale": [ [ 0, "#9e0142" ], [ 0.1, "#d53e4f" ], [ 0.2, "#f46d43" ], [ 0.3, "#fdae61" ], [ 0.4, "#fee08b" ], [ 0.5, "#ffffbf" ], [ 0.6, "#e6f598" ], [ 0.7, "#abdda4" ], [ 0.8, "#66c2a5" ], [ 0.9, "#3288bd" ], [ 1, "#5e4fa2" ] ] }, "visible": true, "projection": { "x": { "show": false, "scale": 1, "opacity": 1 }, "y": { "show": false, "scale": 1, "opacity": 1 }, "z": { "show": false, "scale": 1, "opacity": 1 } }, "connectgaps": false, "autocolorscale": false }, { "line": { "color": "rgb(195, 195, 195)", "width": 2 }, "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "marker": { "size": "D", "color": "E" } } }, "mode": "markers+lines", "name": "HPF (RC1)", "type": "scatter3d", "xsrc": "deckar01:84:385bc3", "ysrc": "deckar01:84:7a4f93", "zsrc": "deckar01:84:d0f4ba", "marker": { "cmax": 0.78, "cmin": -0.78, "line": { "width": 0 }, "meta": { "columnNames": { "size": "D", "color": "E" } }, "cauto": false, "opacity": 1, "sizeref": 0.05, "sizesrc": "deckar01:84:cf85b3", "colorsrc": "deckar01:84:06e784", "sizemode": "area", "colorscale": [ [ 0, "#9e0142" ], [ 0.1, "#d53e4f" ], [ 0.2, "#f46d43" ], [ 0.3, "#fdae61" ], [ 0.4, "#fee08b" ], [ 0.5, "#ffffbf" ], [ 0.6, "#e6f598" ], [ 0.7, "#abdda4" ], [ 0.8, "#66c2a5" ], [ 0.9, "#3288bd" ], [ 1, "#5e4fa2" ] ] }, "visible": true, "projection": { "x": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "y": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "z": { "show": false, "scale": 0.6666666666666666, "opacity": 1 } }, "autocolorscale": false }, { "line": { "dash": "dot", "color": "rgb(195, 195, 195)", "width": 4 }, "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "marker": { "size": "D", "color": "E" } } }, "mode": "markers+lines", "name": "BPF (S2)", "type": "scatter3d", "xsrc": "deckar01:85:c5eb96", "ysrc": "deckar01:85:00ff28", "zsrc": "deckar01:85:03c58c", "marker": { "cmax": 0.78, "cmin": -0.78, "line": { "width": 0 }, "meta": { "columnNames": { "size": "D", "color": "E" } }, "cauto": false, "opacity": 1, "sizeref": 0.05, "sizesrc": "deckar01:85:19ebbb", "colorsrc": "deckar01:85:324d6a", "sizemode": "area", "colorscale": [ [ 0, "#9e0142" ], [ 0.1, "#d53e4f" ], [ 0.2, "#f46d43" ], [ 0.3, "#fdae61" ], [ 0.4, "#fee08b" ], [ 0.5, "#ffffbf" ], [ 0.6, "#e6f598" ], [ 0.7, "#abdda4" ], [ 0.8, "#66c2a5" ], [ 0.9, "#3288bd" ], [ 1, "#5e4fa2" ] ] }, "visible": true, "projection": { "x": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "y": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "z": { "show": false, "scale": 0.6666666666666666, "opacity": 1 } }, "autocolorscale": false }, { "line": { "dash": "dot", "color": "rgb(80, 80, 80)", "width": 4 }, "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "marker": { "size": "D", "color": "E" } } }, "mode": "markers+lines", "name": "BSF (S2)", "type": "scatter3d", "xsrc": "deckar01:86:432979", "ysrc": "deckar01:86:910b05", "zsrc": "deckar01:86:ae469e", "marker": { "cmax": 0.78, "cmin": -0.78, "line": { "color": "rgb(80, 80, 80)", "width": 0 }, "meta": { "columnNames": { "size": "D", "color": "E" } }, "cauto": false, "opacity": 1, "sizeref": 0.05, "sizesrc": "deckar01:86:574cc0", "colorsrc": "deckar01:86:603a26", "sizemode": "area", "colorscale": [ [ 0, "#9e0142" ], [ 0.1, "#d53e4f" ], [ 0.2, "#f46d43" ], [ 0.3, "#fdae61" ], [ 0.4, "#fee08b" ], [ 0.5, "#ffffbf" ], [ 0.6, "#e6f598" ], [ 0.7, "#abdda4" ], [ 0.8, "#66c2a5" ], [ 0.9, "#3288bd" ], [ 1, "#5e4fa2" ] ] }, "visible": true, "projection": { "x": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "y": { "show": false, "scale": 0.6666666666666666, "opacity": 1 }, "z": { "show": false, "scale": 0.6666666666666666, "opacity": 1 } }, "connectgaps": false, "autocolorscale": false } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "log", "dtick": 5, "range": [ 1.5, 11 ], "title": { "text": "freq" }, "nticks": 0, "tickmode": "auto", "autorange": true, "rangemode": "normal" }, "yaxis": { "type": "linear", "range": [ 0, 11 ], "title": { "text": "real" }, "autorange": true, "rangemode": "normal" }, "zaxis": { "type": "linear", "dtick": 10, "range": [ -5.5, 5.5 ], "title": { "text": "imag" }, "nticks": 0, "tickmode": "auto", "autorange": true }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 1.987053552822, "y": -0.7145350597970802, "z": -0.47807721817532045 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "orthographic" } }, "dragmode": "turntable", "aspectmode": "manual", "aspectratio": { "x": 2.727272727272729, "y": 0.9090909090909097, "z": 0.9090909090909097 } }, "title": { "x": 0.05, "y": 0.95, "text": "AC Filters" }, "xaxis": { "range": [ -10, 10 ], "autorange": false }, "yaxis": { "range": [ -10, 10 ], "autorange": false }, "legend": { "x": 0.95, "y": 0.95, "font": { "size": 12, "color": "#f2f5fa", "family": "\"Open Sans\", verdana, arial, sans-serif" }, "title": { "text": "" }, "valign": "middle", "bgcolor": "rgb(17,17,17)", "xanchor": "left", "yanchor": "auto", "itemclick": "toggle", "itemwidth": 30, "itemsizing": "trace", "traceorder": "normal", "bordercolor": "#444", "borderwidth": 0, "orientation": "v", "itemdoubleclick": "toggleothers" }, "margin": { "b": 0, "l": 0, "r": 0, "t": 0 }, "autosize": false, "dragmode": "zoom", "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" }, "showlegend": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~deckar01", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2014-11-11 03:12:05", "mapbox_access_tokens": null, "has_password": null, "username": "deckar01", "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-26T01:01:49.734057Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~pulleyguy/15.embed", "fid": "pulleyguy:15", "filename": "SN curves2", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/15/9_I7MHLILS53E3VSXFDVM4ZL6MRGB57T.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/15/2_044AX5XPXK67Y27XR34QZXNGESUPSR.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/15/8_Z1R6HCCML1LEBFT7FTOCG2F12NH6BV.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/15/9_I7MHLILS53E3VSXFDVM4ZL6MRGB57T.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/pulleyguy:15", "plots": "https://api.plotly.com/v2/plots/pulleyguy:15", "parent": "https://api.plotly.com/v2/folders/home?user=pulleyguy" }, "owner": "pulleyguy", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~pulleyguy/15/", "world_readable": true, "date_modified": "2024-04-30T02:38:55.813Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~pulleyguy/15/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "dot", "width": 5 }, "meta": { "columnNames": { "x": "Cycles N", "y": "BS7608 VHCF" } }, "mode": "lines", "name": "BS7608 No Fatigue Limit", "type": "scatter", "xsrc": "pulleyguy:14:76cf58", "ysrc": "pulleyguy:14:7a731e", "marker": { "line": { "width": 2 }, "size": 9, "color": "#1f77b4", "symbol": "x-thin-open" } }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "Cycles N", "y": "BS7608 VHCF CAFL" } }, "mode": "lines", "name": "BS7608 Constant Amplitude Fatigue Limit", "type": "scatter", "xsrc": "pulleyguy:14:76cf58", "ysrc": "pulleyguy:14:7cd79c", "marker": { "line": { "width": 2 }, "size": 9, "color": "rgb(2, 2, 2)", "symbol": "x-thin-open" }, "visible": true, "stackgroup": null }, { "line": { "dash": "dash", "width": 5 }, "meta": { "columnNames": { "x": "Cycles N", "y": "Fry" } }, "mode": "lines", "name": "Fry", "type": "scatter", "xsrc": "pulleyguy:14:76cf58", "ysrc": "pulleyguy:14:c6eb6e", "marker": { "line": { "width": 2 }, "size": 9, "color": "#2ca02c", "symbol": "x-thin-open" }, "visible": true, "stackgroup": null }, { "line": { "dash": "dashdot", "width": 5 }, "meta": { "columnNames": { "x": "Cycles N", "y": "IIW" } }, "mode": "lines", "name": "Hobbacher IIW", "type": "scatter", "xsrc": "pulleyguy:14:76cf58", "ysrc": "pulleyguy:14:123e3f", "marker": { "line": { "width": 2 }, "size": 9, "color": "#d62728", "symbol": "x-thin-open" }, "stackgroup": null } ], "frames": [], "layout": { "title": { "x": 0.5, "font": { "size": 30, "color": "rgb(0, 0, 0)" }, "text": "S-N Curve From Various Publications" }, "xaxis": { "side": "bottom", "type": "log", "range": [ 6.853543205078377, 9.097357170617954 ], "title": { "font": { "size": 24, "color": "rgb(25, 25, 25)" }, "text": "Design Cycles (N)" }, "nticks": 14, "showline": true, "tickfont": { "size": 24, "color": "rgb(0, 0, 0)" }, "autorange": false, "gridcolor": "rgb(168, 163, 163)", "gridwidth": 1, "linecolor": "rgb(30, 30, 31)", "linewidth": 2, "automargin": true, "tickformat": "", "showexponent": "all", "exponentformat": "e" }, "yaxis": { "type": "log", "range": [ 1.1810003773633324, 1.8243302571537963 ], "title": { "font": { "size": 24, "color": "rgb(25, 25, 25)" }, "text": "Stress Amplitude (MPa)" }, "nticks": 14, "showline": true, "tickfont": { "size": 24, "color": "rgb(0, 0, 0)" }, "autorange": false, "gridcolor": "rgb(168, 163, 163)", "gridwidth": 1, "linecolor": "rgb(30, 30, 31)", "linewidth": 2, "showexponent": "all" }, "legend": { "x": 0.01995381062355664, "y": 0.3267380394780863, "font": { "size": 17, "color": "rgb(3, 3, 3)" }, "title": { "font": { "size": 1 }, "text": "<br>" }, "valign": "middle", "bgcolor": "rgb(255, 255, 255)", "yanchor": "top", "itemsizing": "constant", "traceorder": "normal", "bordercolor": "rgb(0, 0, 0)", "borderwidth": 1 }, "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" }, "showlegend": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~pulleyguy", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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-12 04:44:18", "mapbox_access_tokens": null, "has_password": null, "username": "pulleyguy", "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-26T00:51:14.405109Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~euneun101507/1.embed", "fid": "euneun101507:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/euneun101507/1/9_YV8J37IQBCNPX010X0G33CU639Y662.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/euneun101507/1/2_LLGXDW47G0S674I2MSSKL23LLTKTZW.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/euneun101507/1/8_GH5TVFX466WXVR44B9VIK5HAZQG0XW.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/euneun101507/1/9_YV8J37IQBCNPX010X0G33CU639Y662.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/euneun101507:1", "plots": "https://api.plotly.com/v2/plots/euneun101507:1", "parent": "https://api.plotly.com/v2/folders/home?user=euneun101507" }, "owner": "euneun101507", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~euneun101507/1/", "world_readable": true, "date_modified": "2024-04-26T00:51:14.416Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~euneun101507/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "C", "z": "B" } }, "mode": "markers", "type": "scatter3d", "xsrc": "euneun101507:0:5408b1", "ysrc": "euneun101507:0:bbd6c3", "zsrc": "euneun101507:0:11267c", "marker": { "line": { "width": 0 }, "size": 0, "color": "rgb(0, 18, 248)", "symbol": "circle", "opacity": 0.63 }, "hoverinfo": "x+y+z", "hoverlabel": { "align": "auto" } } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "title": { "font": { "size": 15 } } }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 1.2500000000000002, "y": 1.25, "z": 1.2500000000000002 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "dragmode": "turntable", "aspectmode": "auto", "aspectratio": { "x": 1.0991136000022026, "y": 0.8330861044602683, "z": 1.0921128764353099 } }, "title": { "text": "Click to enter Plot title" }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "margin": { "t": 100 }, "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/~euneun101507", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-26 00:50:46", "mapbox_access_tokens": null, "has_password": null, "username": "euneun101507", "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-26T00:50:22.184751Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~HMthree/1.embed", "fid": "HMthree:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/HMthree/1/9_BDFSYRGM2J30F5RYF1MUIANXOBNZHA.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/HMthree/1/2_QWT1VQBX88P5X1F5K6MNLKDZ9QVNFQ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/HMthree/1/8_MIH2E0UWXZKSHV79SCX9CIY02UW2QX.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/HMthree/1/9_BDFSYRGM2J30F5RYF1MUIANXOBNZHA.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/HMthree:1", "plots": "https://api.plotly.com/v2/plots/HMthree:1", "parent": "https://api.plotly.com/v2/folders/home?user=HMthree" }, "owner": "HMthree", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~HMthree/1/", "world_readable": true, "date_modified": "2024-04-26T00:50:22.198Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~HMthree/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "1040", "type": "scatter", "xsrc": "HMthree:0:fdf582", "ysrc": "HMthree:0:98f0c6" }, { "meta": { "columnNames": { "x": "C", "y": "D" } }, "mode": "lines", "name": "5140", "type": "scatter", "xsrc": "HMthree:0:21be38", "ysrc": "HMthree:0:aee09f", "stackgroup": null }, { "meta": { "columnNames": { "x": "E", "y": "F" } }, "mode": "lines", "name": "4140", "type": "scatter", "xsrc": "HMthree:0:8c5c49", "ysrc": "HMthree:0:fec871", "stackgroup": null }, { "meta": { "columnNames": { "x": "G", "y": "H" } }, "mode": "lines", "name": "4340", "type": "scatter", "xsrc": "HMthree:0:c1d89d", "ysrc": "HMthree:0:fd047f", "stackgroup": null }, { "meta": { "columnNames": { "x": "I", "y": "J" } }, "mode": "lines", "name": "Sample", "type": "scatter", "xsrc": "HMthree:0:3b600f", "ysrc": "HMthree:0:4569f0", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Hardenability curve" }, "xaxis": { "type": "linear", "range": [ 1.0576923076923066, 50.8 ], "title": { "text": "Distances from quenched end" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 18.381190178942987, 58.997086974615065 ], "title": { "text": "Hardness, HRC" }, "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/~HMthree", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.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-04-26 00:45:34", "mapbox_access_tokens": null, "has_password": null, "username": "HMthree", "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-26T00:13:19.591919Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~aaderib1/3.embed", "fid": "aaderib1:3", "filename": "Brine Shrimp copy", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/aaderib1/3/9_8YODDR18JU1I4D9KJ4VYFXFH8L2J5U.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/aaderib1/3/2_8O8RHGVR3UZ5VQNU75MK9T58HNGTWJ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aaderib1/3/8_UATO4VCSUU8OYMPAQ6ZH48H4PZT8MR.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aaderib1/3/9_8YODDR18JU1I4D9KJ4VYFXFH8L2J5U.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/aaderib1:3", "plots": "https://api.plotly.com/v2/plots/aaderib1:3", "parent": "https://api.plotly.com/v2/folders/home?user=aaderib1" }, "owner": "aaderib1", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~aaderib1/3/", "world_readable": true, "date_modified": "2024-04-26T00:13:19.875Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~aaderib1/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(25, 211, 243)" }, "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "Snow, y", "error_y": { "array": "" } } }, "mode": "markers+lines", "name": "Control", "type": "scatter", "xsrc": "aaderib1:2:4a2345", "ysrc": "aaderib1:2:13ab7b", "marker": { "line": { "color": "rgb(25, 211, 243)" }, "color": "rgb(25, 211, 243)" }, "error_y": { "type": "constant", "color": "rgb(25, 211, 243)", "value": 1, "width": 4, "visible": false, "symmetric": true, "thickness": 2 } }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "array", "error_y": { "array": "I" } } }, "mode": "markers+lines", "name": "0.0001M", "type": "scatter", "xsrc": "aaderib1:2:4a2345", "ysrc": "aaderib1:2:322cb9", "xaxis": "x", "error_y": { "meta": { "columnNames": { "array": "I" } }, "type": "data", "color": "#ff7f0e", "value": 10, "width": 7, "visible": true, "arraysrc": "aaderib1:2:339134", "symmetric": true, "thickness": 2, "valueminus": 10 }, "stackgroup": null }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "Rain, y", "error_y": { "array": "J" } } }, "mode": "markers+lines", "name": "0.00001M", "type": "scatter", "xsrc": "aaderib1:2:4a2345", "ysrc": "aaderib1:2:03e840", "marker": { "color": "rgb(99, 110, 250)" }, "error_y": { "meta": { "columnNames": { "array": "J" } }, "type": "data", "color": "rgb(99, 110, 250)", "value": 12, "width": 7, "visible": true, "arraysrc": "aaderib1:2:683098", "symmetric": true } }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "E", "error_y": { "array": "K" } } }, "mode": "markers+lines", "name": "0.000001M", "type": "scatter", "xsrc": "aaderib1:2:4a2345", "ysrc": "aaderib1:2:96c251", "error_y": { "meta": { "columnNames": { "array": "K" } }, "type": "data", "width": 7, "visible": true, "arraysrc": "aaderib1:2:9edf41", "symmetric": true }, "stackgroup": null }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "F", "error_y": { "array": "L" } } }, "mode": "markers+lines", "name": "0.0000001M", "type": "scatter", "xsrc": "aaderib1:2:4a2345", "ysrc": "aaderib1:2:6d617d", "error_y": { "meta": { "columnNames": { "array": "L" } }, "type": "data", "width": 7, "visible": true, "arraysrc": "aaderib1:2:75af57", "symmetric": true }, "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Brine Shrimp Survival Rate in Different Concentrations of Iron Nitrate" }, "xaxis": { "type": "category", "range": [ -0.13445378151260504, 2.134453781512605 ], "title": { "text": "Number of Hours" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 61.78336, 102.31616 ], "title": { "text": "Percent alive" }, "autorange": true }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~aaderib1", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-25 15:56:24", "mapbox_access_tokens": null, "has_password": null, "username": "aaderib1", "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-26T00:10:46.797469Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~aaderib1/1.embed", "fid": "aaderib1:1", "filename": "Brine Shrimp", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/aaderib1/1/9_IM3QZNSSMDPMJVWPX1TWK7Z5A3T27S.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/aaderib1/1/2_CBR12P3Y13XJ3J1KL1K569V4XD89BY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aaderib1/1/8_SBGQDGOVAYY5L4BWVL9XF0OXUK4YE8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aaderib1/1/9_IM3QZNSSMDPMJVWPX1TWK7Z5A3T27S.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/aaderib1:1", "plots": "https://api.plotly.com/v2/plots/aaderib1:1", "parent": "https://api.plotly.com/v2/folders/home?user=aaderib1" }, "owner": "aaderib1", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~aaderib1/1/", "world_readable": true, "date_modified": "2024-04-26T00:10:46.808Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~aaderib1/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(25, 211, 243)" }, "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "Snow, y", "error_y": { "array": "" } } }, "mode": "markers+lines", "name": "Control", "type": "scatter", "xsrc": "aaderib1:0:4a2345", "ysrc": "aaderib1:0:13ab7b", "marker": { "line": { "color": "rgb(25, 211, 243)" }, "color": "rgb(25, 211, 243)" }, "error_y": { "type": "constant", "color": "rgb(25, 211, 243)", "value": 1, "width": 4, "visible": false, "symmetric": true, "thickness": 2 } }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "array", "error_y": { "array": "I" } } }, "mode": "markers+lines", "name": "0.0001M", "type": "scatter", "xsrc": "aaderib1:0:4a2345", "ysrc": "aaderib1:0:322cb9", "xaxis": "x", "error_y": { "meta": { "columnNames": { "array": "I" } }, "type": "data", "color": "#ff7f0e", "value": 10, "width": 7, "visible": true, "arraysrc": "aaderib1:0:339134", "symmetric": true, "thickness": 2, "valueminus": 10 }, "stackgroup": null }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "Rain, y", "error_y": { "array": "J" } } }, "mode": "markers+lines", "name": "0.00001M", "type": "scatter", "xsrc": "aaderib1:0:4a2345", "ysrc": "aaderib1:0:03e840", "marker": { "color": "rgb(99, 110, 250)" }, "error_y": { "meta": { "columnNames": { "array": "J" } }, "type": "data", "color": "rgb(99, 110, 250)", "value": 12, "width": 7, "visible": true, "arraysrc": "aaderib1:0:683098", "symmetric": true } }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "E", "error_y": { "array": "K" } } }, "mode": "markers+lines", "name": "0.000001M", "type": "scatter", "xsrc": "aaderib1:0:4a2345", "ysrc": "aaderib1:0:96c251", "error_y": { "meta": { "columnNames": { "array": "K" } }, "type": "data", "width": 7, "visible": true, "arraysrc": "aaderib1:0:9edf41", "symmetric": true }, "stackgroup": null }, { "meta": { "columnNames": { "x": "Snow, x; Rain, x", "y": "F", "error_y": { "array": "L" } } }, "mode": "markers+lines", "name": "0.0000001M", "type": "scatter", "xsrc": "aaderib1:0:4a2345", "ysrc": "aaderib1:0:6d617d", "error_y": { "meta": { "columnNames": { "array": "L" } }, "type": "data", "width": 7, "visible": true, "arraysrc": "aaderib1:0:75af57", "symmetric": true }, "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Brine Shrimp Survival Rate in Different Concentrations of Iron Nitrate" }, "xaxis": { "type": "category", "range": [ -0.13445378151260504, 2.134453781512605 ], "title": { "text": "Number of Hours" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 61.78336, 102.31616 ], "title": { "text": "Percent alive" }, "autorange": true }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~aaderib1", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-25 15:56:24", "mapbox_access_tokens": null, "has_password": null, "username": "aaderib1", "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-25T23:58:12.531938Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~k1ngb4sh3r/2.embed", "fid": "k1ngb4sh3r:2", "filename": "basic-line", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/k1ngb4sh3r/2/9_D3YT4526L8CWSB0ZJGWTCYCNGCPFYI.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/k1ngb4sh3r/2/2_OQQR24TNZYB3R67HOBHEWUSJEFP90H.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/k1ngb4sh3r/2/8_XX5OGD9CN2Y4QWYPGHK6NBRJX04SKA.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/k1ngb4sh3r/2/9_D3YT4526L8CWSB0ZJGWTCYCNGCPFYI.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/k1ngb4sh3r:2", "plots": "https://api.plotly.com/v2/plots/k1ngb4sh3r:2", "parent": "https://api.plotly.com/v2/folders/home?user=k1ngb4sh3r" }, "owner": "k1ngb4sh3r", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 8, "web_url": "https://chart-studio.plotly.com/~k1ngb4sh3r/2/", "world_readable": true, "date_modified": "2024-04-26T22:06:10.812Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~k1ngb4sh3r/2/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:ecf36b", "ysrc": "k1ngb4sh3r:4:f1657a", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:8b31af", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=1990<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:d3e5f4", "ysrc": "k1ngb4sh3r:4:3b6f2e", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.300089 * Access to clean fuels and technologies for cooking (% of population) + 56.4596<br>R<sup>2</sup>=0.014717<br><br>Years=1990<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "frames": [ { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:5d2a63", "ysrc": "k1ngb4sh3r:4:cf6c7c", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:76405c", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=1990<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:3fe10c", "ysrc": "k1ngb4sh3r:4:94d4cc", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.300089 * Access to clean fuels and technologies for cooking (% of population) + 56.4596<br>R<sup>2</sup>=0.014717<br><br>Years=1990<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "1990" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:515e74", "ysrc": "k1ngb4sh3r:4:ba0dfd", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:5f5813", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2000<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:382e09", "ysrc": "k1ngb4sh3r:4:1b11b1", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.624479 * Access to clean fuels and technologies for cooking (% of population) + 68.9428<br>R<sup>2</sup>=0.616048<br><br>Years=2000<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2000" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:650160", "ysrc": "k1ngb4sh3r:4:d40ac8", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:9cc6bc", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2013<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:c0737c", "ysrc": "k1ngb4sh3r:4:2455db", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.574893 * Access to clean fuels and technologies for cooking (% of population) + 68.1457<br>R<sup>2</sup>=0.553055<br><br>Years=2013<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2013" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:26fee8", "ysrc": "k1ngb4sh3r:4:77377a", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:a24339", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2014<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:d15a6d", "ysrc": "k1ngb4sh3r:4:444b57", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.573805 * Access to clean fuels and technologies for cooking (% of population) + 68.2075<br>R<sup>2</sup>=0.552528<br><br>Years=2014<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2014" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:6e6642", "ysrc": "k1ngb4sh3r:4:032464", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:ccf142", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2015<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:6c497f", "ysrc": "k1ngb4sh3r:4:25909d", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.563577 * Access to clean fuels and technologies for cooking (% of population) + 67.3562<br>R<sup>2</sup>=0.533248<br><br>Years=2015<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2015" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:7c3694", "ysrc": "k1ngb4sh3r:4:673a61", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:10fddb", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2016<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:64529d", "ysrc": "k1ngb4sh3r:4:bd8320", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.554174 * Access to clean fuels and technologies for cooking (% of population) + 66.7068<br>R<sup>2</sup>=0.521066<br><br>Years=2016<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2016" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:799573", "ysrc": "k1ngb4sh3r:4:a12fbb", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:10c709", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2017<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:987165", "ysrc": "k1ngb4sh3r:4:db293f", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.535842 * Access to clean fuels and technologies for cooking (% of population) + 65.2234<br>R<sup>2</sup>=0.484538<br><br>Years=2017<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2017" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:59c6e1", "ysrc": "k1ngb4sh3r:4:c9fc25", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:18b7b8", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2018<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:665c2f", "ysrc": "k1ngb4sh3r:4:4a9b07", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.538844 * Access to clean fuels and technologies for cooking (% of population) + 66.0576<br>R<sup>2</sup>=0.495620<br><br>Years=2018<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2018" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:fb4500", "ysrc": "k1ngb4sh3r:4:15fcf0", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:6e3b23", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2019<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:06ee7a", "ysrc": "k1ngb4sh3r:4:5ee2c9", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.531257 * Access to clean fuels and technologies for cooking (% of population) + 65.4902<br>R<sup>2</sup>=0.484165<br><br>Years=2019<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2019" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:37b193", "ysrc": "k1ngb4sh3r:4:be0c74", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:485ba1", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2020<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:8475c2", "ysrc": "k1ngb4sh3r:4:249e0a", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.524826 * Access to clean fuels and technologies for cooking (% of population) + 66.1174<br>R<sup>2</sup>=0.462114<br><br>Years=2020<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2020" }, { "data": [ { "mode": "markers", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:97b04a", "ysrc": "k1ngb4sh3r:4:59da4b", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "orientation": "v", "hovertextsrc": "k1ngb4sh3r:4:75972d", "hovertemplate": "<b>%{hovertext}</b><br><br>Years=2021<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y}<extra></extra>" }, { "mode": "lines", "name": "", "type": "scatter", "xsrc": "k1ngb4sh3r:4:370dc1", "ysrc": "k1ngb4sh3r:4:9f220a", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": false, "legendgroup": "", "hovertemplate": "<b>OLS trendline</b><br>Renewable energy consumption (% of total final energy consumption) = -0.227697 * Access to clean fuels and technologies for cooking (% of population) + 45.8194<br>R<sup>2</sup>=0.207843<br><br>Years=2021<br>Access to clean fuels and technologies for cooking (% of population)=%{x}<br>Renewable energy consumption (% of total final energy consumption)=%{y} <b>(trend)</b><extra></extra>" } ], "name": "2021" } ], "layout": { "xaxis": { "title": { "text": "Access to clean fuels and technologies for cooking (% of population)" }, "anchor": "y", "domain": [ 0.0, 1.0 ] }, "yaxis": { "title": { "text": "Renewable energy consumption (% of total final energy consumption)" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "sliders": [ { "x": 0.1, "y": 0, "len": 0.9, "pad": { "b": 10, "t": 60 }, "steps": [ { "args": [ [ "1990" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "1990", "method": "animate" }, { "args": [ [ "2000" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2000", "method": "animate" }, { "args": [ [ "2013" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2013", "method": "animate" }, { "args": [ [ "2014" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2014", "method": "animate" }, { "args": [ [ "2015" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2015", "method": "animate" }, { "args": [ [ "2016" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2016", "method": "animate" }, { "args": [ [ "2017" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2017", "method": "animate" }, { "args": [ [ "2018" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2018", "method": "animate" }, { "args": [ [ "2019" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2019", "method": "animate" }, { "args": [ [ "2020" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2020", "method": "animate" }, { "args": [ [ "2021" ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2021", "method": "animate" } ], "active": 0, "xanchor": "left", "yanchor": "top", "currentvalue": { "prefix": "Years=" } } ], "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "updatemenus": [ { "x": 0.1, "y": 0, "pad": { "r": 10, "t": 70 }, "type": "buttons", "buttons": [ { "args": [ null, { "mode": "immediate", "frame": { "redraw": false, "duration": 500 }, "transition": { "easing": "linear", "duration": 500 }, "fromcurrent": true } ], "label": "▶", "method": "animate" }, { "args": [ [ null ], { "mode": "immediate", "frame": { "redraw": false, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "◼", "method": "animate" } ], "xanchor": "right", "yanchor": "top", "direction": "left", "showactive": false } ] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~k1ngb4sh3r", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-25 23:43:24", "mapbox_access_tokens": null, "has_password": null, "username": "k1ngb4sh3r", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "