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=cD0yMDI0LTAzLTI1KzA1JTNBMzElM0E1OC45Mjg1OTclMkIwMCUzQTAw&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI1KzAyJTNBMDklM0EzMC4wMzA2NzIlMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yNSswNSUzQTI2JTNBMjcuODgwMTk1JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-03-25T05:26:27.880195Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Jonalee/6.embed", "fid": "Jonalee:6", "filename": "Rainfall Graph", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Jonalee/6/9_YD6N6MTZ9OWULS4PBNHYKMHAA3M46C.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Jonalee/6/2_DWSDMG4Q6W8DXTZ4GJ13HDPCKQR3TN.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jonalee/6/8_WTB6SC4GU3NTVVX0E4SEN7GFGIYL7B.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Jonalee/6/9_YD6N6MTZ9OWULS4PBNHYKMHAA3M46C.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Jonalee:6", "plots": "https://api.plotly.com/v2/plots/Jonalee:6", "parent": "https://api.plotly.com/v2/folders/home?user=Jonalee" }, "owner": "Jonalee", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~Jonalee/6/", "world_readable": true, "date_modified": "2024-03-25T06:08:38.055Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Jonalee/6/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(0, 100, 200)", "shape": "linear", "width": 4 }, "meta": { "columnNames": { "x": "Year", "y": "Total Rainfall (inches)" } }, "mode": "lines", "type": "scatter", "xsrc": "Jonalee:2:32960a", "ysrc": "Jonalee:2:0f0142" } ], "frames": [], "layout": { "font": { "size": 14 }, "title": { "x": 0.5, "font": { "size": 20 }, "text": "Amount of Rainfall at CSUCI" }, "xaxis": { "type": "linear", "range": [ 2013, 2022 ], "title": { "text": "Year" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 1.8599999999999999, 25.259999999999998 ], "title": { "text": "Total Rainfall (inches)" }, "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/~Jonalee", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-02-05 17:32:51", "mapbox_access_tokens": null, "has_password": null, "username": "Jonalee", "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-03-25T05:20:50.176565Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~hanaylim/17.embed", "fid": "hanaylim:17", "filename": "VVperU vs VV Prop", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/hanaylim/17/9_0J3V9MSLOYTE0SHIP1DY5P71W4AWER.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/hanaylim/17/2_8N3PZP53466WNB1OF7O8KB0J9EHHX0.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hanaylim/17/8_5K0OZI9Q6RXIO3J1QP1YDGO76AF360.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hanaylim/17/9_0J3V9MSLOYTE0SHIP1DY5P71W4AWER.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/hanaylim:17", "plots": "https://api.plotly.com/v2/plots/hanaylim:17", "parent": "https://api.plotly.com/v2/folders/home?user=hanaylim" }, "owner": "hanaylim", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 51, "web_url": "https://chart-studio.plotly.com/~hanaylim/17/", "world_readable": true, "date_modified": "2024-03-25T20:13:04.803Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~hanaylim/17/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "name": "DAU below median", "type": "scatter", "xsrc": "hanaylim:31:4f35c5", "ysrc": "hanaylim:31:6a6139", "xaxis": "x", "yaxis": "y", "marker": { "color": "#636efa", "symbol": "circle" }, "showlegend": true, "legendgroup": "DAU below median", "orientation": "v", "customdatasrc": "hanaylim:31:dc4250", "hovertemplate": "color_category=DAU below median<br>Video View Proportion=%{x}<br>Views per Unique User=%{y}<br>action_region_group=%{customdata[0]}<br>action_country_name=%{customdata[1]}<br>rg_vv_prop=%{customdata[2]}<extra></extra>" }, { "mode": "markers", "name": "vv_prop >= rg_vv_prop", "type": "scatter", "xsrc": "hanaylim:31:b0ec91", "ysrc": "hanaylim:31:862606", "xaxis": "x", "yaxis": "y", "marker": { "color": "#EF553B", "symbol": "circle" }, "showlegend": true, "legendgroup": "vv_prop >= rg_vv_prop", "orientation": "v", "customdatasrc": "hanaylim:31:9a9a7c", "hovertemplate": "color_category=vv_prop >= rg_vv_prop<br>Video View Proportion=%{x}<br>Views per Unique User=%{y}<br>action_region_group=%{customdata[0]}<br>action_country_name=%{customdata[1]}<br>rg_vv_prop=%{customdata[2]}<extra></extra>" }, { "mode": "markers", "name": "DAU above median", "type": "scatter", "xsrc": "hanaylim:31:9f9a68", "ysrc": "hanaylim:31:0dbf5a", "xaxis": "x", "yaxis": "y", "marker": { "color": "#00cc96", "symbol": "circle" }, "showlegend": true, "legendgroup": "DAU above median", "orientation": "v", "customdatasrc": "hanaylim:31:d892ac", "hovertemplate": "color_category=DAU above median<br>Video View Proportion=%{x}<br>Views per Unique User=%{y}<br>action_region_group=%{customdata[0]}<br>action_country_name=%{customdata[1]}<br>rg_vv_prop=%{customdata[2]}<extra></extra>" }, { "mode": "markers", "name": "Top 30 vvperU", "type": "scatter", "xsrc": "hanaylim:31:ff477c", "ysrc": "hanaylim:31:d7f3f9", "marker": { "line": { "color": "gray", "width": 1 }, "size": 10, "color": "black", "symbol": "x" }, "textsrc": "hanaylim:31:ea1041", "hoverinfo": "text" }, { "mode": "markers", "name": "Top 30 vvperU & vv_prop >= rg_vv_prop", "type": "scatter", "xsrc": "hanaylim:31:bc63c3", "ysrc": "hanaylim:31:c18e65", "marker": { "line": { "color": "gray", "width": 1 }, "size": 10, "color": "orange", "symbol": "triangle-up" }, "textsrc": "hanaylim:31:74a12c", "hoverinfo": "text" } ], "layout": { "title": { "text": "VVperU vs VV Prop (Colored by Condition)" }, "xaxis": { "title": { "text": "Video View Proportion" }, "anchor": "y", "domain": [ 0.0, 1.0 ] }, "yaxis": { "title": { "text": "Views per Unique User" }, "anchor": "x", "domain": [ 0.0, 1.0 ] }, "legend": { "title": { "text": "color_category" }, "tracegroupgap": 0 }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "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 } } } ], "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": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "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 } } }, "showlegend": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~hanaylim", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/77.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2021-02-28 07:06:52", "mapbox_access_tokens": null, "has_password": null, "username": "hanaylim", "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-03-25T05:20:14.084166Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jjtb/1.embed", "fid": "jjtb:1", "filename": "jupyter-table1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jjtb/1/9_ELVFZ835PH6213RGB3XJA6ZGP5DX2B.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jjtb/1/2_U9J0KRBM11QG7JUXYCVA81V0PKUFLI.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jjtb/1/8_A982I5M7SV7NAGL2M17NGL7DUOGSWR.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jjtb/1/9_ELVFZ835PH6213RGB3XJA6ZGP5DX2B.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jjtb:1", "plots": "https://api.plotly.com/v2/plots/jjtb:1", "parent": "https://api.plotly.com/v2/folders/home?user=jjtb" }, "owner": "jjtb", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 10, "web_url": "https://chart-studio.plotly.com/~jjtb/1/", "world_readable": true, "date_modified": "2024-03-26T09:19:27.831Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jjtb/1/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "heatmap", "zsrc": "jjtb:4:91d97d", "opacity": 0.75, "hoverinfo": "none", "showscale": false, "colorscale": [ [ 0, "#00083e" ], [ 0.5, "#ededee" ], [ 1, "#ffffff" ] ] } ], "layout": { "xaxis": { "dtick": 1, "tick0": -0.5, "ticks": "", "zeroline": false, "gridwidth": 2, "showticklabels": false }, "yaxis": { "dtick": 1, "tick0": 0.5, "ticks": "", "zeroline": false, "autorange": "reversed", "gridwidth": 2, "showticklabels": false }, "height": 3500, "margin": { "b": 0, "l": 0, "r": 0, "t": 0 }, "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.45, "y": 0, "font": { "color": "#ffffff" }, "text": "<b>NUMERO DE ASIGNACION</b>", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 0, "font": { "color": "#ffffff" }, "text": "<b>TIPO DE INFORMACION</b>", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 0, "font": { "color": "#ffffff" }, "text": "<b>cuenta</b>", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 1, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 1, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 1, "font": { "color": "#000000" }, "text": "11282", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 2, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 2, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 2, "font": { "color": "#000000" }, "text": "30937", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 3, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 3, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 3, "font": { "color": "#000000" }, "text": "4048", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 4, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 4, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 4, "font": { "color": "#000000" }, "text": "963", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 5, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 5, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 5, "font": { "color": "#000000" }, "text": "12251", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 6, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 6, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 6, "font": { "color": "#000000" }, "text": "4784", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 7, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 7, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 7, "font": { "color": "#000000" }, "text": "401", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 8, "font": { "color": "#000000" }, "text": "A-0008", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 8, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 8, "font": { "color": "#000000" }, "text": "401", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 9, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 9, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 9, "font": { "color": "#000000" }, "text": "1925", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 10, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 10, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 10, "font": { "color": "#000000" }, "text": "10836", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 11, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 11, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 11, "font": { "color": "#000000" }, "text": "3844", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 12, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 12, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 12, "font": { "color": "#000000" }, "text": "312", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 13, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 13, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 13, "font": { "color": "#000000" }, "text": "1939", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 14, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 14, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 14, "font": { "color": "#000000" }, "text": "655", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 15, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 15, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 15, "font": { "color": "#000000" }, "text": "5", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 16, "font": { "color": "#000000" }, "text": "A-0032", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 16, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 16, "font": { "color": "#000000" }, "text": "133", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 17, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 17, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 17, "font": { "color": "#000000" }, "text": "184", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 18, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 18, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 18, "font": { "color": "#000000" }, "text": "491", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 19, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 19, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 19, "font": { "color": "#000000" }, "text": "91", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 20, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 20, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 20, "font": { "color": "#000000" }, "text": "254", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 21, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 21, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 21, "font": { "color": "#000000" }, "text": "22", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 22, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 22, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 22, "font": { "color": "#000000" }, "text": "75", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 23, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 23, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 23, "font": { "color": "#000000" }, "text": "8", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 24, "font": { "color": "#000000" }, "text": "A-0035", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 24, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 24, "font": { "color": "#000000" }, "text": "8", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 25, "font": { "color": "#000000" }, "text": "A-0078", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 25, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 25, "font": { "color": "#000000" }, "text": "140", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 26, "font": { "color": "#000000" }, "text": "A-0078", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 26, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 26, "font": { "color": "#000000" }, "text": "233", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 27, "font": { "color": "#000000" }, "text": "A-0078", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 27, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 27, "font": { "color": "#000000" }, "text": "59", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 28, "font": { "color": "#000000" }, "text": "A-0078", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 28, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 28, "font": { "color": "#000000" }, "text": "1553", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 29, "font": { "color": "#000000" }, "text": "A-0078", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 29, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 29, "font": { "color": "#000000" }, "text": "50", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 30, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 30, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 30, "font": { "color": "#000000" }, "text": "150", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 31, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 31, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 31, "font": { "color": "#000000" }, "text": "1291", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 32, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 32, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 32, "font": { "color": "#000000" }, "text": "76", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 33, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 33, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 33, "font": { "color": "#000000" }, "text": "1557", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 34, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 34, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 34, "font": { "color": "#000000" }, "text": "60", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 35, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 35, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 35, "font": { "color": "#000000" }, "text": "10", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 36, "font": { "color": "#000000" }, "text": "A-0161", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 36, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 36, "font": { "color": "#000000" }, "text": "10", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 37, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 37, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 37, "font": { "color": "#000000" }, "text": "68", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 38, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 38, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 38, "font": { "color": "#000000" }, "text": "352", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 39, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 39, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 39, "font": { "color": "#000000" }, "text": "53", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 40, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 40, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 40, "font": { "color": "#000000" }, "text": "917", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 41, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 41, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 41, "font": { "color": "#000000" }, "text": "24", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 42, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 42, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 42, "font": { "color": "#000000" }, "text": "4", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 43, "font": { "color": "#000000" }, "text": "A-0172", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 43, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 43, "font": { "color": "#000000" }, "text": "4", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 44, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 44, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 44, "font": { "color": "#000000" }, "text": "1984", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 45, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 45, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 45, "font": { "color": "#000000" }, "text": "6793", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 46, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 46, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 46, "font": { "color": "#000000" }, "text": "231", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 47, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 47, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 47, "font": { "color": "#000000" }, "text": "298", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 48, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 48, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 48, "font": { "color": "#000000" }, "text": "1060", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 49, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 49, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 49, "font": { "color": "#000000" }, "text": "760", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 50, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 50, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 50, "font": { "color": "#000000" }, "text": "115", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 51, "font": { "color": "#000000" }, "text": "A-0183", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 51, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 51, "font": { "color": "#000000" }, "text": "87", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 52, "font": { "color": "#000000" }, "text": "A-0186", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 52, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 52, "font": { "color": "#000000" }, "text": "14", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 53, "font": { "color": "#000000" }, "text": "A-0186", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 53, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 53, "font": { "color": "#000000" }, "text": "91", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 54, "font": { "color": "#000000" }, "text": "A-0186", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 54, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 54, "font": { "color": "#000000" }, "text": "10", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 55, "font": { "color": "#000000" }, "text": "A-0186", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 55, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 55, "font": { "color": "#000000" }, "text": "5", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 56, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 56, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 56, "font": { "color": "#000000" }, "text": "168", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 57, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 57, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 57, "font": { "color": "#000000" }, "text": "462", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 58, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 58, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 58, "font": { "color": "#000000" }, "text": "86", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 59, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 59, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 59, "font": { "color": "#000000" }, "text": "254", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 60, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 60, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 60, "font": { "color": "#000000" }, "text": "10", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 61, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 61, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 61, "font": { "color": "#000000" }, "text": "64", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 62, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 62, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 62, "font": { "color": "#000000" }, "text": "7", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 63, "font": { "color": "#000000" }, "text": "A-0196", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 63, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 63, "font": { "color": "#000000" }, "text": "7", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 64, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 64, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 64, "font": { "color": "#000000" }, "text": "3983", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 65, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 65, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 65, "font": { "color": "#000000" }, "text": "16075", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 66, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 66, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 66, "font": { "color": "#000000" }, "text": "769", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 67, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 67, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 67, "font": { "color": "#000000" }, "text": "362", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 68, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 68, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 68, "font": { "color": "#000000" }, "text": "1363", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 69, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 69, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 69, "font": { "color": "#000000" }, "text": "1581", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 70, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 70, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 70, "font": { "color": "#000000" }, "text": "194", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 71, "font": { "color": "#000000" }, "text": "A-0203", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 71, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 71, "font": { "color": "#000000" }, "text": "126", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 72, "font": { "color": "#000000" }, "text": "A-0237", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 72, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 72, "font": { "color": "#000000" }, "text": "84", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 73, "font": { "color": "#000000" }, "text": "A-0237", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 73, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 73, "font": { "color": "#000000" }, "text": "506", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 74, "font": { "color": "#000000" }, "text": "A-0237", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 74, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 74, "font": { "color": "#000000" }, "text": "67", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 75, "font": { "color": "#000000" }, "text": "A-0237", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 75, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 75, "font": { "color": "#000000" }, "text": "1330", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 76, "font": { "color": "#000000" }, "text": "A-0237", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 76, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 76, "font": { "color": "#000000" }, "text": "30", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 77, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 77, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 77, "font": { "color": "#000000" }, "text": "991", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 78, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 78, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 78, "font": { "color": "#000000" }, "text": "3271", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 79, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 79, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 79, "font": { "color": "#000000" }, "text": "219", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 80, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 80, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 80, "font": { "color": "#000000" }, "text": "2818", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 81, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 81, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 81, "font": { "color": "#000000" }, "text": "365", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 82, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 82, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 82, "font": { "color": "#000000" }, "text": "53", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 83, "font": { "color": "#000000" }, "text": "A-0308", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 83, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 83, "font": { "color": "#000000" }, "text": "53", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 84, "font": { "color": "#000000" }, "text": "A-0322", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 84, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 84, "font": { "color": "#000000" }, "text": "84", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 85, "font": { "color": "#000000" }, "text": "A-0322", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 85, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 85, "font": { "color": "#000000" }, "text": "532", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 86, "font": { "color": "#000000" }, "text": "A-0322", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 86, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 86, "font": { "color": "#000000" }, "text": "51", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 87, "font": { "color": "#000000" }, "text": "A-0322", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 87, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 87, "font": { "color": "#000000" }, "text": "1548", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 88, "font": { "color": "#000000" }, "text": "A-0322", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 88, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 88, "font": { "color": "#000000" }, "text": "30", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 89, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 89, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 89, "font": { "color": "#000000" }, "text": "273", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 90, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 90, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 90, "font": { "color": "#000000" }, "text": "982", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 91, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 91, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 91, "font": { "color": "#000000" }, "text": "644", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 92, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 92, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 92, "font": { "color": "#000000" }, "text": "364", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 93, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 93, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 93, "font": { "color": "#000000" }, "text": "36", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 94, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 94, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 94, "font": { "color": "#000000" }, "text": "91", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 95, "font": { "color": "#000000" }, "text": "A-0327", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 95, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 95, "font": { "color": "#000000" }, "text": "21", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 96, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 96, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 96, "font": { "color": "#000000" }, "text": "247", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 97, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 97, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 97, "font": { "color": "#000000" }, "text": "728", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 98, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 98, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 98, "font": { "color": "#000000" }, "text": "453", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 99, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 99, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 99, "font": { "color": "#000000" }, "text": "350", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 100, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 100, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 100, "font": { "color": "#000000" }, "text": "86", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 101, "font": { "color": "#000000" }, "text": "A-0361", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 101, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 101, "font": { "color": "#000000" }, "text": "19", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 102, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 102, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 102, "font": { "color": "#000000" }, "text": "3471", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 103, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 103, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 103, "font": { "color": "#000000" }, "text": "6264", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 104, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 104, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 104, "font": { "color": "#000000" }, "text": "240", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 105, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 105, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 105, "font": { "color": "#000000" }, "text": "267", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 106, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 106, "font": { "color": "#000000" }, "text": "Otros Ingresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 106, "font": { "color": "#000000" }, "text": "1334", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 107, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 107, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 107, "font": { "color": "#000000" }, "text": "1342", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 108, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 108, "font": { "color": "#000000" }, "text": "Volumen Requerido", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 108, "font": { "color": "#000000" }, "text": "132", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 109, "font": { "color": "#000000" }, "text": "A-0375", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 109, "font": { "color": "#000000" }, "text": "Volumen de Compras", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 109, "font": { "color": "#000000" }, "text": "90", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 110, "font": { "color": "#000000" }, "text": "CO-0015", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 110, "font": { "color": "#000000" }, "text": "Gasto de Operación", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 110, "font": { "color": "#000000" }, "text": "570", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 111, "font": { "color": "#000000" }, "text": "CO-0015", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 111, "font": { "color": "#000000" }, "text": "Inversión", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 111, "font": { "color": "#000000" }, "text": "7380", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 112, "font": { "color": "#000000" }, "text": "CO-0015", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 112, "font": { "color": "#000000" }, "text": "Meta FÃsica", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 112, "font": { "color": "#000000" }, "text": "971", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 113, "font": { "color": "#000000" }, "text": "CO-0015", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 113, "font": { "color": "#000000" }, "text": "Otros Egresos", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 113, "font": { "color": "#000000" }, "text": "439", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": -0.45, "y": 114, "font": { "color": "#000000" }, "text": "CO-0015", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 0.55, "y": 114, "font": { "color": "#000000" }, "text": "Producción", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false }, { "x": 1.55, "y": 114, "font": { "color": "#000000" }, "text": "285", "xref": "x", "yref": "y", "align": "left", "xanchor": "left", "showarrow": false } ] } }, "height": 3500, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jjtb", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-03-25 05:03:31", "mapbox_access_tokens": null, "has_password": null, "username": "jjtb", "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-03-25T05:06:35.327949Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Jonalee/5.embed", "fid": "Jonalee:5", "filename": "Water Usage and Costs Graph", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Jonalee/5/9_SPV815AZFM9J9857F099O0FIEFVU8G.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Jonalee/5/2_FE36SQF9DLMSZDYFP7075E9F0P3UKT.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jonalee/5/8_9RZUJZZGHHHIM8VNFHJFUGN63UMIPD.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Jonalee/5/9_SPV815AZFM9J9857F099O0FIEFVU8G.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Jonalee:5", "plots": "https://api.plotly.com/v2/plots/Jonalee:5", "parent": "https://api.plotly.com/v2/folders/home?user=Jonalee" }, "owner": "Jonalee", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 76, "web_url": "https://chart-studio.plotly.com/~Jonalee/5/", "world_readable": true, "date_modified": "2024-03-25T05:14:00.152Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Jonalee/5/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Campus Area", "y": "Water Usage (HCF) or (lbs/hr)" } }, "mode": "lines", "name": "Water Consumption", "type": "bar", "xsrc": "Jonalee:4:cf4b20", "ysrc": "Jonalee:4:2f9646", "marker": { "line": { "color": "rgb(74, 74, 74)", "width": 0 }, "color": "rgb(0, 100, 200)" }, "error_x": { "type": "percent", "color": "rgb(74, 74, 74)", "value": 10, "width": 4, "visible": false, "symmetric": true, "thickness": 2 }, "visible": true, "orientation": "v" }, { "line": { "color": "rgb(0, 200, 100)", "shape": "linear", "width": 4 }, "meta": { "columnNames": { "x": "Campus Area", "y": "Cost of Water" } }, "mode": "lines", "name": "Cost of Water", "type": "scatter", "xsrc": "Jonalee:4:cf4b20", "ysrc": "Jonalee:4:df99a6", "yaxis": "y2", "visible": true, "connectgaps": false, "orientation": "v" } ], "frames": [], "layout": { "font": { "size": 14, "family": "Overpass" }, "title": { "x": 0.5, "text": "CSUCI Water Usage & Costs" }, "xaxis": { "side": "bottom", "type": "category", "range": [ -0.5, 6.5 ], "title": { "font": { "size": 16, "family": "Overpass" }, "text": "Campus Area" }, "domain": [ 0, 1 ], "autorange": true }, "yaxis": { "side": "left", "type": "linear", "range": [ 0, 36672.63157894737 ], "title": { "font": { "size": 16, "color": "rgb(0, 100, 200)", "family": "Overpass" }, "text": "Water Usage (hundred cubic feet)" }, "domain": [ 0, 1 ], "autorange": true }, "bargap": 0.4, "legend": { "x": 0.6, "y": 0.8, "font": { "size": 14 }, "borderwidth": 2 }, "yaxis2": { "side": "right", "type": "linear", "range": [ -6145.822777777778, 129194.63277777778 ], "title": { "font": { "size": 16, "color": "rgb(0, 200, 100)", "family": "Overpass" }, "text": "Water Cost (USD)" }, "anchor": "x", "autorange": true, "overlaying": "y" }, "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" }, "bargroupgap": 0 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Jonalee", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-02-05 17:32:51", "mapbox_access_tokens": null, "has_password": null, "username": "Jonalee", "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-03-25T04:39:24.635191Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~2e/55.embed", "fid": "2e:55", "filename": "Plot 55", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/2e/55/9_KG2FOMXUVTAR4EYMOQ5IP2FOLVIZZI.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/2e/55/2_W6MI07YYOKEIVI7DPLQJSCRPTCML4I.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/2e/55/8_93WFQ19ITNW0T0FFH0RDN9DD6BJXKT.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/2e/55/9_KG2FOMXUVTAR4EYMOQ5IP2FOLVIZZI.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/2e:55", "plots": "https://api.plotly.com/v2/plots/2e:55", "parent": "https://api.plotly.com/v2/folders/home?user=2e" }, "owner": "2e", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 5, "web_url": "https://chart-studio.plotly.com/~2e/55/", "world_readable": true, "date_modified": "2024-03-25T05:03:30.408Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~2e/55/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(99, 188, 250)", "shape": "hv", "width": 2 }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "type": "scatter", "xsrc": "2e:54:b15848", "ysrc": "2e:54:c7ba27" }, { "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "type": "scatter", "xsrc": "2e:54:b15848", "ysrc": "2e:54:ebfc4f", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Agonizingly Blue Bucket of Doom" }, "xaxis": { "type": "category", "range": [ 0, 4725 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -41666.666666666664, 791666.6666666666 ], "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" }, "hovermode": "x" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~2e", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-03-07 15:45:49", "mapbox_access_tokens": null, "has_password": null, "username": "2e", "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-03-25T04:10:28.534245Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~mageshissivan/42.embed", "fid": "mageshissivan:42", "filename": "Plot 42", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/mageshissivan/42/9_37TDXRJ81DAUHKOBFMIK9LYLGD57I5.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/mageshissivan/42/2_V3J6H2KDPKUKRLBM2ZTXNTCK4VHE12.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mageshissivan/42/8_GFPK8Z01VE4IFZ8L24A5D1CMAAA512.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mageshissivan/42/9_37TDXRJ81DAUHKOBFMIK9LYLGD57I5.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/mageshissivan:42", "plots": "https://api.plotly.com/v2/plots/mageshissivan:42", "parent": "https://api.plotly.com/v2/folders/home?user=mageshissivan" }, "owner": "mageshissivan", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 5, "web_url": "https://chart-studio.plotly.com/~mageshissivan/42/", "world_readable": true, "date_modified": "2024-03-25T04:10:28.547Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~mageshissivan/42/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "width": 2 }, "meta": { "columnNames": { "y": "Mean wet\n weight (g)" } }, "mode": "markers", "name": "<i>Perna viridis</i>", "type": "box", "ysrc": "mageshissivan:41:1d9e46", "jitter": 0.5, "marker": { "line": { "width": 0 }, "size": 8, "color": "rgb(47, 91, 215)", "symbol": "circle-open" }, "boxmean": true, "pointpos": -1.9, "boxpoints": "all", "fillcolor": "rgba(120, 146, 218, 0.5)" } ], "frames": [], "layout": { "font": { "size": 18 }, "xaxis": { "type": "category", "range": [ -0.5252565114443567, 0.5 ], "title": { "text": "Gotheeswaram" }, "domain": [ 0, 0.125 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 12.708333333333332, 32.141666666666666 ], "title": { "text": "Mean wet weight (g)" }, "domain": [ 0, 1 ], "autorange": true }, "boxgap": 0.30000000000000004, "modebar": { "orientation": "h" }, "autosize": true, "boxgroupgap": 0.5 } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~mageshissivan", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2020-09-02 06:08:53", "mapbox_access_tokens": null, "has_password": null, "username": "mageshissivan", "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-03-25T03:28:17.956209Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~flora.thang/1.embed", "fid": "flora.thang:1", "filename": "Deviatoric stress vs Axial strain", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/flora.thang/1/9_8VZN6JQB0WSWDPZZEYJPEIJGLHUK5I.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/flora.thang/1/2_FWYDL4VT4TIBIM0S2XFRU7LHNXTCPS.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/flora.thang/1/8_8H6R6M523LRSYDSZ4Z07WEZNB861VU.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/flora.thang/1/9_8VZN6JQB0WSWDPZZEYJPEIJGLHUK5I.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/flora.thang:1", "plots": "https://api.plotly.com/v2/plots/flora.thang:1", "parent": "https://api.plotly.com/v2/folders/home?user=flora.thang" }, "owner": "flora.thang", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~flora.thang/1/", "world_readable": true, "date_modified": "2024-03-25T03:31:43.740Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~flora.thang/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "name": "Test 1", "type": "scatter", "xsrc": "flora.thang:0:e6a0ea", "ysrc": "flora.thang:0:cfd04f" }, { "meta": { "columnNames": { "x": "C", "y": "D" } }, "mode": "markers", "name": "Test 2", "type": "scatter", "xsrc": "flora.thang:0:402706", "ysrc": "flora.thang:0:2452ca", "xaxis": "x", "stackgroup": null } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ -2.1413781369629947, 36.981378136962995 ], "autorange": true, "showspikes": false }, "yaxis": { "type": "linear", "range": [ -65.20769230769231, 905.4076923076924 ], "autorange": true, "showspikes": false }, "autosize": true, "dragmode": "pan", "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~flora.thang", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-03-25 03:27:41", "mapbox_access_tokens": null, "has_password": null, "username": "flora.thang", "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-03-25T02:58:57.486431Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~vinod91104/3.embed", "fid": "vinod91104:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/vinod91104/3/9_IAV2VLEN824IP8P64YZJ4YOKTSLUDD.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/vinod91104/3/2_YO6P7TFJU4ZIEAMGP08DRXABR1FK7J.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vinod91104/3/8_3XJP4KUZ5XA9HEDHKYFVXCUVKUMUUR.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vinod91104/3/9_IAV2VLEN824IP8P64YZJ4YOKTSLUDD.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/vinod91104:3", "plots": "https://api.plotly.com/v2/plots/vinod91104:3", "parent": "https://api.plotly.com/v2/folders/home?user=vinod91104" }, "owner": "vinod91104", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~vinod91104/3/", "world_readable": true, "date_modified": "2024-03-25T02:58:57.500Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~vinod91104/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Porosity", "y": "Compressive Strength", "text": "D" } }, "mode": "markers+lines+text", "type": "scatter", "xsrc": "vinod91104:2:ee3a81", "ysrc": "vinod91104:2:4e5205", "marker": { "color": "rgb(254, 127, 14)" }, "textsrc": "vinod91104:2:4b5848", "textfont": { "size": 12 }, "hoverinfo": "text", "textposition": "middle center" } ], "frames": [], "layout": { "font": { "size": 16, "color": "rgb(0, 0, 0)", "family": "Open Sans" }, "title": { "x": 0.5, "text": "Porosity vs Compressive Strenth" }, "xaxis": { "type": "linear", "range": [ 28.5, 33 ], "ticks": "outside", "title": { "text": "Porosity (%)" }, "showline": true, "autorange": false, "linecolor": "rgb(0, 0, 0)" }, "yaxis": { "type": "linear", "range": [ 4.5, 10.5 ], "ticks": "outside", "title": { "text": "Compressive Strength (MPa)" }, "showline": true, "autorange": false, "linecolor": "rgb(0, 0, 0)" }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" }, "plot_bgcolor": "rgb(249, 249, 249)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~vinod91104", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-03-24 17:59:25", "mapbox_access_tokens": null, "has_password": null, "username": "vinod91104", "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-03-25T02:10:00.935755Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~aadil.tajani/1.embed", "fid": "aadil.tajani:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/aadil.tajani/1/9_PNO7CE5MPX81LUJVV5Q0X4JM7CZ0P7.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/aadil.tajani/1/2_ZGRAK5K0EF42LJ9MJC94KJV40WCUB8.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aadil.tajani/1/8_H2NTT73NY3BLKQ973RD462EO4KMVJC.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aadil.tajani/1/9_PNO7CE5MPX81LUJVV5Q0X4JM7CZ0P7.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/aadil.tajani:1", "plots": "https://api.plotly.com/v2/plots/aadil.tajani:1", "parent": "https://api.plotly.com/v2/folders/home?user=aadil.tajani" }, "owner": "aadil.tajani", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 4, "web_url": "https://chart-studio.plotly.com/~aadil.tajani/1/", "world_readable": true, "date_modified": "2024-03-26T12:59:16.171Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~aadil.tajani/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "G - J", "y": "H" } }, "mode": "markers", "name": "ASR", "type": "bar", "xsrc": "aadil.tajani:0:c0b9e8,070ac9*", "ysrc": "aadil.tajani:0:606f52", "orientation": "v" }, { "meta": { "columnNames": { "x": "G - J", "y": "I" } }, "name": "ASR-D", "type": "bar", "xsrc": "aadil.tajani:0:c0b9e8,070ac9*", "ysrc": "aadil.tajani:0:8993df", "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Table 7 (Page 11) The impact of attacks on model performance - CS" }, "xaxis": { "type": "multicategory", "range": [ -0.5, 9.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 105.26315789473685 ], "autorange": true }, "legend": { "x": 1.02, "y": 0.98, "font": { "size": 14, "family": "Arial" }, "title": { "text": "<br>" }, "valign": "bottom", "yanchor": "top", "itemsizing": "trace", "traceorder": "normal", "borderwidth": 0, "orientation": "v" }, "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/~aadil.tajani", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/71.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2023-06-21 19:34:16", "mapbox_access_tokens": null, "has_password": null, "username": "aadil.tajani", "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-03-25T02:09:30.030672Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~vinod91104/1.embed", "fid": "vinod91104:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/vinod91104/1/9_GYJN9VUVL7JW2JVSO2BR5SC4FIVO1O.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/vinod91104/1/2_QTUR66O45ZVKOQG1HHFJPNYE5NPKN6.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vinod91104/1/8_7JM50F3IDU6RIDRYH4X85JKL76VDBA.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vinod91104/1/9_GYJN9VUVL7JW2JVSO2BR5SC4FIVO1O.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/vinod91104:1", "plots": "https://api.plotly.com/v2/plots/vinod91104:1", "parent": "https://api.plotly.com/v2/folders/home?user=vinod91104" }, "owner": "vinod91104", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~vinod91104/1/", "world_readable": true, "date_modified": "2024-03-25T02:09:31.828Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~vinod91104/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Porosity", "y": "Compressive Strength", "text": "D" } }, "mode": "markers+lines", "type": "scatter", "xsrc": "vinod91104:0:59dcdc", "ysrc": "vinod91104:0:bdf5a5", "marker": { "color": "rgb(254, 127, 14)" }, "textsrc": "vinod91104:0:c28d4c", "hoverinfo": "text", "hovertemplate": "" } ], "frames": [], "layout": { "font": { "size": 16, "color": "rgb(0, 0, 0)", "family": "Open Sans" }, "title": { "x": 0.5, "text": "Porosity vs Permeabilty" }, "xaxis": { "type": "linear", "dtick": 1, "range": [ 23.5, 30 ], "ticks": "outside", "title": { "text": "Porosity" }, "showline": true, "tickfont": { "family": "Open Sans" }, "tickmode": "linear", "autorange": false, "linecolor": "rgb(0, 0, 0)", "showspikes": true, "spikethickness": 3 }, "yaxis": { "type": "linear", "range": [ 3.5, 10 ], "ticks": "outside", "title": { "text": "Permeability" }, "showgrid": false, "showline": true, "tickmode": "linear", "autorange": false, "gridcolor": "rgb(0, 0, 0)", "linecolor": "rgb(0, 0, 0)", "zerolinecolor": "rgb(255, 255, 255)" }, "modebar": { "orientation": "h" }, "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" }, "uniformtext": { "mode": false }, "plot_bgcolor": "rgb(249, 249, 249)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~vinod91104", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-03-24 17:59:25", "mapbox_access_tokens": null, "has_password": null, "username": "vinod91104", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "