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=cD0yMDI0LTA0LTIxKzAwJTNBNDMlM0ExMy44NjQzOTMlMkIwMCUzQTAw&format=api
https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTIwKzIyJTNBNDUlM0E1MS4yMzA0OTUlMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yMSswMCUzQTE4JTNBMTcuNjgxNTQyJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-21T00:18:17.681542Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~MauricioViera95/110.embed", "fid": "MauricioViera95:110", "filename": "GRAFICA_DIA_23", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/110/9_VPGJQNKMQVASL01BF22DSGGJR1ZTU1.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/110/2_43NXOAVITIDF31KG4MWNXYAIGOTWPW.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/110/8_LHBINF5ES2PZJGYBTOG960I2KRKUCM.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/110/9_VPGJQNKMQVASL01BF22DSGGJR1ZTU1.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/MauricioViera95:110", "plots": "https://api.plotly.com/v2/plots/MauricioViera95:110", "parent": "https://api.plotly.com/v2/folders/home?user=MauricioViera95" }, "owner": "MauricioViera95", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~MauricioViera95/110/", "world_readable": true, "date_modified": "2024-04-24T01:55:47.154Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~MauricioViera95/110/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "name": "", "type": "histogram2d", "xgap": 3, "xsrc": "MauricioViera95:130:347434", "ygap": 3, "ysrc": "MauricioViera95:130:b6375c", "zsrc": "MauricioViera95:130:90153c", "xaxis": "x", "yaxis": "y", "histfunc": "sum", "coloraxis": "coloraxis", "xbingroup": "x", "ybingroup": "y", "hovertemplate": "Año=%{x}<br>Categorías de Uso=%{y}<br>sum of Uso del Agua (Bgal/d)=%{z}<extra></extra>" } ], "layout": { "title": { "x": 0.5, "text": "<b>Uso del Agua en EE.UU. a lo Largo del Tiempo por Categoría</b><br><sub>Esta visualización muestra el uso del agua en diversas categorías a lo largo del tiempo.</sub>" }, "xaxis": { "title": { "text": "Año" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "tickmode": "linear" }, "yaxis": { "title": { "text": "Categoría de Uso" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "legend": { "tracegroupgap": 0 }, "margin": { "b": 100, "l": 40, "r": 40, "t": 100 }, "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 } } }, "coloraxis": { "colorbar": { "title": { "text": "Uso del Agua (Bgal/d)" } }, "colorscale": [ [ 0.0, "#000004" ], [ 0.1111111111111111, "#1b0c41" ], [ 0.2222222222222222, "#4a0c6b" ], [ 0.3333333333333333, "#781c6d" ], [ 0.4444444444444444, "#a52c60" ], [ 0.5555555555555556, "#cf4446" ], [ 0.6666666666666666, "#ed6925" ], [ 0.7777777777777778, "#fb9b06" ], [ 0.8888888888888888, "#f7d13d" ], [ 1.0, "#fcffa4" ] ] }, "annotations": [ { "x": 0.5, "y": -0.27, "font": { "size": 11 }, "text": "Autor: Mauricio Viera<br>Fuente: USGS", "xref": "paper", "yref": "paper", "align": "left", "showarrow": false } ] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~MauricioViera95", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49R05DPFFZJELCGYGXUTSF6RAJCHGP.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-02 03:42:34", "mapbox_access_tokens": null, "has_password": null, "username": "MauricioViera95", "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-21T00:09:32.745084Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~sumanthgajula1/1.embed", "fid": "sumanthgajula1:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/sumanthgajula1/1/9_G1EFZ0CVCXPDCTUG5CP8GU1YNFDDFF.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/sumanthgajula1/1/2_IKHBEAEZPOHOFGBILFJZUDJTDH6OIB.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sumanthgajula1/1/8_8RMTGHXF3L69NM018JQXTMIW33D7JY.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sumanthgajula1/1/9_G1EFZ0CVCXPDCTUG5CP8GU1YNFDDFF.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/sumanthgajula1:1", "plots": "https://api.plotly.com/v2/plots/sumanthgajula1:1", "parent": "https://api.plotly.com/v2/folders/home?user=sumanthgajula1" }, "owner": "sumanthgajula1", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~sumanthgajula1/1/", "world_readable": true, "date_modified": "2024-04-21T00:09:48.679Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~sumanthgajula1/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "type": "scatter3d", "xsrc": "sumanthgajula1:0:b7cd94", "ysrc": "sumanthgajula1:0:fd0066", "zsrc": "sumanthgajula1:0:77a001", "orientation": "v" } ], "frames": [], "layout": { "scene": { "camera": { "projection": { "type": "perspective" } }, "dragmode": "pan", "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "xaxis": { "type": "linear", "range": [ 9.5, 20.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 49110.52631578947 ], "autorange": true }, "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/~sumanthgajula1", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.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-21 00:09:18", "mapbox_access_tokens": null, "has_password": null, "username": "sumanthgajula1", "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-21T00:09:19.981346Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~dylangerlach/1.embed", "fid": "dylangerlach:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/dylangerlach/1/9_G67Y1KRF2FSQOVV35MG5J1I20A56WK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/dylangerlach/1/2_S8A2MUS3QBZ3FZRVLPIFA6L9NLVHH9.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dylangerlach/1/8_XS0R3QM7O77S4H11G3D1DESMALLTT9.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dylangerlach/1/9_G67Y1KRF2FSQOVV35MG5J1I20A56WK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/dylangerlach:1", "plots": "https://api.plotly.com/v2/plots/dylangerlach:1", "parent": "https://api.plotly.com/v2/folders/home?user=dylangerlach" }, "owner": "dylangerlach", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~dylangerlach/1/", "world_readable": true, "date_modified": "2024-04-21T00:09:19.992Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~dylangerlach/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "", "y": "A" } }, "mode": "markers", "type": "box", "ysrc": "dylangerlach:0:5139ff", "boxpoints": false, "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "category", "range": [ -0.5, 0.5 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ 0.7722222222222224, 5.3277777777777775 ], "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" }, "hovermode": "closest" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~dylangerlach", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.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-21 00:03:02", "mapbox_access_tokens": null, "has_password": null, "username": "dylangerlach", "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-21T00:07:12.744648Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~MauricioViera95/108.embed", "fid": "MauricioViera95:108", "filename": "GRAFICA_DIA_22", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/108/9_79XPJG69MREKUWDP6NLFBEXISSCVJT.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/108/2_RU49S8OL6BXBGCNVY4DQ910XZEW18K.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/108/8_2Q54LJ8Z1SWWM7XPPA44EZJPGDFLA5.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/108/9_79XPJG69MREKUWDP6NLFBEXISSCVJT.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/MauricioViera95:108", "plots": "https://api.plotly.com/v2/plots/MauricioViera95:108", "parent": "https://api.plotly.com/v2/folders/home?user=MauricioViera95" }, "owner": "MauricioViera95", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~MauricioViera95/108/", "world_readable": true, "date_modified": "2024-04-21T00:07:12.754Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~MauricioViera95/108/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:b9be89", "ysrc": "MauricioViera95:107:c9be4a", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:ab94b2", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:a601f8", "ysrc": "MauricioViera95:107:80cf36", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:b649ff", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:afb93d", "ysrc": "MauricioViera95:107:b08414", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:8b11af", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:71ee30", "ysrc": "MauricioViera95:107:8c5acf", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:01aa4f", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "frames": [ { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:9b9f68", "ysrc": "MauricioViera95:107:b216b1", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:25aa36", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:0d9dfc", "ysrc": "MauricioViera95:107:c895db", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:444b19", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:f1804e", "ysrc": "MauricioViera95:107:cc89fd", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:166c53", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:0eda03", "ysrc": "MauricioViera95:107:a6d185", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:8c94b5", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1960<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "name": "1960" }, { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:46fb19", "ysrc": "MauricioViera95:107:a1995b", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:6fe450", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1970<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:201be0", "ysrc": "MauricioViera95:107:32a33b", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:309fc9", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1970<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:a691cd", "ysrc": "MauricioViera95:107:192d64", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:6bbbdb", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1970<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:f33bdb", "ysrc": "MauricioViera95:107:29c751", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:0e879f", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1970<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "name": "1970" }, { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:4cc0ee", "ysrc": "MauricioViera95:107:324d60", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:5f9d91", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1980<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:c76ca7", "ysrc": "MauricioViera95:107:6c99a5", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:7c4fb0", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1980<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:de19ed", "ysrc": "MauricioViera95:107:8e1fb5", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:fcb8fb", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1980<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:b186a0", "ysrc": "MauricioViera95:107:79997f", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:b4bccf", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1980<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "name": "1980" }, { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:48c047", "ysrc": "MauricioViera95:107:11ad5a", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:d111ed", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1990<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:296431", "ysrc": "MauricioViera95:107:917d25", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:1dac93", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1990<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:cff84c", "ysrc": "MauricioViera95:107:011678", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:1f9a5f", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1990<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:60455f", "ysrc": "MauricioViera95:107:6ea42e", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:563300", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=1990<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "name": "1990" }, { "data": [ { "name": "España", "type": "bar", "xsrc": "MauricioViera95:107:d395c8", "ysrc": "MauricioViera95:107:32648a", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:0a82d5", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "España", "offsetgroup": "España", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=2000<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Estados Unidos", "type": "bar", "xsrc": "MauricioViera95:107:1490c6", "ysrc": "MauricioViera95:107:1231bb", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:15b940", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Estados Unidos", "offsetgroup": "Estados Unidos", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=2000<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Argentina", "type": "bar", "xsrc": "MauricioViera95:107:f3e797", "ysrc": "MauricioViera95:107:4d0616", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:bbc7e4", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Argentina", "offsetgroup": "Argentina", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=2000<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" }, { "name": "Alemania", "type": "bar", "xsrc": "MauricioViera95:107:3dcded", "ysrc": "MauricioViera95:107:679399", "xaxis": "x", "yaxis": "y", "idssrc": "MauricioViera95:107:aeaf25", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "showlegend": true, "legendgroup": "Alemania", "offsetgroup": "Alemania", "orientation": "v", "textposition": "auto", "hovertemplate": "País de Destino=%{x}<br>Year=2000<br>Número de Migrantes=%{y}<extra></extra>", "alignmentgroup": "True" } ], "name": "2000" } ], "layout": { "title": { "text": "<b>Evolución de la Migración Ecuatoriana por País Destino</b>" }, "width": 1000, "xaxis": { "title": { "text": "País de Destino" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "categoryarray": [ "España", "Estados Unidos", "Argentina", "Alemania" ], "categoryorder": "array" }, "yaxis": { "range": [ 0, 302705 ], "title": { "text": "Número de Migrantes" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 600, "legend": { "title": { "text": "País de Destino" }, "tracegroupgap": 0 }, "margin": { "b": 200, "t": 100 }, "barmode": "relative", "sliders": [ { "x": 0.1, "y": 0, "len": 0.9, "pad": { "b": 10, "t": 60 }, "steps": [ { "args": [ [ "1960" ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "1960", "method": "animate" }, { "args": [ [ "1970" ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "1970", "method": "animate" }, { "args": [ [ "1980" ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "1980", "method": "animate" }, { "args": [ [ "1990" ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "1990", "method": "animate" }, { "args": [ [ "2000" ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "2000", "method": "animate" } ], "active": 0, "xanchor": "left", "yanchor": "top", "currentvalue": { "prefix": "Year=" } } ], "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 } } }, "annotations": [ { "x": 0, "y": 1.12, "text": "Este gráfico muestra cómo ha cambiado la cantidad de migrantes ecuatorianos hacia diferentes países a lo largo del tiempo.", "xref": "paper", "yref": "paper", "showarrow": false }, { "x": 0.5, "y": -0.6, "font": { "size": 10, "color": "grey" }, "text": "Autor: Mauricio Viera<br>Fuente: The World Bank", "xref": "paper", "yref": "paper", "align": "center", "showarrow": false } ], "updatemenus": [ { "x": 0.1, "y": 0, "pad": { "r": 10, "t": 70 }, "type": "buttons", "buttons": [ { "args": [ null, { "mode": "immediate", "frame": { "redraw": true, "duration": 500 }, "transition": { "easing": "linear", "duration": 500 }, "fromcurrent": true } ], "label": "▶", "method": "animate" }, { "args": [ [ null ], { "mode": "immediate", "frame": { "redraw": true, "duration": 0 }, "transition": { "easing": "linear", "duration": 0 }, "fromcurrent": true } ], "label": "◼", "method": "animate" } ], "xanchor": "right", "yanchor": "top", "direction": "left", "showactive": false } ] } }, "height": 600, "width": 1000, "user": { "profile_url": "https://chart-studio.plotly.com/~MauricioViera95", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49R05DPFFZJELCGYGXUTSF6RAJCHGP.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-02 03:42:34", "mapbox_access_tokens": null, "has_password": null, "username": "MauricioViera95", "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-21T00:00:24.354350Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~malearis05/3.embed", "fid": "malearis05:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/malearis05/3/9_K3EJPBIPZ8KZCC67NI4UTRXXLREFLT.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/malearis05/3/2_30QB7TCPZ0004W762592VT1MHT6MF7.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malearis05/3/8_TVXBX3KXPX9SUTMJU1XBOZ2YLONK2K.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/malearis05/3/9_K3EJPBIPZ8KZCC67NI4UTRXXLREFLT.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/malearis05:3", "plots": "https://api.plotly.com/v2/plots/malearis05:3", "parent": "https://api.plotly.com/v2/folders/home?user=malearis05" }, "owner": "malearis05", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~malearis05/3/", "world_readable": true, "date_modified": "2024-04-21T00:00:24.369Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~malearis05/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "10be7d", "meta": { "columnNames": { "x": "ΔT (°c)", "y": "ΔL (mm)", "error_x": { "array": "δT (°c)" }, "error_y": { "array": "δL (mm)" } } }, "mode": "markers", "type": "scatter", "xsrc": "malearis05:2:255f2b", "ysrc": "malearis05:2:05a885", "error_x": { "meta": { "columnNames": { "array": "δT (°c)" } }, "type": "data", "visible": true, "arraysrc": "malearis05:2:98366d", "symmetric": true }, "error_y": { "meta": { "columnNames": { "array": "δL (mm)" } }, "type": "data", "visible": true, "arraysrc": "malearis05:2:d65b9b", "symmetric": true } }, { "uid": "d802b2", "transforms": [ { "rms": "", "type": "fit", "inputUid": "10be7d", "regressor": "x", "parameters": [ { "hold": false, "name": "m", "error": 0.0003592018029809864, "value": 0.012619457445777865 }, { "hold": false, "name": "b", "error": 0.013287963156908162, "value": -0.01834883629177413 } ], "regressand": "y", "correlation": "", "fitfunction": "m*x + b", "inputxrange": [], "outputxrange": [], "interpolation": 50 } ] } ], "frames": [], "layout": { "title": { "text": "variación de la longitud en función de la temperatura" }, "xaxis": { "type": "linear", "range": [ -4.326244177494485, 73.64874969355235 ], "title": { "text": "variación de temperatura (°c)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.07025641025641025, 0.9502564102564103 ], "title": { "text": "variación de longitud (mm)" }, "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~malearis05", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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-20 20:43:51", "mapbox_access_tokens": null, "has_password": null, "username": "malearis05", "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-20T23:51:35.450843Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~malearis05/1.embed", "fid": "malearis05:1", "filename": "Male", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/malearis05/1/9_6091FIQPVOTUJ13FQ0HLJXMVI7723U.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/malearis05/1/2_YHXHYO5QGYYP829ASH85CF8P046G50.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/malearis05/1/8_G2S05B56HQGYBAS3WGMITXJGQHFIV2.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/malearis05/1/9_6091FIQPVOTUJ13FQ0HLJXMVI7723U.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/malearis05:1", "plots": "https://api.plotly.com/v2/plots/malearis05:1", "parent": "https://api.plotly.com/v2/folders/home?user=malearis05" }, "owner": "malearis05", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~malearis05/1/", "world_readable": true, "date_modified": "2024-04-20T23:52:19.512Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~malearis05/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "d1cbe6", "meta": { "columnNames": { "x": "ΔT (°c)", "y": "ΔL (mm)", "error_x": { "array": "δT (°c)" }, "error_y": { "array": "δL (mm)" } } }, "mode": "markers", "type": "scatter", "xsrc": "malearis05:0:15d574", "ysrc": "malearis05:0:dd632a", "error_x": { "meta": { "columnNames": { "array": "δT (°c)" } }, "type": "data", "visible": true, "arraysrc": "malearis05:0:95a6f3", "symmetric": true }, "error_y": { "meta": { "columnNames": { "array": "δL (mm)" } }, "type": "data", "visible": true, "arraysrc": "malearis05:0:3d8839", "symmetric": true } }, { "uid": "935054", "transforms": [ { "rms": "", "type": "fit", "inputUid": "d1cbe6", "regressor": "x", "parameters": [ { "hold": false, "name": "m", "error": 0.0003592018029809864, "value": 0.012619457445777865 }, { "hold": false, "name": "b", "error": 0.013287963156908162, "value": -0.01834883629177413 } ], "regressand": "y", "correlation": "", "fitfunction": "m*x + b", "inputxrange": [], "outputxrange": [], "interpolation": 50 } ] } ], "frames": [], "layout": { "title": { "text": "variación de la longitud en función de la temperatura" }, "xaxis": { "type": "linear", "range": [ -4.326244177494485, 73.64874969355235 ], "title": { "text": "variación de temperatura (°c)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.07025641025641025, 0.9502564102564103 ], "title": { "text": "variación de longitud (mm)" }, "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~malearis05", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.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-20 20:43:51", "mapbox_access_tokens": null, "has_password": null, "username": "malearis05", "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-20T23:50:35.016083Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~rf1212/7.embed", "fid": "rf1212:7", "filename": "Plot 7", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/rf1212/7/9_38CUKBCN6OA4YHK9ESQVR4O1NBLPI7.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/rf1212/7/2_Y4Z47OPRCJH3T5LYURMZABV4T42A20.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/7/8_IJ2DS7VIZ1P6AZ1J5CTOK2YMET3ER8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rf1212/7/9_38CUKBCN6OA4YHK9ESQVR4O1NBLPI7.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/rf1212:7", "plots": "https://api.plotly.com/v2/plots/rf1212:7", "parent": "https://api.plotly.com/v2/folders/home?user=rf1212" }, "owner": "rf1212", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~rf1212/7/", "world_readable": true, "date_modified": "2024-04-20T23:50:35.028Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~rf1212/7/", "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": "rf1212:6:a60372", "ysrc": "rf1212:6:83f1d2", "zsrc": "rf1212:6:4ef466" }, { "meta": { "columnNames": { "x": "E", "y": "G", "z": "F" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:fb1203", "ysrc": "rf1212:6:828e95", "zsrc": "rf1212:6:2dc470" }, { "meta": { "columnNames": { "x": "I", "y": "K", "z": "J" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:468d90", "ysrc": "rf1212:6:62aaba", "zsrc": "rf1212:6:2a9e5c" }, { "meta": { "columnNames": { "x": "M", "y": "O", "z": "N" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:e8e447", "ysrc": "rf1212:6:6820af", "zsrc": "rf1212:6:d6936b" }, { "meta": { "columnNames": { "x": "Q", "y": "S", "z": "R" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:8004c0", "ysrc": "rf1212:6:dfe999", "zsrc": "rf1212:6:f71c9f" }, { "meta": { "columnNames": { "x": "U", "y": "W", "z": "V" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:83b7dc", "ysrc": "rf1212:6:70fa7e", "zsrc": "rf1212:6:f2926f" }, { "meta": { "columnNames": { "x": "Y", "y": "AA", "z": "Z" } }, "mode": "markers", "type": "scatter3d", "xsrc": "rf1212:6:130385", "ysrc": "rf1212:6:ded299", "zsrc": "rf1212:6:e69b5e" } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "range": [ -2, 2 ], "autorange": false }, "yaxis": { "type": "linear", "range": [ -2, 2 ], "autorange": false }, "zaxis": { "type": "linear", "range": [ -2, 4 ], "autorange": false }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": -0.1375283519469722, "y": 2.0370566716504603, "z": 0.3441734728037085 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "aspectmode": "auto", "aspectratio": { "x": 1.1603972084031948, "y": 0.9283177667225558, "z": 0.9283177667225558 } }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~rf1212", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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-20 03:15:33", "mapbox_access_tokens": null, "has_password": null, "username": "rf1212", "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-20T23:46:47.171514Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~MauricioViera95/106.embed", "fid": "MauricioViera95:106", "filename": "GRAFICA_DIA_21", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/106/9_RXF4WXKX00TMN5PTUD3JP6YKR4X18W.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/106/2_O67UWZGO38SLPJNV5OGOKIYYSJZDCY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/106/8_NREVTY3J0NUFPKCU4JGE9CT0RDZNJ6.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/106/9_RXF4WXKX00TMN5PTUD3JP6YKR4X18W.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/MauricioViera95:106", "plots": "https://api.plotly.com/v2/plots/MauricioViera95:106", "parent": "https://api.plotly.com/v2/folders/home?user=MauricioViera95" }, "owner": "MauricioViera95", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~MauricioViera95/106/", "world_readable": true, "date_modified": "2024-04-20T23:46:47.182Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~MauricioViera95/106/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "#636efa" }, "mode": "lines", "name": "Africa", "type": "scatter", "xsrc": "MauricioViera95:105:c52606", "ysrc": "MauricioViera95:105:c61267", "xaxis": "x", "yaxis": "y", "marker": { "symbol": "circle" }, "showlegend": true, "legendgroup": "Africa", "orientation": "v", "hovertemplate": "Entity=Africa<br>Año=%{x}<br>% de Energía Renovable=%{y}<extra></extra>" }, { "line": { "dash": "solid", "color": "#EF553B" }, "mode": "lines", "name": "Europe", "type": "scatter", "xsrc": "MauricioViera95:105:25ec1e", "ysrc": "MauricioViera95:105:345608", "xaxis": "x", "yaxis": "y", "marker": { "symbol": "circle" }, "showlegend": true, "legendgroup": "Europe", "orientation": "v", "hovertemplate": "Entity=Europe<br>Año=%{x}<br>% de Energía Renovable=%{y}<extra></extra>" }, { "line": { "dash": "solid", "color": "#00cc96" }, "mode": "lines", "name": "North America", "type": "scatter", "xsrc": "MauricioViera95:105:15d397", "ysrc": "MauricioViera95:105:c9bd36", "xaxis": "x", "yaxis": "y", "marker": { "symbol": "circle" }, "showlegend": true, "legendgroup": "North America", "orientation": "v", "hovertemplate": "Entity=North America<br>Año=%{x}<br>% de Energía Renovable=%{y}<extra></extra>" }, { "line": { "dash": "solid", "color": "#ab63fa" }, "mode": "lines", "name": "South America", "type": "scatter", "xsrc": "MauricioViera95:105:dc3ae8", "ysrc": "MauricioViera95:105:9ad4eb", "xaxis": "x", "yaxis": "y", "marker": { "symbol": "circle" }, "showlegend": true, "legendgroup": "South America", "orientation": "v", "hovertemplate": "Entity=South America<br>Año=%{x}<br>% de Energía Renovable=%{y}<extra></extra>" } ], "layout": { "font": { "size": 12, "color": "#7f7f7f", "family": "Arial, sans-serif" }, "title": { "text": "<b>Evolución del Porcentaje de Energía Renovable por Región</b>" }, "xaxis": { "type": "date", "title": { "text": "Año" }, "anchor": "y", "domain": [ 0.0, 1.0 ], "rangeslider": { "bgcolor": "rgba(150,200,250,0.5)", "visible": true }, "rangeselector": { "bgcolor": "rgba(150,200,250,0.5)", "buttons": [ { "step": "year", "count": 5, "label": "5a", "stepmode": "backward" }, { "step": "year", "count": 10, "label": "10a", "stepmode": "backward" }, { "step": "year", "count": 20, "label": "20a", "stepmode": "backward" }, { "step": "all", "label": "Todo" } ] } }, "yaxis": { "title": { "text": "% de Energía Renovable" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "height": 800, "legend": { "x": 0.01, "y": 0.99, "title": { "text": "Región" }, "xanchor": "left", "yanchor": "top", "tracegroupgap": 0 }, "margin": { "t": 100 }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "white", "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": "#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 }, "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": "white", "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": "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": "", "title": { "standoff": 15 }, "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "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", "#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": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "annotations": [ { "x": 0.55, "y": 1.07, "font": { "size": 13, "color": "rgb(150,150,150)" }, "text": "Este gráfico muestra cómo ha variado la adopción de<br> energías renovables en distintas regiones a lo largo del tiempo.", "xref": "paper", "yref": "paper", "xanchor": "center", "yanchor": "top", "showarrow": false }, { "x": 0.5, "y": -0.38, "font": { "size": 12, "color": "rgb(150,150,150)" }, "text": "Fuente: Renewable Energy Database, Autor: Mauricio Viera", "xref": "paper", "yref": "paper", "xanchor": "center", "yanchor": "top", "showarrow": false } ] } }, "height": 800, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~MauricioViera95", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49R05DPFFZJELCGYGXUTSF6RAJCHGP.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-02 03:42:34", "mapbox_access_tokens": null, "has_password": null, "username": "MauricioViera95", "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-20T23:30:37.459923Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~MauricioViera95/104.embed", "fid": "MauricioViera95:104", "filename": "GRAFICA_DIA_20", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/104/9_ZHZQUO939HW1EACR96Z5YS0GVV8QUA.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/104/2_SNWF5RBWFU31NJPSLBDBY43BYTG5LY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/104/8_BWOWTBKLHRLC24U6ZNJ9JEYUI6ZUMQ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/104/9_ZHZQUO939HW1EACR96Z5YS0GVV8QUA.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/MauricioViera95:104", "plots": "https://api.plotly.com/v2/plots/MauricioViera95:104", "parent": "https://api.plotly.com/v2/folders/home?user=MauricioViera95" }, "owner": "MauricioViera95", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~MauricioViera95/104/", "world_readable": true, "date_modified": "2024-04-20T23:30:37.472Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~MauricioViera95/104/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "name": "Year 2012", "type": "scatter", "xsrc": "MauricioViera95:103:c1ab5c", "ysrc": "MauricioViera95:103:0f5a6a", "xaxis": "x", "yaxis": "y" }, { "mode": "lines", "name": "Tendencia 2012", "type": "scatter", "xsrc": "MauricioViera95:103:dfc257", "ysrc": "MauricioViera95:103:e92ced", "xaxis": "x", "yaxis": "y" }, { "mode": "markers", "name": "Year 2013", "type": "scatter", "xsrc": "MauricioViera95:103:87f10b", "ysrc": "MauricioViera95:103:ca3801", "xaxis": "x2", "yaxis": "y2" }, { "mode": "lines", "name": "Tendencia 2013", "type": "scatter", "xsrc": "MauricioViera95:103:839b3d", "ysrc": "MauricioViera95:103:4bd5df", "xaxis": "x2", "yaxis": "y2" }, { "mode": "markers", "name": "Year 2014", "type": "scatter", "xsrc": "MauricioViera95:103:9629c4", "ysrc": "MauricioViera95:103:f16ff8", "xaxis": "x3", "yaxis": "y3" }, { "mode": "lines", "name": "Tendencia 2014", "type": "scatter", "xsrc": "MauricioViera95:103:9f6e12", "ysrc": "MauricioViera95:103:a8da9c", "xaxis": "x3", "yaxis": "y3" }, { "mode": "markers", "name": "Year 2015", "type": "scatter", "xsrc": "MauricioViera95:103:b02bea", "ysrc": "MauricioViera95:103:060f86", "xaxis": "x4", "yaxis": "y4" }, { "mode": "lines", "name": "Tendencia 2015", "type": "scatter", "xsrc": "MauricioViera95:103:d70b2c", "ysrc": "MauricioViera95:103:67114c", "xaxis": "x4", "yaxis": "y4" }, { "mode": "markers", "name": "Year 2016", "type": "scatter", "xsrc": "MauricioViera95:103:f5b79d", "ysrc": "MauricioViera95:103:e06752", "xaxis": "x5", "yaxis": "y5" }, { "mode": "lines", "name": "Tendencia 2016", "type": "scatter", "xsrc": "MauricioViera95:103:2ca120", "ysrc": "MauricioViera95:103:54d23f", "xaxis": "x5", "yaxis": "y5" }, { "mode": "markers", "name": "Year 2017", "type": "scatter", "xsrc": "MauricioViera95:103:b94b28", "ysrc": "MauricioViera95:103:b0e983", "xaxis": "x6", "yaxis": "y6" }, { "mode": "lines", "name": "Tendencia 2017", "type": "scatter", "xsrc": "MauricioViera95:103:caceb2", "ysrc": "MauricioViera95:103:ee25b8", "xaxis": "x6", "yaxis": "y6" } ], "layout": { "title": { "x": 0.5, "y": 0.98, "text": "<b>Correlación Diaria por Año entre Temperatura y Humedad en la ciudad de Los Ángeles</b>", "xanchor": "center", "yanchor": "top" }, "width": 1100, "xaxis": { "title": { "text": "Humedad (%)" }, "anchor": "y", "domain": [ 0.0, 0.2888888888888889 ] }, "yaxis": { "title": { "text": "Temperatura (°C)" }, "anchor": "x", "domain": [ 0.575, 1.0 ] }, "height": 850, "margin": { "b": 120, "t": 120 }, "xaxis2": { "title": { "text": "Humedad (%)" }, "anchor": "y2", "domain": [ 0.35555555555555557, 0.6444444444444445 ] }, "xaxis3": { "title": { "text": "Humedad (%)" }, "anchor": "y3", "domain": [ 0.7111111111111111, 1.0 ] }, "xaxis4": { "title": { "text": "Humedad (%)" }, "anchor": "y4", "domain": [ 0.0, 0.2888888888888889 ] }, "xaxis5": { "title": { "text": "Humedad (%)" }, "anchor": "y5", "domain": [ 0.35555555555555557, 0.6444444444444445 ] }, "xaxis6": { "title": { "text": "Humedad (%)" }, "anchor": "y6", "domain": [ 0.7111111111111111, 1.0 ] }, "yaxis2": { "title": { "text": "Temperatura (°C)" }, "anchor": "x2", "domain": [ 0.575, 1.0 ] }, "yaxis3": { "title": { "text": "Temperatura (°C)" }, "anchor": "x3", "domain": [ 0.575, 1.0 ] }, "yaxis4": { "title": { "text": "Temperatura (°C)" }, "anchor": "x4", "domain": [ 0.0, 0.425 ] }, "yaxis5": { "title": { "text": "Temperatura (°C)" }, "anchor": "x5", "domain": [ 0.0, 0.425 ] }, "yaxis6": { "title": { "text": "Temperatura (°C)" }, "anchor": "x6", "domain": [ 0.0, 0.425 ] }, "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 } } }, "annotations": [ { "x": 0, "y": 1.05, "font": { "size": 16 }, "text": "Este gráfico muestra la correlación diaria entre la humedad y la temperatura para diferentes años,<br>con una línea de tendencia que indica la dirección general de la relación.", "xref": "paper", "yref": "paper", "align": "left", "xanchor": "left", "yanchor": "bottom", "showarrow": false }, { "x": 0.5, "y": -0.11, "font": { "size": 16 }, "text": "Autor: Mauricio Viera<br>Fuente: Historical Hourly Weather Data 2012-2017", "xref": "paper", "yref": "paper", "align": "center", "xanchor": "center", "yanchor": "top", "showarrow": false }, { "x": 0, "y": 1.05, "font": { "size": 16 }, "text": "Este gráfico muestra la correlación diaria entre la humedad y la temperatura para diferentes años,<br>con una línea de tendencia que indica la dirección general de la relación.", "xref": "paper", "yref": "paper", "align": "left", "xanchor": "left", "yanchor": "bottom", "showarrow": false }, { "x": 0.5, "y": -0.11, "font": { "size": 16 }, "text": "Autor: Mauricio Viera<br>Fuente: Historical Hourly Weather Data 2012-2017", "xref": "paper", "yref": "paper", "align": "center", "xanchor": "center", "yanchor": "top", "showarrow": false }, { "x": 0, "y": 1.05, "font": { "size": 16 }, "text": "Este gráfico muestra la correlación diaria entre la humedad y la temperatura para diferentes años,<br>con una línea de tendencia que indica la dirección general de la relación.", "xref": "paper", "yref": "paper", "align": "left", "xanchor": "left", "yanchor": "bottom", "showarrow": false }, { "x": 0.5, "y": -0.11, "font": { "size": 16 }, "text": "Autor: Mauricio Viera<br>Fuente: Historical Hourly Weather Data 2012-2017", "xref": "paper", "yref": "paper", "align": "center", "xanchor": "center", "yanchor": "top", "showarrow": false } ] } }, "height": 850, "width": 1100, "user": { "profile_url": "https://chart-studio.plotly.com/~MauricioViera95", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49R05DPFFZJELCGYGXUTSF6RAJCHGP.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-02 03:42:34", "mapbox_access_tokens": null, "has_password": null, "username": "MauricioViera95", "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-20T22:45:51.230495Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~MauricioViera95/102.embed", "fid": "MauricioViera95:102", "filename": "GRAFICA_DIA_19", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/102/9_LW33BESFVEM1EMTBHT24U7SDBG76IZ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/102/2_CPF70A18UE5RHSX5LAZBSXHDH8NRBU.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/102/8_QQF6EZAYQ638N9T4YN6NKUZVH631TV.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MauricioViera95/102/9_LW33BESFVEM1EMTBHT24U7SDBG76IZ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/MauricioViera95:102", "plots": "https://api.plotly.com/v2/plots/MauricioViera95:102", "parent": "https://api.plotly.com/v2/folders/home?user=MauricioViera95" }, "owner": "MauricioViera95", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~MauricioViera95/102/", "world_readable": true, "date_modified": "2024-04-20T22:47:25.291Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~MauricioViera95/102/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "", "type": "bar", "xsrc": "MauricioViera95:101:bc49f2", "ysrc": "MauricioViera95:101:9a27ab", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "transparent", "width": 1.8897637795275593 }, "color": "rgba(238,197,145,0.7)", "autocolorscale": false }, "basesrc": "MauricioViera95:101:cc9349", "textsrc": "MauricioViera95:101:52931e", "widthsrc": "MauricioViera95:101:6f39a4", "hoverinfo": "text", "showlegend": false, "orientation": "v", "textposition": "none" }, { "line": { "dash": "dashdot", "color": "rgba(205,91,69,0.5)", "width": 3.7795275590551185 }, "mode": "lines+markers", "type": "scatter", "xsrc": "MauricioViera95:101:7414cf", "ysrc": "MauricioViera95:101:dc63a9", "frame": null, "xaxis": "x", "yaxis": "y", "marker": { "line": { "color": "rgba(205,197,191,1)", "width": 1.8897637795275593 }, "size": 11.338582677165356, "color": "rgba(205,197,191,1)", "symbol": "circle", "opacity": 0.9, "autocolorscale": false }, "hoveron": "points", "textsrc": "MauricioViera95:101:0a520b", "hoverinfo": "text", "showlegend": false }, { "mode": "text", "type": "scatter", "xsrc": "MauricioViera95:101:1d688b", "ysrc": "MauricioViera95:101:8b6517", "frame": null, "xaxis": "x", "yaxis": "y", "hoveron": "points", "textsrc": "MauricioViera95:101:485f24", "textfont": { "size": 14.66456692913386, "color": "rgba(0,0,0,1)" }, "hoverinfo": "text", "showlegend": false, "hovertextsrc": "MauricioViera95:101:47992d" } ], "layout": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "title": { "x": 0, "font": { "size": 17.534246575342465, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Descubrimientos de Dinosaurios a lo Largo de los Años", "xref": "paper" }, "xaxis": { "type": "linear", "range": [ 1816.05, 2023.95 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Año" }, "anchor": "y", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": true, "showline": true, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "1850", "1900", "1950", "2000" ], "tickvals": [ 1850, 1900, 1950, 2000 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(235,235,235,1)", "gridwidth": 0.66417600664176, "linecolor": "rgba(0,0,0,1)", "linewidth": 0.66417600664176, "tickangle": 0, "tickcolor": "rgba(0,0,0,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "1850", "1900", "1950", "2000" ], "categoryorder": "array", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -49.300000000000004, 1035.3 ], "ticks": "outside", "title": { "font": { "size": 14.611872146118724, "color": "rgba(0,0,0,1)", "family": "" }, "text": "Cantidad de Dinosaurios Encontrados" }, "anchor": "x", "domain": [ 0, 1 ], "nticks": null, "ticklen": 3.652968036529681, "showgrid": true, "showline": true, "tickfont": { "size": 11.68949771689498, "color": "rgba(77,77,77,1)", "family": "" }, "tickmode": "array", "ticktext": [ "0", "250", "500", "750", "1000" ], "tickvals": [ 0, 250, 499.99999999999994, 750, 1000 ], "zeroline": false, "autorange": false, "gridcolor": "rgba(235,235,235,1)", "gridwidth": 0.66417600664176, "linecolor": "rgba(0,0,0,1)", "linewidth": 0.66417600664176, "tickangle": 0, "tickcolor": "rgba(0,0,0,1)", "tickwidth": 0.66417600664176, "automargin": true, "hoverformat": ".2f", "categoryarray": [ "0", "250", "500", "750", "1000" ], "categoryorder": "array", "showticklabels": true }, "legend": { "font": { "size": 11.68949771689498, "color": "rgba(0,0,0,1)", "family": "" }, "bgcolor": null, "bordercolor": null, "borderwidth": 0 }, "margin": { "b": 44.79397304074549, "l": 48.94977168949772, "r": 7.305936073059362, "t": 48.373881716544574 }, "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": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~MauricioViera95", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49R05DPFFZJELCGYGXUTSF6RAJCHGP.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-02 03:42:34", "mapbox_access_tokens": null, "has_password": null, "username": "MauricioViera95", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "