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=cj0xJnA9MjAxOS0wNi0xOCswMCUzQTM4JTNBMDUuODkwNDI4JTJCMDAlM0EwMA%3D%3D&format=api
https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE4KzAwJTNBMzglM0ExNy41NzM5MjklMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswMCUzQTU5JTNBNTQuNjAwMjM5JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2019-06-18T00:59:54.600239Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~cragard/124.embed", "fid": "cragard:124", "filename": "Number of New Captures By Date for 2019.html", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/cragard/124/9_BUJHETN9NW7VPJRUK0H0PIOJWTHH07.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/cragard/124/2_6ZN3JM1G2GYHR1U2SKG1BI52KR7SD0.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cragard/124/8_0YXFZ94PCXRPJZABFX6RZQUJ6FJKT9.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cragard/124/9_BUJHETN9NW7VPJRUK0H0PIOJWTHH07.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/cragard:124", "plots": "https://api.plotly.com/v2/plots/cragard:124", "parent": "https://api.plotly.com/v2/folders/home?user=cragard" }, "owner": "cragard", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Number of New Captures By Date", "views": 3, "web_url": "https://chart-studio.plotly.com/~cragard/124/number-of-new-captures-by-date/", "world_readable": true, "date_modified": "2019-06-18T01:02:39.456Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~cragard/124/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "ec09968a-ce60-431c-9019-d8f1d282d5f0", "mode": "lines+markers", "name": "Sj", "type": "scatter", "xsrc": "cragard:125:e46e3f", "ysrc": "cragard:125:ff8b17" } ], "layout": { "title": { "font": { "size": 20 }, "text": "Number of New Captures By Date" }, "xaxis": { "dtick": 1, "title": { "font": { "size": 18 }, "text": "Date" } }, "yaxis": { "title": { "font": { "size": 18 }, "text": "Number of New Captures" } } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~cragard", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "ChrisA", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2018-01-31 16:27:17", "mapbox_access_tokens": null, "has_password": null, "username": "cragard", "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": "2019-06-18T00:59:06.768102Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~pauloxrms/1.embed", "fid": "pauloxrms:1", "filename": "GrafTsc", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/pauloxrms/1/9_8574M7IRT2JM3RPHID2ZLMZE66N52L.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/pauloxrms/1/2_7KHYAAGR7O6Q5M8QZYEN2T14CNTSVA.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pauloxrms/1/8_4M5MFXN6R9UJ0O6VWNZTQW9S4CJKMT.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pauloxrms/1/9_8574M7IRT2JM3RPHID2ZLMZE66N52L.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/pauloxrms:1", "plots": "https://api.plotly.com/v2/plots/pauloxrms:1", "parent": "https://api.plotly.com/v2/folders/home?user=pauloxrms" }, "owner": "pauloxrms", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 17, "web_url": "https://chart-studio.plotly.com/~pauloxrms/1/", "world_readable": true, "date_modified": "2019-06-18T00:59:06.784Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~pauloxrms/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "lines", "type": "scatter", "xsrc": "pauloxrms:0:12c98e,b4860f*", "ysrc": "pauloxrms:0:6d7dfe", "orientation": "v", "autocolorscale": true } ], "frames": [], "layout": { "title": { "text": "Gráfico de variação de x em relação a velocidade média" }, "xaxis": { "type": "multicategory", "range": [ 0, 4 ], "title": { "text": "número / variação em x" }, "autorange": true, "showspikes": true }, "yaxis": { "type": "category", "range": [ -0.16666666666666666, 3.1666666666666665 ], "title": { "text": "Velocidade média" }, "autorange": true, "showspikes": 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/~pauloxrms", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-06-18 00:58:13", "mapbox_access_tokens": null, "has_password": null, "username": "pauloxrms", "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": "2019-06-18T00:57:50.948819Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~rosaaortega/0.embed", "fid": "rosaaortega:0", "filename": "gantt-group-tasks-together", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/rosaaortega/0/9_XE34VWKNKM75BOSMF77J1A6TKB6ZNL.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/rosaaortega/0/2_9BKGJUUBQFCCQQUDAAVLHHVHW05YBJ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rosaaortega/0/8_4ES36R3ZHQCMM3IYTLRDOZ1XCF61GQ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/rosaaortega/0/9_XE34VWKNKM75BOSMF77J1A6TKB6ZNL.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/rosaaortega:0", "plots": "https://api.plotly.com/v2/plots/rosaaortega:0", "parent": "https://api.plotly.com/v2/folders/home?user=rosaaortega" }, "owner": "rosaaortega", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "Reporte de Herramientas", "views": 247, "web_url": "https://chart-studio.plotly.com/~rosaaortega/0/reporte-de-herramientas/", "world_readable": true, "date_modified": "2024-08-19T23:49:18.815Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~rosaaortega/0/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": false, "caption": "", "figure": { "data": [ { "fill": "toself", "mode": "none", "name": "Rentado", "type": "scatter", "xsrc": "rosaaortega:788:2226ac", "ysrc": "rosaaortega:788:2f93b0", "fillcolor": "rgb(0, 255, 100)", "hoverinfo": "name", "legendgroup": "rgb(0, 255, 100)" }, { "fill": "toself", "mode": "none", "name": "SPT Malaga", "type": "scatter", "xsrc": "rosaaortega:788:e91802", "ysrc": "rosaaortega:788:c56c45", "fillcolor": "rgb(120, 120, 120)", "hoverinfo": "name", "legendgroup": "rgb(120, 120, 120)" }, { "fill": "toself", "mode": "none", "name": "Prestado", "type": "scatter", "xsrc": "rosaaortega:788:0bbe3b", "ysrc": "rosaaortega:788:5a20c4", "fillcolor": "rgb(135, 206, 250)", "hoverinfo": "name", "legendgroup": "rgb(135, 206, 250)" }, { "fill": "toself", "mode": "none", "name": "No rentado", "type": "scatter", "xsrc": "rosaaortega:788:00d0b5", "ysrc": "rosaaortega:788:eb6043", "fillcolor": "rgb(220, 0, 0)", "hoverinfo": "name", "legendgroup": "rgb(220, 0, 0)" }, { "fill": "toself", "mode": "none", "name": "Mantenimiento", "type": "scatter", "xsrc": "rosaaortega:788:1475bc", "ysrc": "rosaaortega:788:2c348b", "fillcolor": "rgb(255, 230, 41)", "hoverinfo": "name", "legendgroup": "rgb(255, 230, 41)" }, { "mode": "markers", "name": "", "type": "scatter", "xsrc": "rosaaortega:788:687de2", "ysrc": "rosaaortega:788:e07b2b", "marker": { "size": 1, "color": "rgb(0, 255, 100)", "opacity": 0 }, "textsrc": "rosaaortega:788:238348", "showlegend": false, "legendgroup": "rgb(0, 255, 100)" }, { "mode": "markers", "name": "", "type": "scatter", "xsrc": "rosaaortega:788:73d42b", "ysrc": "rosaaortega:788:7b093a", "marker": { "size": 1, "color": "rgb(120, 120, 120)", "opacity": 0 }, "textsrc": "rosaaortega:788:a807d2", "showlegend": false, "legendgroup": "rgb(120, 120, 120)" }, { "mode": "markers", "name": "", "type": "scatter", "xsrc": "rosaaortega:788:a1fba5", "ysrc": "rosaaortega:788:6754a3", "marker": { "size": 1, "color": "rgb(135, 206, 250)", "opacity": 0 }, "textsrc": "rosaaortega:788:78ea58", "showlegend": false, "legendgroup": "rgb(135, 206, 250)" }, { "mode": "markers", "name": "", "type": "scatter", "xsrc": "rosaaortega:788:801224", "ysrc": "rosaaortega:788:665f90", "marker": { "size": 1, "color": "rgb(220, 0, 0)", "opacity": 0 }, "textsrc": "rosaaortega:788:319f73", "showlegend": false, "legendgroup": "rgb(220, 0, 0)" }, { "mode": "markers", "name": "", "type": "scatter", "xsrc": "rosaaortega:788:9164a7", "ysrc": "rosaaortega:788:9c969b", "marker": { "size": 1, "color": "rgb(255, 230, 41)", "opacity": 0 }, "textsrc": "rosaaortega:788:860a81", "showlegend": false, "legendgroup": "rgb(255, 230, 41)" } ], "layout": { "title": { "text": "Reporte de Herramientas" }, "width": 1200, "xaxis": { "type": "date", "showgrid": false, "zeroline": false, "rangeselector": { "buttons": [ { "step": "day", "count": 7, "label": "1w", "stepmode": "backward" }, { "step": "month", "count": 1, "label": "1m", "stepmode": "backward" }, { "step": "month", "count": 6, "label": "6m", "stepmode": "backward" }, { "step": "year", "count": 1, "label": "YTD", "stepmode": "todate" }, { "step": "year", "count": 1, "label": "1y", "stepmode": "backward" }, { "step": "all" } ] } }, "yaxis": { "range": [ -1, 170 ], "showgrid": false, "ticktext": [ "<b>169.-</b>CoreMaster/231", "<b>168.-</b>GyroMaster/2006 BTM 1966", "<b>167.-</b>GyroMaster/2096 BTM 2013", "<b>166.-</b>CoreMaster/305", "<b>165.-</b>CoreMaster/388", "<b>164.-</b>CoreMaster/232", "<b>163.-</b>CoreMaster/530", "<b>162.-</b>CoreMaster/528", "<b>161.-</b>CoreMaster/526", "<b>160.-</b>GyroScout/2165", "<b>159.-</b>GyroScout/2132", "<b>158.-</b>MagCruiser/MM126", "<b>157.-</b>GyroMaster/2121", "<b>156.-</b>GyroMaster/2073", "<b>155.-</b>GyroMaster/2021", "<b>154.-</b>GyroMaster/2104", "<b>153.-</b>GyroMaster/2294", "<b>152.-</b>Polestar Aligner/2330", "<b>151.-</b>Gyro RigAligner/2003", "<b>150.-</b>CoreMaster/492", "<b>149.-</b>CoreMaster/490", "<b>148.-</b>CoreMaster/218", "<b>147.-</b>CoreMaster/317", "<b>146.-</b>CoreMaster/527", "<b>145.-</b>CoreMaster/525", "<b>144.-</b>CoreMaster/524", "<b>143.-</b>GyroLogic EVO/0141", "<b>142.-</b>GyroScout/2143", "<b>141.-</b>MagCruiser/MM076", "<b>140.-</b>MagCruiser/MM075", "<b>139.-</b>MagCruiser/MM139", "<b>138.-</b>GyroMaster/1837", "<b>137.-</b>GyroMaster/2109", "<b>136.-</b>GyroMaster/2140", "<b>135.-</b>GyroMaster/2012", "<b>134.-</b>GyroMaster/1963", "<b>133.-</b>GyroMaster/2275", "<b>132.-</b>GyroMaster/1981", "<b>131.-</b>Gyro RigAligner/1916", "<b>130.-</b>Gyro RigAligner/1815", "<b>129.-</b>GyroMaster/SM 1926", "<b>128.-</b>Gyro RigAligner/2024", "<b>127.-</b>HP laptop/5CD225FKP0", "<b>126.-</b>Core Retriever/IV", "<b>125.-</b>Core Retriever/III", "<b>124.-</b>Core Retriever/II", "<b>123.-</b>Core Retriever/I", "<b>122.-</b>Universal Calibration Stand/0070", "<b>121.-</b>Bluetooth box/Bluetooth box 143", "<b>120.-</b>Bluetooth box/Bluetooth box 217", "<b>119.-</b>MagCruiser/MM069", "<b>118.-</b>GyroMaster/SM 2116 BTM 2136", "<b>117.-</b>GyroMaster/SM 2057", "<b>116.-</b>GyroMaster/SM 1978 BTM 2101", "<b>115.-</b>GyroMaster/SM 1953", "<b>114.-</b>GyroMaster/SM 1826 BTM 2303", "<b>113.-</b>Bluetooth box/Bluetooth box 370", "<b>112.-</b>Bluetooth box/Bluetooth box 375", "<b>111.-</b>Bluetooth box/Bluetooth box 374", "<b>110.-</b>Contador de profundidad/Bluetooth box 357", "<b>109.-</b>Contador de profundidad/Bluetooth box 373", "<b>108.-</b>Contador de profundidad/Bluetooth box 272", "<b>107.-</b>CoreMaster/320, 321", "<b>106.-</b>CoreMaster/316", "<b>105.-</b>Gyro RigAligner/GRA 2025", "<b>104.-</b>GyroMaster/SM 2016 BTM 1946", "<b>103.-</b>GyroMaster/SM 2081", "<b>102.-</b>GyroMaster/SM 2175 BTM 2131", "<b>101.-</b>GyroMaster/SM 2155 BTM 1818", "<b>100.-</b>GyroMaster/SM 1914", "<b>99.-</b>Gyro RigAligner/2009", "<b>98.-</b>CoreMaster/304", "<b>97.-</b>Bluetooth Box/312", "<b>96.-</b>MagCruiser/MM077, BM079", "<b>95.-</b>MagCruiser/MM043 BM080", "<b>94.-</b>MagCruiser/MM042, BM034", "<b>93.-</b>GyroScout/2108", "<b>92.-</b>GyroScout/2117", "<b>91.-</b>GyroMaster/SM 2141", "<b>90.-</b>GyroMaster/SM 1815", "<b>89.-</b>CoreMaster/236", "<b>88.-</b>Gyro RigAligner/1915", "<b>87.-</b>CoreMaster/195", "<b>86.-</b>CoreMaster/233", "<b>85.-</b>CoreMaster/184", "<b>84.-</b>CoreMaster/189, 293", "<b>83.-</b>CoreMaster/211, 214", "<b>82.-</b>CoreMaster/198, 199", "<b>81.-</b>MagCruiser/MM092", "<b>80.-</b>GyroMaster50/SM 1918", "<b>79.-</b>MagCruiser/MM099, BM030", "<b>78.-</b>MagCruiser/MM039, BM039", "<b>77.-</b>GyroLogic/SM 018", "<b>76.-</b>GyroCore/SM 002", "<b>75.-</b>CoreMaster/190, 186", "<b>74.-</b>GyroScout/2120", "<b>73.-</b>GyroScout/2112", "<b>72.-</b>GyroMaster/SM 1973", "<b>71.-</b>GyroMaster50/SM 2066", "<b>70.-</b>Contador de profundidad 9/Bluetooth box 118", "<b>69.-</b>Core Retriever 11/11", "<b>68.-</b>GyroMaster50/SM 2154 BM 2321", "<b>67.-</b>Gyro RigAligner/1823", "<b>66.-</b>GyroMaster/SM 2003 BTM 2225", "<b>65.-</b>GyroMaster/SM 2119 BTM 2183", "<b>64.-</b>Gyro RigAligner/1807", "<b>63.-</b>Gyro RigAligner/1805", "<b>62.-</b>GyroMaster/SM 1923", "<b>61.-</b>GyroMaster/SM 2122 BTM 1978", "<b>60.-</b>GyroMaster/BTM 2163", "<b>59.-</b>GyroCore/SM 001 BTM 999", "<b>58.-</b>GyroMaster/SM 2032 BTM 2018", "<b>57.-</b>GyroMaster/SM 1905 BTM 1972", "<b>56.-</b>GyroMaster/SM 1968", "<b>55.-</b>GyroMaster/SM 1999 BTM 2132", "<b>54.-</b>MagCruiser/MM019 BM044", "<b>53.-</b>Contador de profundidad 8/Bluetooth box 235", "<b>52.-</b>Contador de profundidad 7/Bluetooth box 141", "<b>51.-</b>GyroMaster/BM 1978", "<b>50.-</b>GyroMaster/SM 2082 BTM 2027", "<b>49.-</b>MagCruiser/MM065, BM060", "<b>48.-</b>Gyro RigAligner/1918", "<b>47.-</b>Core Retriever 10/10", "<b>46.-</b>GyroMaster/BM 2101", "<b>45.-</b>GyroMaster/SM 2061, BM 2146", "<b>44.-</b>GyroMaster/BM 1987", "<b>43.-</b>Gyro RigAligner/1917", "<b>42.-</b>Core Retriever 9/9", "<b>41.-</b>Core Retriever 8/8", "<b>40.-</b>Gyro RigAligner/1812", "<b>39.-</b>Gyro RigAligner/2011", "<b>38.-</b>MagCruiser/MM047, BM050", "<b>37.-</b>MagCruiser/MM046, BM034", "<b>36.-</b>Contador de profundidad 4/Bluetooth box 136", "<b>35.-</b>GyroMaster/Sensor 2026, Bateria 1922", "<b>34.-</b>GyroMaster/SM 1912 BTM 1992", "<b>33.-</b>GyroMaster/Sensor 2016", "<b>32.-</b>GyroMaster/batería 2136", "<b>31.-</b>Gyro RigAligner/2000", "<b>30.-</b>Gyro RigAligner/2007", "<b>29.-</b>Core Retriever 7/7", "<b>28.-</b>GyroMaster/SM 2035", "<b>27.-</b>MagCruiser/MM037", "<b>26.-</b>MagCruiser/Sensor MM034 Bateria BM026", "<b>25.-</b>MagCruiser/MM009", "<b>24.-</b>Contador de profundidad 3/Bluetooth box 107", "<b>23.-</b>Contador de profundidad 2/Bluetooth box 097", "<b>22.-</b>Core Retriever 5/5", "<b>21.-</b>GyroMaster/Sensor 1842", "<b>20.-</b>Core Retriever 4/4", "<b>19.-</b>GyroMaster/batería 1959", "<b>18.-</b>Core Retriever 3/3", "<b>17.-</b>GyroMaster/Sensor 1964, batería 1815", "<b>16.-</b>Gyro RigAligner/1902", "<b>15.-</b>Gyro RigAligner/1901", "<b>14.-</b>Core Retriever 2/2", "<b>13.-</b>GyroMaster/Sensor 1998, Bateria 1947", "<b>12.-</b>Gyro RigAligner/1908", "<b>11.-</b>Gyro RigAligner/1904", "<b>10.-</b>Contador de profundidad/Bluetooth box 075", "<b>9.-</b>MagCruiser/Sensor MM007 Bateria BM021", "<b>8.-</b>MagCruiser/Sensor MM019 Bateria BM020", "<b>7.-</b>MagCruiser/Sensor MM012 Bateria BM024", "<b>6.-</b>Core Retriever 1/1", "<b>5.-</b>GyroMaster/bateria 1990", "<b>4.-</b>MagCruiser/MM033, BM046", "<b>3.-</b>MagCruiser/Sensor MM028, bateria BM036", "<b>2.-</b>MagCruiser/Sensor MM013, bateria BM019", "<b>1.-</b>Gyro RigAligner/1819" ], "tickvals": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168 ], "zeroline": false, "autorange": false }, "height": 650, "margin": { "l": 345 }, "autosize": false, "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", "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 }, "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 } } }, "hovermode": "closest", "showlegend": true, "plot_bgcolor": "rgba(0,0,0,0)" } }, "height": 650, "width": 1200, "user": { "profile_url": "https://chart-studio.plotly.com/~rosaaortega", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.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": "2019-06-18 00:53:31", "mapbox_access_tokens": null, "has_password": null, "username": "rosaaortega", "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": "2019-06-18T00:57:10.832472Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~JeffKatzy/223.embed", "fid": "JeffKatzy:223", "filename": "plot from API (95)", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/223/9_1P1QDV4KKO23DS0Q6ZA1578JIEFV6B.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/223/2_121XNKKWJLQ5XX071V803TNKUVMZOQ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/223/8_5TN3HOODFQRSJAQLFG6MLKY46JTPFM.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/223/9_1P1QDV4KKO23DS0Q6ZA1578JIEFV6B.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/JeffKatzy:223", "plots": "https://api.plotly.com/v2/plots/JeffKatzy:223", "parent": "https://api.plotly.com/v2/folders/home?user=JeffKatzy" }, "owner": "JeffKatzy", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "scaled ad spending vs scaled sales spending", "views": 7, "web_url": "https://chart-studio.plotly.com/~JeffKatzy/223/scaled-ad-spending-vs-scaled-sales-spending/", "world_readable": true, "date_modified": "2019-06-18T00:57:11.348Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~JeffKatzy/223/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "9dad5364-c9fd-4381-a772-6c4c73ac9395", "mode": "lines+markers", "name": "scaled ad spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:224:354ffe", "ysrc": "JeffKatzy:224:cdaa85" }, { "uid": "f7394bc2-10cb-494e-bcfa-aaae2c05a76b", "mode": "lines+markers", "name": "scaled sales spending", "text": [], "type": "scatter", "xsrc": "JeffKatzy:224:f3be9a", "ysrc": "JeffKatzy:224:aef7ea" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~JeffKatzy", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2018-02-05 15:49:08", "mapbox_access_tokens": null, "has_password": null, "username": "JeffKatzy", "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": "2019-06-18T00:57:00.853953Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~JeffKatzy/221.embed", "fid": "JeffKatzy:221", "filename": "plot from API (94)", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/221/9_2TMCUORXHM6KVKRB3C7Z4N3C3RHZF5.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/221/2_94P88ZODRFFN9XMRD4BXPE39YMV3GD.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/221/8_RH8GNOIR5XC77LJNQM6MX2IMNNUELV.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/221/9_2TMCUORXHM6KVKRB3C7Z4N3C3RHZF5.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/JeffKatzy:221", "plots": "https://api.plotly.com/v2/plots/JeffKatzy:221", "parent": "https://api.plotly.com/v2/folders/home?user=JeffKatzy" }, "owner": "JeffKatzy", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "ad spending, sales spending, scaled ad spending, scaled sales spending", "views": 7, "web_url": "https://chart-studio.plotly.com/~JeffKatzy/221/ad-spending-sales-spending-scaled-ad-spending-scaled-sales-spending/", "world_readable": true, "date_modified": "2019-06-18T00:57:01.367Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~JeffKatzy/221/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "c86e1c06-b591-4436-92de-90ae004037d5", "mode": "lines+markers", "name": "ad spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:222:6cdee0", "ysrc": "JeffKatzy:222:b89291" }, { "uid": "1ffeff5f-c694-45f2-8327-afa31c4deeaf", "mode": "lines+markers", "name": "sales spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:222:366a5d", "ysrc": "JeffKatzy:222:92a52a" }, { "uid": "d20dd19b-3684-4dfb-9498-3508f32beb08", "mode": "lines+markers", "name": "scaled ad spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:222:7e5c40", "ysrc": "JeffKatzy:222:bcc68f" }, { "uid": "e67bd2b4-a6d8-4a75-ab8f-9a10dd1ad3ed", "mode": "lines+markers", "name": "scaled sales spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:222:08dbaf", "ysrc": "JeffKatzy:222:ea2a99" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~JeffKatzy", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2018-02-05 15:49:08", "mapbox_access_tokens": null, "has_password": null, "username": "JeffKatzy", "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": "2019-06-18T00:56:41.919621Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~JeffKatzy/219.embed", "fid": "JeffKatzy:219", "filename": "plot from API (93)", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/219/9_KIKELEEBRNG2ZEXMFEYL58Z864YIP6.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/219/2_V0FVB2D2JBELUV9SZ062JOCZ13SEXM.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/219/8_I9HHS11AYKKZ4YRHV15L05VYBAS82A.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JeffKatzy/219/9_KIKELEEBRNG2ZEXMFEYL58Z864YIP6.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/JeffKatzy:219", "plots": "https://api.plotly.com/v2/plots/JeffKatzy:219", "parent": "https://api.plotly.com/v2/folders/home?user=JeffKatzy" }, "owner": "JeffKatzy", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "ad spending vs sales spending", "views": 7, "web_url": "https://chart-studio.plotly.com/~JeffKatzy/219/ad-spending-vs-sales-spending/", "world_readable": true, "date_modified": "2019-06-18T00:56:42.380Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~JeffKatzy/219/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "uid": "d6518b7b-5296-4ea5-a814-6add36ba26ac", "mode": "lines+markers", "name": "ad spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:220:374043", "ysrc": "JeffKatzy:220:c81886" }, { "uid": "69cd908c-379f-44f4-a0b9-294693a43d29", "mode": "lines+markers", "name": "sales spending", "text": "", "type": "scatter", "xsrc": "JeffKatzy:220:8932bd", "ysrc": "JeffKatzy:220:2c26fd" } ], "layout": {} }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~JeffKatzy", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.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": "2018-02-05 15:49:08", "mapbox_access_tokens": null, "has_password": null, "username": "JeffKatzy", "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": "2019-06-18T00:48:47.277179Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~vdoster/5.embed", "fid": "vdoster:5", "filename": "Plot 5", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/vdoster/5/9_1L1OZK58C53M9X0NEQA0V8DTANJIHD.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/vdoster/5/2_VDBDSSZ2P5513LES6RR6AIUY2PB76T.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vdoster/5/8_0EIQVODH949Y4AF74Q0FT3OHLEU7UY.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/vdoster/5/9_1L1OZK58C53M9X0NEQA0V8DTANJIHD.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/vdoster:5", "plots": "https://api.plotly.com/v2/plots/vdoster:5", "parent": "https://api.plotly.com/v2/folders/home?user=vdoster" }, "owner": "vdoster", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~vdoster/5/", "world_readable": true, "date_modified": "2019-06-18T00:48:47.293Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~vdoster/5/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "shape": "spline" }, "mode": "lines", "name": "scatter", "type": "scatter", "xsrc": "vdoster:4:12c2cc", "ysrc": "vdoster:4:ca7b5b", "stackgroup": null }, { "line": { "shape": "spline" }, "mode": "lines", "name": "scatterv", "type": "scatter", "xsrc": "vdoster:4:12c2cc", "ysrc": "vdoster:4:f710d0", "stackgroup": null } ], "frames": [], "layout": { "title": { "x": 0.5, "font": { "size": 10, "color": "rgb(0, 0, 0)" }, "text": "$\\text{Time vs. # of Ranks vectors of 2000 elements}$" }, "xaxis": { "type": "linear", "range": [ 1, 10 ], "title": { "text": "# Ranks" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.0025434444444444445, 0.049465444444444444 ], "title": { "text": "Time (seconds)" }, "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/~vdoster", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.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": "2019-06-09 02:53:57", "mapbox_access_tokens": null, "has_password": null, "username": "vdoster", "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": "2019-06-18T00:47:41.654962Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Roshika/1.embed", "fid": "Roshika:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Roshika/1/9_7RIV7H4KF05R42HF9LLNN9Z55Z0K23.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Roshika/1/2_263E33IM8LYGOISKMZCWSBWYKEBSPZ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Roshika/1/8_WHLK5QTAW52OHV87AZ4QHH5BR15H3U.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Roshika/1/9_7RIV7H4KF05R42HF9LLNN9Z55Z0K23.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Roshika:1", "plots": "https://api.plotly.com/v2/plots/Roshika:1", "parent": "https://api.plotly.com/v2/folders/home?user=Roshika" }, "owner": "Roshika", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 10, "web_url": "https://chart-studio.plotly.com/~Roshika/1/", "world_readable": true, "date_modified": "2019-06-18T00:51:54.917Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Roshika/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "type": "scatter", "xsrc": "Roshika:0:1812aa", "ysrc": "Roshika:0:d6fa3a", "orientation": "v" } ], "frames": [], "layout": { "title": { "text": "Southern Hemisphere temperature 1880-2016" }, "xaxis": { "type": "linear", "range": [ 1871.4767759562842, 2024.5232240437158 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -54.05270092226614, 66.05270092226614 ], "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/~Roshika", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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": "2019-06-18 00:39:55", "mapbox_access_tokens": null, "has_password": null, "username": "Roshika", "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": "2019-06-18T00:40:32.031682Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~dzuniga921/23.embed", "fid": "dzuniga921:23", "filename": "boxmultiple", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/dzuniga921/23/9_BYZKN7MHFK6SXWTTQKZLHJFZI2CR8D.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/dzuniga921/23/2_XQMPTA5KR03XF0FVNU83I1M0C5GADD.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dzuniga921/23/8_62TRLCJLLCXYCQ4LZP5MD4G0GIAVH4.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dzuniga921/23/9_BYZKN7MHFK6SXWTTQKZLHJFZI2CR8D.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/dzuniga921:23", "plots": "https://api.plotly.com/v2/plots/dzuniga921:23", "parent": "https://api.plotly.com/v2/folders/home?user=dzuniga921" }, "owner": "dzuniga921", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 6, "web_url": "https://chart-studio.plotly.com/~dzuniga921/23/", "world_readable": true, "date_modified": "2019-06-18T00:46:41.680Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~dzuniga921/23/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgba(31,119,180,1)" }, "type": "box", "ysrc": "dzuniga921:22:255394", "frame": null, "xaxis": "x", "yaxis": "y", "jitter": 0.3, "marker": { "line": { "color": "rgba(31,119,180,1)" }, "color": "rgba(31,119,180,1)" }, "pointpos": -1.8, "boxpoints": "all", "fillcolor": "rgba(31,119,180,0.5)" } ], "frames": [], "layout": { "title": { "text": "GASTO EN SALUD NIÑOS" }, "xaxis": { "type": "category", "range": [ -0.5748024475524475, 0.5565685498711814 ], "title": { "text": "g.salud" }, "domain": [ 0, 1 ], "autorange": true, "automargin": true }, "yaxis": { "type": "linear", "range": [ -2.580041079318841, 1.902679697381981 ], "title": { "text": "rnorm(50)" }, "domain": [ 0, 1 ], "autorange": true, "automargin": true }, "margin": { "b": 40, "l": 60, "r": 10, "t": 25 }, "hovermode": "closest", "showlegend": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~dzuniga921", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-04-25 02:57:10", "mapbox_access_tokens": null, "has_password": null, "username": "dzuniga921", "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": "2019-06-18T00:38:17.573929Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~msdo1989/1.embed", "fid": "msdo1989:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/msdo1989/1/9_LXDQO6RYPDILZCOCFEMMBW9AXL4DZH.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/msdo1989/1/2_OYPO2LGLZARYC3I2XNQL2SJ04OJYOP.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/msdo1989/1/8_KFO4INSCMHKX4WMMHZK6JF7O5XGGR3.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/msdo1989/1/9_LXDQO6RYPDILZCOCFEMMBW9AXL4DZH.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/msdo1989:1", "plots": "https://api.plotly.com/v2/plots/msdo1989:1", "parent": "https://api.plotly.com/v2/folders/home?user=msdo1989" }, "owner": "msdo1989", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~msdo1989/1/", "world_readable": true, "date_modified": "2019-06-18T00:38:17.602Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~msdo1989/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "mode": "markers", "type": "pie", "labelssrc": "msdo1989:0:814e34", "valuessrc": "msdo1989:0:85a5ef" } ], "frames": [], "layout": { "title": { "text": "Faixa Etária" }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "legend": { "x": 0.8705338078291815, "y": 1 }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(231,231,240)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(183,183,191)" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(36,36,36)", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(36,36,36)", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(36,36,36)" }, "polar": { "bgcolor": "rgb(234,234,242)", "radialaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" }, "yaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" }, "zaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" } }, "xaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white" }, "yaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white" }, "ternary": { "aaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "bgcolor": "rgb(234,234,242)" }, "colorway": [ "rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#67001f" ], [ 0.1, "#b2182b" ], [ 0.2, "#d6604d" ], [ 0.3, "#f4a582" ], [ 0.4, "#fddbc7" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#d1e5f0" ], [ 0.7, "#92c5de" ], [ 0.8, "#4393c3" ], [ 0.9, "#2166ac" ], [ 1, "#053061" ] ], "sequential": [ [ 0, "rgb(2,4,25)" ], [ 0.06274509803921569, "rgb(24,15,41)" ], [ 0.12549019607843137, "rgb(47,23,57)" ], [ 0.18823529411764706, "rgb(71,28,72)" ], [ 0.25098039215686274, "rgb(97,30,82)" ], [ 0.3137254901960784, "rgb(123,30,89)" ], [ 0.3764705882352941, "rgb(150,27,91)" ], [ 0.4392156862745098, "rgb(177,22,88)" ], [ 0.5019607843137255, "rgb(203,26,79)" ], [ 0.5647058823529412, "rgb(223,47,67)" ], [ 0.6274509803921569, "rgb(236,76,61)" ], [ 0.6901960784313725, "rgb(242,107,73)" ], [ 0.7529411764705882, "rgb(244,135,95)" ], [ 0.8156862745098039, "rgb(245,162,122)" ], [ 0.8784313725490196, "rgb(246,188,153)" ], [ 0.9411764705882353, "rgb(247,212,187)" ], [ 1, "rgb(250,234,220)" ] ], "sequentialminus": [ [ 0, "rgb(2,4,25)" ], [ 0.06274509803921569, "rgb(24,15,41)" ], [ 0.12549019607843137, "rgb(47,23,57)" ], [ 0.18823529411764706, "rgb(71,28,72)" ], [ 0.25098039215686274, "rgb(97,30,82)" ], [ 0.3137254901960784, "rgb(123,30,89)" ], [ 0.3764705882352941, "rgb(150,27,91)" ], [ 0.4392156862745098, "rgb(177,22,88)" ], [ 0.5019607843137255, "rgb(203,26,79)" ], [ 0.5647058823529412, "rgb(223,47,67)" ], [ 0.6274509803921569, "rgb(236,76,61)" ], [ 0.6901960784313725, "rgb(242,107,73)" ], [ 0.7529411764705882, "rgb(244,135,95)" ], [ 0.8156862745098039, "rgb(245,162,122)" ], [ 0.8784313725490196, "rgb(246,188,153)" ], [ 0.9411764705882353, "rgb(247,212,187)" ], [ 1, "rgb(250,234,220)" ] ] }, "plot_bgcolor": "rgb(234,234,242)", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.5, "fillcolor": "rgb(67,103,167)" }, "annotationdefaults": { "arrowcolor": "rgb(67,103,167)" } }, "themeRef": "SEABORN" }, "hovermode": false, "hiddenlabels": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~msdo1989", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.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": "2019-06-18 00:37:49", "mapbox_access_tokens": null, "has_password": null, "username": "msdo1989", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "