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=cj0xJnA9MjAyNC0wNC0xMyswMSUzQTEzJTNBNDQuODE3MTk2JTJCMDAlM0EwMA%3D%3D&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEzKzAxJTNBMzUlM0E1Mi4xNzUzMzQlMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMyswMyUzQTU1JTNBNDEuOTk5OTA4JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-13T03:55:41.999908Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~meretinanivalu/1.embed", "fid": "meretinanivalu:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/meretinanivalu/1/9_HIDFNZYJX8I9CM7E7Q4TU05MFBMXTZ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/meretinanivalu/1/2_L6UGJS4BNZ18RCC16SI2WWK7M4Y3HP.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/meretinanivalu/1/8_3D1GCMD5SAKWC5PPCI2UIMZOUDBJ19.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/meretinanivalu/1/9_HIDFNZYJX8I9CM7E7Q4TU05MFBMXTZ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/meretinanivalu:1", "plots": "https://api.plotly.com/v2/plots/meretinanivalu:1", "parent": "https://api.plotly.com/v2/folders/home?user=meretinanivalu" }, "owner": "meretinanivalu", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 3, "web_url": "https://chart-studio.plotly.com/~meretinanivalu/1/", "world_readable": true, "date_modified": "2024-04-13T03:55:42.009Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~meretinanivalu/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers+lines", "type": "scatter", "xsrc": "meretinanivalu:0:c9c993", "ysrc": "meretinanivalu:0:6c5098", "error_x": { "type": "percent", "value": 10, "visible": false, "symmetric": false, "valueminus": 10, "copy_ystyle": true }, "error_y": { "type": "percent", "color": "#636efa", "value": 10, "width": 4, "visible": false, "symmetric": false, "thickness": 2, "valueminus": 10 }, "hoverlabel": { "align": "auto" } } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ 4.151800426985482e-05, 0.00011426299573014517 ], "title": { "text": "STRAIN" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 8178832.483173928, 23126567.51682607 ], "title": { "text": "STRESS" }, "autorange": true }, "legend": { "font": { "family": "Arial" } }, "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/~meretinanivalu", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.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-13 03:52:20", "mapbox_access_tokens": null, "has_password": null, "username": "meretinanivalu", "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-13T03:44:44.454263Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~genoshistoria2/66.embed", "fid": "genoshistoria2:66", "filename": "Dzuduzana PCA", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/genoshistoria2/66/9_TW7ZUBF5WN4R8BURC9VQV3UX4XST0Z.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/genoshistoria2/66/2_GAR77785XU4XSVA8EBY69583LKIDXM.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/genoshistoria2/66/8_CLU1XBG5LBEU27E3N786QJXZ6GKJ4C.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/genoshistoria2/66/9_TW7ZUBF5WN4R8BURC9VQV3UX4XST0Z.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/genoshistoria2:66", "plots": "https://api.plotly.com/v2/plots/genoshistoria2:66", "parent": "https://api.plotly.com/v2/folders/home?user=genoshistoria2" }, "owner": "genoshistoria2", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~genoshistoria2/66/", "world_readable": true, "date_modified": "2024-04-13T03:44:44.465Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~genoshistoria2/66/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "PC 1 SW Asia Neo Meso", "y": "PC 2 SW Asia Neo Meso", "text": "SW Asia Neo Meso" } }, "mode": "markers", "name": "SW Asia Neo Meso", "type": "scatter", "xsrc": "genoshistoria2:62:23b3a2", "ysrc": "genoshistoria2:62:5941d9", "marker": { "line": { "width": 2 }, "size": 25, "color": "rgb(99, 250, 121)" }, "textsrc": "genoshistoria2:62:f198af" }, { "meta": { "columnNames": { "x": "PC 1 SW Asia modern", "y": "PC 2 SW Asia modern", "text": "SW Asia modern" } }, "mode": "markers", "name": "SW Asia Modern", "type": "scatter", "xsrc": "genoshistoria2:63:2473bb", "ysrc": "genoshistoria2:63:a536e6", "marker": { "size": 10, "color": "rgb(145, 138, 137)", "symbol": "x-thin-open" }, "textsrc": "genoshistoria2:63:6ad9b7", "stackgroup": null }, { "meta": { "columnNames": { "x": "PC 1 Europe Meso", "y": "PC 2 Europe Meso", "text": "Europe Meso" } }, "mode": "markers", "name": "Europe MEso", "type": "scatter", "xsrc": "genoshistoria2:64:dcb213", "ysrc": "genoshistoria2:64:87ce70", "marker": { "line": { "width": 2 }, "size": 25, "color": "rgb(9, 0, 204)" }, "textsrc": "genoshistoria2:64:f46f01", "stackgroup": null }, { "meta": { "columnNames": { "x": "PC1 Dzudzuana", "y": "PC2 Dzudzuana", "text": "Dzudzuana" } }, "mode": "markers", "name": "Dzudzuana", "type": "scatter", "xsrc": "genoshistoria2:65:0a569e", "ysrc": "genoshistoria2:65:e007ea", "marker": { "line": { "width": 3 }, "size": 35, "color": "rgb(10, 10, 10)" }, "textsrc": "genoshistoria2:65:e348ca", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ -0.1708877451913579, 0.19866305310608645 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.24603024366706874, 0.11513241013268999 ], "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/~genoshistoria2", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/65.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-02-03 04:01:41", "mapbox_access_tokens": null, "has_password": null, "username": "genoshistoria2", "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-13T03:33:42.189807Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~VanessaGuetz/55.embed", "fid": "VanessaGuetz:55", "filename": "ESRM 303 Ants Plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/VanessaGuetz/55/9_EQ4E36QRRCCF6I28OU79GJEA6K7GA2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/VanessaGuetz/55/2_TTTK8HHN3CSPSVSJC2LMQQAO6PY9GN.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/VanessaGuetz/55/8_X88Y71YELC6NSZAA0NPJJDWFQELV7G.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/VanessaGuetz/55/9_EQ4E36QRRCCF6I28OU79GJEA6K7GA2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/VanessaGuetz:55", "plots": "https://api.plotly.com/v2/plots/VanessaGuetz:55", "parent": "https://api.plotly.com/v2/folders/home?user=VanessaGuetz" }, "owner": "VanessaGuetz", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~VanessaGuetz/55/", "world_readable": true, "date_modified": "2024-05-03T19:27:46.773Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~VanessaGuetz/55/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(50, 40, 251)", "shape": "linear", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "<i>Exsectoides</i>", "type": "scatter", "xsrc": "VanessaGuetz:52:028703", "ysrc": "VanessaGuetz:52:5fac74", "marker": { "size": 10 } }, { "line": { "color": "rgb(19, 242, 40)", "shape": "linear", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "<i>Claviger</i>", "type": "scatter", "xsrc": "VanessaGuetz:54:a458d4", "ysrc": "VanessaGuetz:54:0df459", "marker": { "size": 10 } }, { "line": { "color": "rgb(255, 17, 221)", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "2000 AF SCU" } }, "mode": "lines", "name": "<i>Dolosa</i>", "type": "scatter", "xsrc": "VanessaGuetz:51:8e184d", "ysrc": "VanessaGuetz:51:1e4960", "stackgroup": null }, { "line": { "color": "rgb(253, 167, 3)", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "<i>Curvispinosus</i>", "type": "scatter", "xsrc": "VanessaGuetz:53:15df61", "ysrc": "VanessaGuetz:53:13d856", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "dtick": 0, "range": [ 2000, 2009 ], "tick0": 0, "nticks": 10, "showgrid": false, "showline": false, "tickfont": { "family": "Arial" }, "tickmode": "auto", "autorange": false, "tickangle": "auto" }, "yaxis": { "type": "linear", "range": [ -5.5, 104.5 ], "title": { "font": { "family": "Arial" }, "text": "<b>Number of Ants Observed</b>" }, "nticks": 11, "showgrid": true, "tickfont": { "family": "Arial" }, "autorange": false }, "legend": { "x": 1.02, "y": 1, "font": { "size": 12, "family": "Arial" }, "title": { "font": { "size": 14, "family": "Arial" }, "text": "<b>Ant Species</b>" } }, "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" }, "plot_bgcolor": "rgb(181, 179, 179)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~VanessaGuetz", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.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-01-24 19:14:38", "mapbox_access_tokens": null, "has_password": null, "username": "VanessaGuetz", "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-13T03:23:44.075140Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mpoe444/1.embed", "fid": "Mpoe444:1", "filename": "Homeless Population VS City Population", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mpoe444/1/9_GXF8A857LGROKGA9KMYGEHMCMF8GDL.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mpoe444/1/2_VNLDWT2DNXY1GNM1WWZ8WQDWV7V6Q7.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mpoe444/1/8_OF2I9N1CWZDFP3D9TYVSOLVGDNRSZY.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mpoe444/1/9_GXF8A857LGROKGA9KMYGEHMCMF8GDL.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mpoe444:1", "plots": "https://api.plotly.com/v2/plots/Mpoe444:1", "parent": "https://api.plotly.com/v2/folders/home?user=Mpoe444" }, "owner": "Mpoe444", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Mpoe444/1/", "world_readable": true, "date_modified": "2024-04-13T03:48:59.744Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mpoe444/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "name": "New York City", "type": "scatter", "xsrc": "Mpoe444:0:0c7e0f", "ysrc": "Mpoe444:0:f54630", "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "C", "y": "D" } }, "mode": "markers", "name": "Mexico City", "type": "scatter", "xsrc": "Mpoe444:0:61e469", "ysrc": "Mpoe444:0:05f5c4", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "E", "y": "F" } }, "mode": "markers", "name": "Tokyo", "type": "scatter", "xsrc": "Mpoe444:0:334bfc", "ysrc": "Mpoe444:0:0cc633", "marker": { "color": "#00cc96" }, "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "G", "y": "H" } }, "mode": "markers", "name": "Beijing", "type": "scatter", "xsrc": "Mpoe444:0:0347ab", "ysrc": "Mpoe444:0:d20960", "hoverinfo": "x+y+name", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "I", "y": "J" } }, "mode": "markers", "name": "İstanbul", "type": "scatter", "xsrc": "Mpoe444:0:c4c637", "ysrc": "Mpoe444:0:a677bb", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "K", "y": "L" } }, "mode": "markers", "name": "Buenos Aires", "type": "scatter", "xsrc": "Mpoe444:0:6778be", "ysrc": "Mpoe444:0:c82f45", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "M", "y": "N" } }, "mode": "markers", "name": "Karachi", "type": "scatter", "xsrc": "Mpoe444:0:6d7836", "ysrc": "Mpoe444:0:28dfdb", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "O", "y": "P" } }, "mode": "markers", "name": "Delhi", "type": "scatter", "xsrc": "Mpoe444:0:825f7e", "ysrc": "Mpoe444:0:eac5fb", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "Q", "y": "R" } }, "mode": "markers", "name": "Cairo", "type": "scatter", "xsrc": "Mpoe444:0:3d33b5", "ysrc": "Mpoe444:0:d61e62", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "S", "y": "T" } }, "mode": "markers", "name": "Dhaka", "type": "scatter", "xsrc": "Mpoe444:0:c212e2", "ysrc": "Mpoe444:0:37f401", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "U", "y": "V" } }, "mode": "markers", "name": "São Paulo", "type": "scatter", "xsrc": "Mpoe444:0:210d5a", "ysrc": "Mpoe444:0:dd2176", "stackgroup": null, "selectedpoints": [ 0 ] }, { "meta": { "columnNames": { "x": "W", "y": "X" } }, "mode": "markers", "name": "Manila", "type": "scatter", "xsrc": "Mpoe444:0:d18e16", "ysrc": "Mpoe444:0:c822e6", "opacity": 1, "showlegend": false, "stackgroup": null, "legendgroup": 1, "selectedpoints": [ 0 ] } ], "frames": [], "layout": { "font": { "size": 14, "family": "Arial" }, "title": { "text": "Homeless Population VS City Population" }, "xaxis": { "side": "bottom", "range": [ 11740685.071574641, 39209314.92842536 ], "title": { "text": "City Population" }, "domain": [ 0, 0.625 ], "autorange": true }, "yaxis": { "side": "left", "range": [ -783700.2440408629, 11784470.244040864 ], "title": { "text": "Homeless Population" }, "domain": [ 0, 1 ], "autorange": true }, "legend": { "x": 0.7000000000000002, "y": 0.98, "title": { "font": { "size": 17, "family": "Arial" }, "text": "City" } }, "autosize": true, "colorway": [ "#FD3216", "#00FE35", "#6A76FC", "#FED4C4", "#FE00CE", "#0DF9FF", "#F6F926", "#FF9616", "#479B55", "#EEA6FB", "#DC587D", "#D626FF", "#6E899C", "#00B5F7", "#B68E00", "#C9FBE5", "#FF0092", "#22FFA7", "#E3EE9E", "#86CE00", "#BC7196", "#7E7DCD", "#FC6955", "#E48F72" ], "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" }, "hovermode": "closest", "colorscale": { "diverging": [ [ 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" ] ], "sequential": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ] } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Mpoe444", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/45.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-13 03:22:58", "mapbox_access_tokens": null, "has_password": null, "username": "Mpoe444", "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-13T02:55:11.067536Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mungo/7.embed", "fid": "Mungo:7", "filename": "Australia Inflation", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mungo/7/9_G797NI788ZO5ACB3PUWGRW7LZZAXC1.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mungo/7/2_7WORV0NJLGHYU1HN8PUN128527EUAM.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/7/8_XASN3WFBSI3JXL9A4UHN1W94EOQWU9.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/7/9_G797NI788ZO5ACB3PUWGRW7LZZAXC1.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mungo:7", "plots": "https://api.plotly.com/v2/plots/Mungo:7", "parent": "https://api.plotly.com/v2/folders/home?user=Mungo" }, "owner": "Mungo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Mungo/7/", "world_readable": true, "date_modified": "2024-04-13T02:55:11.076Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mungo/7/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgba(255,0,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Energy", "type": "scatter", "xsrc": "Mungo:6:25cd66", "ysrc": "Mungo:6:2bf8ec", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:6:048ed2", "hoverinfo": "text", "showlegend": true, "legendgroup": "Energy" }, { "line": { "dash": "solid", "color": "rgba(0,0,255,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Food", "type": "scatter", "xsrc": "Mungo:6:c13298", "ysrc": "Mungo:6:750cad", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:6:54aaac", "hoverinfo": "text", "showlegend": true, "legendgroup": "Food" }, { "line": { "dash": "solid", "color": "rgba(255,215,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Headline", "type": "scatter", "xsrc": "Mungo:6:5e15fa", "ysrc": "Mungo:6:dd4b7a", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:6:bd92d0", "hoverinfo": "text", "showlegend": true, "legendgroup": "Headline" } ], "layout": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "x": 0, "font": { "size": 17.534246575342465, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Australian Inflation", "xref": "paper" }, "xaxis": { "type": "linear", "range": [ 10537, 19777 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Year" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.6529680365296806, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "2000", "2005", "2010", "2015", "2020" ], "tickvals": [ 10957, 12784, 14610, 16436, 18262 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "2000", "2005", "2010", "2015", "2020" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -9.5455002784729, 20.49549913406372 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Inflation measures" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "0", "10", "20" ], "tickvals": [ 0, 10, 20 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "0", "10", "20" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 11.68949771689498, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Inflation Type" }, "bgcolor": "rgba(255,255,255,1)", "bordercolor": "transparent", "borderwidth": 1.8897637795275593 }, "margin": { "b": 41.775342465753425, "l": 37.26027397260275, "r": 7.305936073059362, "t": 45.35525114155251 }, "shapes": [ { "x0": 0, "x1": 1, "y0": 0, "y1": 1, "line": { "color": null, "width": 0, "linetype": [] }, "type": "rect", "xref": "paper", "yref": "paper", "fillcolor": null } ], "barmode": "relative", "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(235,235,235,1)", "paper_bgcolor": "rgba(255,255,255,1)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Mungo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-04 23:56:36", "mapbox_access_tokens": null, "has_password": null, "username": "Mungo", "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-13T02:55:07.119757Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mungo/5.embed", "fid": "Mungo:5", "filename": "Food-Inflation", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mungo/5/9_7PUEAXS5UDY56YADZETOUZ3V1KR2DM.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mungo/5/2_E1L5L0GB4QBARFSCWRCXOA8YSIPVRU.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/5/8_8C9RHIVKV9IXLZ6L4QPKMHGSFJSQI7.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/5/9_7PUEAXS5UDY56YADZETOUZ3V1KR2DM.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mungo:5", "plots": "https://api.plotly.com/v2/plots/Mungo:5", "parent": "https://api.plotly.com/v2/folders/home?user=Mungo" }, "owner": "Mungo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 4, "web_url": "https://chart-studio.plotly.com/~Mungo/5/", "world_readable": true, "date_modified": "2024-04-13T02:55:07.128Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mungo/5/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgba(248,118,109,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Australia", "type": "scatter", "xsrc": "Mungo:4:8a4098", "ysrc": "Mungo:4:c61d7a", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:cc6cc5", "hoverinfo": "text", "showlegend": true, "legendgroup": "Australia" }, { "line": { "dash": "solid", "color": "rgba(196,154,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Canada", "type": "scatter", "xsrc": "Mungo:4:57ae20", "ysrc": "Mungo:4:e73ace", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:50e9c8", "hoverinfo": "text", "showlegend": true, "legendgroup": "Canada" }, { "line": { "dash": "solid", "color": "rgba(83,180,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "China", "type": "scatter", "xsrc": "Mungo:4:7d0ced", "ysrc": "Mungo:4:fe83d4", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:8047ec", "hoverinfo": "text", "showlegend": true, "legendgroup": "China" }, { "line": { "dash": "solid", "color": "rgba(0,192,148,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Germany", "type": "scatter", "xsrc": "Mungo:4:e502a1", "ysrc": "Mungo:4:985864", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:df1c4d", "hoverinfo": "text", "showlegend": true, "legendgroup": "Germany" }, { "line": { "dash": "solid", "color": "rgba(0,182,235,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Japan", "type": "scatter", "xsrc": "Mungo:4:65d74d", "ysrc": "Mungo:4:9c1c59", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:7e94bb", "hoverinfo": "text", "showlegend": true, "legendgroup": "Japan" }, { "line": { "dash": "solid", "color": "rgba(165,138,255,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United Kingdom", "type": "scatter", "xsrc": "Mungo:4:8d38b4", "ysrc": "Mungo:4:a41dee", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:5d4e54", "hoverinfo": "text", "showlegend": true, "legendgroup": "United Kingdom" }, { "line": { "dash": "solid", "color": "rgba(251,97,215,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United States", "type": "scatter", "xsrc": "Mungo:4:6612d8", "ysrc": "Mungo:4:485ea9", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:4:6f8fd9", "hoverinfo": "text", "showlegend": true, "legendgroup": "United States" } ], "layout": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "x": 0, "font": { "size": 17.534246575342465, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Food Inflation", "xref": "paper" }, "xaxis": { "type": "linear", "range": [ 10537, 19777 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Year" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.6529680365296806, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "2000", "2005", "2010", "2015", "2020" ], "tickvals": [ 10957, 12784, 14610, 16436, 18262 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "2000", "2005", "2010", "2015", "2020" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -6.019594597816467, 33.80437843799591 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Inflation %" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "0", "10", "20", "30" ], "tickvals": [ 0, 10, 20, 29.999999999999996 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "0", "10", "20", "30" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 11.68949771689498, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Legend" }, "bgcolor": "rgba(255,255,255,1)", "bordercolor": "transparent", "borderwidth": 1.8897637795275593 }, "margin": { "b": 41.775342465753425, "l": 37.26027397260275, "r": 7.305936073059362, "t": 45.35525114155251 }, "shapes": [ { "x0": 0, "x1": 1, "y0": 0, "y1": 1, "line": { "color": null, "width": 0, "linetype": [] }, "type": "rect", "xref": "paper", "yref": "paper", "fillcolor": null } ], "barmode": "relative", "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(235,235,235,1)", "paper_bgcolor": "rgba(255,255,255,1)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Mungo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-04 23:56:36", "mapbox_access_tokens": null, "has_password": null, "username": "Mungo", "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-13T02:55:02.908431Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mungo/3.embed", "fid": "Mungo:3", "filename": "Energy-Inflation", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mungo/3/9_B57JPA67WT7TY8CP28KZ454EF5DHFJ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mungo/3/2_K9NM7LXQLV5DFXK6VXM1RCDLMZR1RP.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/3/8_7L3AVAZ7UCTOGH478TLDM9XTLQ9TM1.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/3/9_B57JPA67WT7TY8CP28KZ454EF5DHFJ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mungo:3", "plots": "https://api.plotly.com/v2/plots/Mungo:3", "parent": "https://api.plotly.com/v2/folders/home?user=Mungo" }, "owner": "Mungo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~Mungo/3/", "world_readable": true, "date_modified": "2024-04-13T03:04:00.006Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mungo/3/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgba(248,118,109,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Australia", "type": "scatter", "xsrc": "Mungo:2:4458bb", "ysrc": "Mungo:2:a265de", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:d92634", "hoverinfo": "text", "showlegend": true, "legendgroup": "Australia" }, { "line": { "dash": "solid", "color": "rgba(196,154,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Canada", "type": "scatter", "xsrc": "Mungo:2:4599f2", "ysrc": "Mungo:2:1bfde3", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:134846", "hoverinfo": "text", "showlegend": true, "legendgroup": "Canada" }, { "line": { "dash": "solid", "color": "rgba(83,180,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "China", "type": "scatter", "xsrc": "Mungo:2:41d551", "ysrc": "Mungo:2:e73a07", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:f154f0", "hoverinfo": "text", "showlegend": true, "legendgroup": "China" }, { "line": { "dash": "solid", "color": "rgba(0,192,148,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Germany", "type": "scatter", "xsrc": "Mungo:2:8209e3", "ysrc": "Mungo:2:891463", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:3b5d3b", "hoverinfo": "text", "showlegend": true, "legendgroup": "Germany" }, { "line": { "dash": "solid", "color": "rgba(0,182,235,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Japan", "type": "scatter", "xsrc": "Mungo:2:e793b1", "ysrc": "Mungo:2:43d3c0", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:5b0507", "hoverinfo": "text", "showlegend": true, "legendgroup": "Japan" }, { "line": { "dash": "solid", "color": "rgba(165,138,255,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United Kingdom", "type": "scatter", "xsrc": "Mungo:2:3b5b93", "ysrc": "Mungo:2:c16c86", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:3d2ddd", "hoverinfo": "text", "showlegend": true, "legendgroup": "United Kingdom" }, { "line": { "dash": "solid", "color": "rgba(251,97,215,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United States", "type": "scatter", "xsrc": "Mungo:2:f3c00a", "ysrc": "Mungo:2:7adae0", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:2:15ff17", "hoverinfo": "text", "showlegend": true, "legendgroup": "United States" } ], "layout": { "font": { "size": 15.940224159402241, "color": "rgba(0,0,0,1)", "family": "sans" }, "title": { "x": 0, "font": { "size": 38.25653798256538, "color": "rgba(0,0,0,1)", "family": "mono" }, "text": "<b> Energy Inflation </b>", "xref": "paper" }, "xaxis": { "type": "linear", "range": [ 10537, 19777 ], "ticks": "outside", "title": { "font": { "size": 0, "color": null, "family": null }, "text": "" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.9850560398505603, "showgrid": false, "showline": true, "tickfont": { "size": 15.940224159402241, "color": "rgba(0,0,0,1)", "family": "sans" }, "tickmode": "array", "ticktext": [ "2000", "2005", "2010", "2015", "2020" ], "tickvals": [ 10957, 12784, 14610, 16436, 18262 ], "zeroline": false, "autorange": false, "gridcolor": null, "gridwidth": 0, "linecolor": "rgba(0,0,0,1)", "linewidth": 0.7245556436091928, "tickangle": 0, "tickcolor": "rgba(0,0,0,1)", "tickwidth": 0.7245556436091928, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "2000", "2005", "2010", "2015", "2020" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -14.408045641390418, 49.56895846919876 ], "ticks": "", "title": { "font": { "size": 0, "color": null, "family": null }, "text": "" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.985056039850561, "showgrid": true, "showline": false, "tickfont": { "size": 15.940224159402243, "color": "rgba(0,0,0,1)", "family": "sans" }, "tickmode": "array", "ticktext": [ "-10", "0", "10", "20", "30", "40" ], "tickvals": [ -10, 0, 9.999999999999998, 20, 30, 40 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(0,0,0,1)", "gridwidth": 0.7245556436091928, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": null, "tickwidth": 0, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "-10", "0", "10", "20", "30", "40" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 12.752179327521796, "color": "rgba(0,0,0,1)", "family": "sans" }, "title": { "font": { "size": 31.880448318804483, "color": "rgba(0,0,0,1)", "family": "mono" }, "text": "Legend" }, "bgcolor": "rgba(248,242,228,1)", "bordercolor": "transparent", "borderwidth": 2.061560486757337 }, "margin": { "b": 39.125280199252806, "l": 47.09539227895393, "r": 19.200000000000003, "t": 73.45653798256538 }, "shapes": [ { "x0": 0, "x1": 1, "y0": 0, "y1": 1, "line": { "color": "transparent", "width": 0.7245556436091928, "linetype": "none" }, "type": "rect", "xref": "paper", "yref": "paper", "fillcolor": "transparent" } ], "barmode": "relative", "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(248,242,228,1)", "paper_bgcolor": "rgba(248,242,228,1)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Mungo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-04 23:56:36", "mapbox_access_tokens": null, "has_password": null, "username": "Mungo", "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-13T02:47:34.954817Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Mungo/1.embed", "fid": "Mungo:1", "filename": "Headline-Inflation", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Mungo/1/9_DL35LHJUDWEG2V2OSW6ID01HHRU9PL.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Mungo/1/2_DQ2A4Y5NT1P5DE5UE22BSF53N4V26M.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/1/8_3PTOKSM3B2LHRY7SK2H5Z4Q8ABVNXZ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mungo/1/9_DL35LHJUDWEG2V2OSW6ID01HHRU9PL.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Mungo:1", "plots": "https://api.plotly.com/v2/plots/Mungo:1", "parent": "https://api.plotly.com/v2/folders/home?user=Mungo" }, "owner": "Mungo", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 4, "web_url": "https://chart-studio.plotly.com/~Mungo/1/", "world_readable": true, "date_modified": "2024-04-13T02:54:57.371Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Mungo/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgba(248,118,109,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Australia", "type": "scatter", "xsrc": "Mungo:0:f8f62a", "ysrc": "Mungo:0:e0826e", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:393baa", "hoverinfo": "text", "showlegend": true, "legendgroup": "Australia" }, { "line": { "dash": "solid", "color": "rgba(196,154,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Canada", "type": "scatter", "xsrc": "Mungo:0:5d3dd5", "ysrc": "Mungo:0:68edd1", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:93573c", "hoverinfo": "text", "showlegend": true, "legendgroup": "Canada" }, { "line": { "dash": "solid", "color": "rgba(83,180,0,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "China", "type": "scatter", "xsrc": "Mungo:0:8fd9d9", "ysrc": "Mungo:0:12d4ba", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:117dda", "hoverinfo": "text", "showlegend": true, "legendgroup": "China" }, { "line": { "dash": "solid", "color": "rgba(0,192,148,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Germany", "type": "scatter", "xsrc": "Mungo:0:def269", "ysrc": "Mungo:0:e1b948", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:dbdb2b", "hoverinfo": "text", "showlegend": true, "legendgroup": "Germany" }, { "line": { "dash": "solid", "color": "rgba(0,182,235,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "Japan", "type": "scatter", "xsrc": "Mungo:0:69619f", "ysrc": "Mungo:0:9ff8e4", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:7fa6ab", "hoverinfo": "text", "showlegend": true, "legendgroup": "Japan" }, { "line": { "dash": "solid", "color": "rgba(165,138,255,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United Kingdom", "type": "scatter", "xsrc": "Mungo:0:723fd6", "ysrc": "Mungo:0:1e4e79", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:1fc614", "hoverinfo": "text", "showlegend": true, "legendgroup": "United Kingdom" }, { "line": { "dash": "solid", "color": "rgba(251,97,215,1)", "width": 1.8897637795275593 }, "mode": "lines", "name": "United States", "type": "scatter", "xsrc": "Mungo:0:17a690", "ysrc": "Mungo:0:2e04a8", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "Mungo:0:36aa2f", "hoverinfo": "text", "showlegend": true, "legendgroup": "United States" } ], "layout": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "xaxis": { "type": "linear", "range": [ 10537, 19777 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Year" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.6529680365296806, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "2000", "2005", "2010", "2015", "2020" ], "tickvals": [ 10957, 12784, 14610, 16436, 18262 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "2000", "2005", "2010", "2015", "2020" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -2.6843984723091125, 25.539913713932037 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Inflation %" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": true, "showline": false, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "0", "5", "10", "15", "20", "25" ], "tickvals": [ 0, 5, 10, 15, 20, 25 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(255,255,255,1)", "gridwidth": 0.66417600664176, "linecolor": null, "linewidth": 0, "tickangle": 0, "tickcolor": "rgba(51,51,51,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "0", "5", "10", "15", "20", "25" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 11.68949771689498, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "font": { "size": 14.611872146118722, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Legend" }, "bgcolor": "rgba(255,255,255,1)", "bordercolor": "transparent", "borderwidth": 1.8897637795275593 }, "margin": { "b": 41.775342465753425, "l": 37.26027397260275, "r": 7.305936073059362, "t": 27.821004566210043 }, "shapes": [ { "x0": 0, "x1": 1, "y0": 0, "y1": 1, "line": { "color": null, "width": 0, "linetype": [] }, "type": "rect", "xref": "paper", "yref": "paper", "fillcolor": null } ], "barmode": "relative", "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(235,235,235,1)", "paper_bgcolor": "rgba(255,255,255,1)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Mungo", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-04 23:56:36", "mapbox_access_tokens": null, "has_password": null, "username": "Mungo", "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-13T02:25:42.006998Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~LaisAvelar/1.embed", "fid": "LaisAvelar:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/LaisAvelar/1/9_VLXB1QJQK9BIE4ARD2ATTNBBKS874U.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/LaisAvelar/1/2_CTOKXU5HQE9I0Q56SWMIN4WOC84GCZ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/LaisAvelar/1/8_5VCF6YA415GURORERZV4IDZDFE20ZU.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/LaisAvelar/1/9_VLXB1QJQK9BIE4ARD2ATTNBBKS874U.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/LaisAvelar:1", "plots": "https://api.plotly.com/v2/plots/LaisAvelar:1", "parent": "https://api.plotly.com/v2/folders/home?user=LaisAvelar" }, "owner": "LaisAvelar", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~LaisAvelar/1/", "world_readable": true, "date_modified": "2024-04-13T02:34:11.582Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~LaisAvelar/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "type": "scatter", "xsrc": "LaisAvelar:2:1e1fc5", "ysrc": "LaisAvelar:2:73937d" } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ 0, 1903 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 228.55555555555557, 2177.4444444444443 ], "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/~LaisAvelar", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.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-13 02:25:15", "mapbox_access_tokens": null, "has_password": null, "username": "LaisAvelar", "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-13T01:35:52.175334Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~marantrod/21.embed", "fid": "marantrod:21", "filename": "Plot 21", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/marantrod/21/9_B6M0K86N1KUH9S2ELY20NSBJTGW3P2.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/marantrod/21/2_G7U878SJ3C8K3P8IELP9SEAJ7SC7Y7.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marantrod/21/8_6146B9ECMQ3WJJIV4SRNZCUVOMNXH8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marantrod/21/9_B6M0K86N1KUH9S2ELY20NSBJTGW3P2.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/marantrod:21", "plots": "https://api.plotly.com/v2/plots/marantrod:21", "parent": "https://api.plotly.com/v2/folders/home?user=marantrod" }, "owner": "marantrod", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 3, "web_url": "https://chart-studio.plotly.com/~marantrod/21/", "world_readable": true, "date_modified": "2024-04-13T05:54:18.751Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~marantrod/21/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "type": "scatter", "xsrc": "marantrod:20:1bd076", "ysrc": "marantrod:20:03a74b" } ], "frames": [], "layout": { "font": { "size": 20 }, "xaxis": { "type": "category", "range": [ 0, 5 ], "title": { "text": "Dificultades funcionales " }, "autorange": false }, "yaxis": { "type": "linear", "range": [ 0.8888888888888893, 23.111111111111107 ], "title": { "text": "Prevalencia" }, "autorange": false }, "autosize": true, "dragmode": "pan", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~marantrod", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 18:21:44", "mapbox_access_tokens": null, "has_password": null, "username": "marantrod", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "