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=cj0xJnA9MjAyNC0wNC0yMysxNSUzQTA3JTNBNDUuNTUzNjcwJTJCMDAlM0EwMA%3D%3D&format=api
https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTIzKzE1JTNBMjElM0E0NC4zMzA4NjglMkIwMCUzQTAw&format=api", "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yMysxNiUzQTAzJTNBMjMuNzkyODQ1JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2024-04-23T16:03:23.792845Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~UmbertoP/69.embed", "fid": "UmbertoP:69", "filename": "Plot 69", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/UmbertoP/69/9_4HZAM5BIQVMGXV7JXWOHWR65GMVH8M.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/UmbertoP/69/2_M6GTL5HLTEK396AKYQ5BMF569PQU21.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/UmbertoP/69/8_Y62K7EFX1BAM10HZKR5ZAFNR6Y6ZRN.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/UmbertoP/69/9_4HZAM5BIQVMGXV7JXWOHWR65GMVH8M.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/UmbertoP:69", "plots": "https://api.plotly.com/v2/plots/UmbertoP:69", "parent": "https://api.plotly.com/v2/folders/home?user=UmbertoP" }, "owner": "UmbertoP", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~UmbertoP/69/", "world_readable": true, "date_modified": "2024-04-23T16:03:23.803Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~UmbertoP/69/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "link": { "meta": { "columnNames": { "value": "E", "source": "C", "target": "D" } }, "valuesrc": "UmbertoP:68:309a06", "sourcesrc": "UmbertoP:68:28676b", "targetsrc": "UmbertoP:68:dbec8d" }, "node": { "pad": 15, "line": { "color": "black", "width": 0.5 }, "meta": { "columnNames": { "color": "B", "label": "A" } }, "colorsrc": "UmbertoP:68:fb0d36", "labelsrc": "UmbertoP:68:9232ee", "thickness": 20 }, "type": "sankey" } ], "frames": [], "layout": { "font": { "size": 10 }, "title": { "text": "Basic Sankey Diagram" }, "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/~UmbertoP", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.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-04-18 09:25:55", "mapbox_access_tokens": null, "has_password": null, "username": "UmbertoP", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T16:03:10.165397Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~RooEdward24/1.embed", "fid": "RooEdward24:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/RooEdward24/1/9_KZQJFHT8SPAHJPDYOW5HA3SMPICLAP.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/RooEdward24/1/2_WL0BCOKP9UX4O7TDL6OZEMY8OVU7X1.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/RooEdward24/1/8_RVSTG2E064HJ5K4TUJWHGI9M0YG25E.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/RooEdward24/1/9_KZQJFHT8SPAHJPDYOW5HA3SMPICLAP.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/RooEdward24:1", "plots": "https://api.plotly.com/v2/plots/RooEdward24:1", "parent": "https://api.plotly.com/v2/folders/home?user=RooEdward24" }, "owner": "RooEdward24", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~RooEdward24/1/", "world_readable": true, "date_modified": "2024-04-23T16:03:10.176Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~RooEdward24/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Año - Mes", "y": "Número de Cel/mL" } }, "mode": "markers", "type": "box", "xsrc": "RooEdward24:0:414c3c,40fa65*", "ysrc": "RooEdward24:0:810cfa", "boxpoints": false } ], "frames": [], "layout": { "font": { "size": 13, "color": "rgb(0, 0, 0)", "family": "Times New Roman" }, "title": { "x": 0.06, "font": { "size": 20 }, "text": "<b>Concentraciones de cianobacterias en Bocatoma (P1) durante la epoca seca 2022, 2023 y 2024</b>" }, "xaxis": { "type": "multicategory", "range": [ -0.5, 11.5 ], "title": { "font": { "size": 15 }, "text": "<b>Año y Mes</b>" }, "showgrid": false, "showline": true, "zeroline": false, "autorange": true, "linecolor": "rgb(10, 10, 10)", "showticklabels": true }, "yaxis": { "type": "linear", "range": [ -668.3888888888888, 12899.388888888889 ], "title": { "font": { "size": 15 }, "text": "<b>Número de Cel/mL</b>" }, "showgrid": true, "autorange": true, "gridcolor": "rgb(237, 232, 232)" }, "autosize": true, "colorway": [ "#4c78a8", "#f58518", "#e45756", "#72b7b2", "#54a24b", "#eeca3b", "#b279a2", "#ff9da6", "#9d755d", "#bab0ac" ], "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" }, "colorscale": { "diverging": [ [ 0, "#67001f" ], [ 0.1, "#b2182b" ], [ 0.2, "#d6604d" ], [ 0.3, "#f4a582" ], [ 0.4, "#fddbc7" ], [ 0.5, "#ffffff" ], [ 0.6, "#e0e0e0" ], [ 0.7, "#bababa" ], [ 0.8, "#878787" ], [ 0.9, "#4d4d4d" ], [ 1, "#1a1a1a" ] ], "sequential": [ [ 0, "#ffffff" ], [ 0.125, "#f0f0f0" ], [ 0.25, "#d9d9d9" ], [ 0.375, "#bdbdbd" ], [ 0.5, "#969696" ], [ 0.625, "#737373" ], [ 0.75, "#525252" ], [ 0.875, "#252525" ], [ 1, "#000000" ] ], "sequentialminus": [ [ 0, "#ffffff" ], [ 0.125, "#f0f0f0" ], [ 0.25, "#d9d9d9" ], [ 0.375, "#bdbdbd" ], [ 0.5, "#969696" ], [ 0.625, "#737373" ], [ 0.75, "#525252" ], [ 0.875, "#252525" ], [ 1, "#000000" ] ] }, "uniformtext": { "mode": false }, "plot_bgcolor": "rgb(255, 255, 255)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~RooEdward24", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-23 16:02:11", "mapbox_access_tokens": null, "has_password": null, "username": "RooEdward24", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:56:24.750704Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~tejeshwara/8.embed", "fid": "tejeshwara:8", "filename": "Plot 8", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/tejeshwara/8/9_VYMS1J8KPILB2NTBN985Q3YUUA9R7C.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/tejeshwara/8/2_T3J61P5OOODE4KRJGYJN14I3MZ1JCE.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tejeshwara/8/8_6PLXB9U8OCQIYB8PK9E40VSK6DFOKJ.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tejeshwara/8/9_VYMS1J8KPILB2NTBN985Q3YUUA9R7C.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/tejeshwara:8", "plots": "https://api.plotly.com/v2/plots/tejeshwara:8", "parent": "https://api.plotly.com/v2/folders/home?user=tejeshwara" }, "owner": "tejeshwara", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~tejeshwara/8/", "world_readable": true, "date_modified": "2024-04-23T15:56:24.762Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~tejeshwara/8/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "4.091653027823213", "y": " 300.2490774907749" } }, "mode": "lines", "name": "case 1", "type": "scatter", "xsrc": "tejeshwara:1:14fdcb", "ysrc": "tejeshwara:1:d1e2b7" }, { "meta": { "columnNames": { "x": "0.01489336351721704", "y": " 299.8348623853211" } }, "mode": "lines", "name": "case 2", "type": "scatter", "xsrc": "tejeshwara:2:56e288", "ysrc": "tejeshwara:2:d663f1" }, { "meta": { "columnNames": { "x": "4.085854199836035", "y": " 300.00013569257493" } }, "mode": "lines", "name": "case 3", "type": "scatter", "xsrc": "tejeshwara:0:c02122", "ysrc": "tejeshwara:0:3d7ee1" }, { "meta": { "columnNames": { "x": "4.155359565807316", "y": " 300.2518656716418" } }, "mode": "lines", "name": "case 4", "type": "scatter", "xsrc": "tejeshwara:7:7d6b56", "ysrc": "tejeshwara:7:cb94b5" }, { "meta": { "columnNames": { "x": "0.01446357493296091", "y": " 300.0812274368231" } }, "mode": "lines", "name": "case 5", "type": "scatter", "xsrc": "tejeshwara:6:8104ac", "ysrc": "tejeshwara:6:3e213f" }, { "meta": { "columnNames": { "x": "0", "y": " 300.0833333333333" } }, "mode": "lines", "name": "case 6", "type": "scatter", "xsrc": "tejeshwara:5:282678", "ysrc": "tejeshwara:5:5eac43", "orientation": "v" }, { "meta": { "columnNames": { "x": "0", "y": " 300" } }, "mode": "lines", "name": "case 7", "type": "scatter", "xsrc": "tejeshwara:4:2ed05b", "ysrc": "tejeshwara:4:935863" }, { "meta": { "columnNames": { "x": "8.333333333333258", "y": " 300" } }, "mode": "lines", "name": "case 8", "type": "scatter", "xsrc": "tejeshwara:3:0542c4", "ysrc": "tejeshwara:3:c9472e" } ], "frames": [], "layout": { "xaxis": { "type": "linear", "range": [ 44.93464052287584, 2463.4794732944556 ], "ticks": "outside", "title": { "font": { "size": 14, "family": "Times New Roman" }, "text": "<b>Flow time [s]</b>" }, "domain": [ 0, 0.5 ], "mirror": "ticks", "nticks": 13, "ticklen": 3, "showgrid": false, "showline": true, "tickfont": { "size": 12 }, "autorange": true, "linecolor": "rgb(4, 18, 41)", "linewidth": 1, "tickwidth": 2, "showspikes": false, "rangeslider": { "range": [ 44.93464052287584, 2463.4794732944556 ], "yaxis": {}, "visible": false, "autorange": true } }, "yaxis": { "type": "linear", "range": [ 299.01843850752056, 346.7230628525222 ], "ticks": "outside", "title": { "font": { "size": 14, "family": "Times New Roman" }, "text": "<b>Tmax/k</b>" }, "domain": [ 0.125, 1 ], "mirror": "ticks", "nticks": 13, "ticklen": 3, "showgrid": false, "showline": true, "tickfont": { "size": 12 }, "autorange": true, "linecolor": "rgb(4, 18, 41)", "linewidth": 1, "tickwidth": 2, "showspikes": false }, "legend": { "x": 0.017728937728937775, "y": 0.9707246376811592, "itemsizing": "trace", "traceorder": "normal", "borderwidth": 1 }, "margin": { "t": 100, "pad": 10 }, "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/~tejeshwara", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.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": "2024-04-23 15:54:46", "mapbox_access_tokens": null, "has_password": null, "username": "tejeshwara", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:55:38.270507Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jeonyl/180.embed", "fid": "jeonyl:180", "filename": "two_features_el_model_plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/180/9_LR896FF9HM44N0DCA7URG45S00DWY0.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/180/2_UIMYG59EPJXNV7WH4BS8YYKMDDYUE7.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/180/8_XM4ZPP26LIJJZSZ29ME40GWARX0I2S.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/180/9_LR896FF9HM44N0DCA7URG45S00DWY0.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jeonyl:180", "plots": "https://api.plotly.com/v2/plots/jeonyl:180", "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl" }, "owner": "jeonyl", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~jeonyl/180/", "world_readable": true, "date_modified": "2024-04-23T15:55:38.283Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/180/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "surface", "xsrc": "jeonyl:179:15d015", "ysrc": "jeonyl:179:478fd6", "zsrc": "jeonyl:179:c438d8", "scene": "scene", "opacity": 0.8, "showscale": false, "colorscale": [ [ 0.0, "rgb(255,255,204)" ], [ 0.125, "rgb(255,237,160)" ], [ 0.25, "rgb(254,217,118)" ], [ 0.375, "rgb(254,178,76)" ], [ 0.5, "rgb(253,141,60)" ], [ 0.625, "rgb(252,78,42)" ], [ 0.75, "rgb(227,26,28)" ], [ 0.875, "rgb(189,0,38)" ], [ 1.0, "rgb(128,0,38)" ] ] }, { "mode": "markers", "type": "scatter3d", "xsrc": "jeonyl:179:39bb02", "ysrc": "jeonyl:179:bd63e3", "zsrc": "jeonyl:179:5e71ed", "scene": "scene", "marker": { "size": 3, "color": "#ff0500" } } ], "layout": { "scene": { "xaxis": { "title": { "text": "X1" } }, "yaxis": { "title": { "text": "X2" } }, "zaxis": { "title": { "text": "Predicted Y" } }, "domain": { "x": [ 0.0, 1.0 ], "y": [ 0.0, 1.0 ] } }, "title": { "text": "Linear Regression(e.g. Elastic-net)" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "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", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "line": { "color": "white", "width": 0.6 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(36,36,36)" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "angularaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" } }, "scene": { "xaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "baxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "caxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "bgcolor": "white" }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "coloraxis": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0.0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1.0, "rgb(5,48,97)" ] ], "sequential": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "sequentialminus": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.3, "fillcolor": "black" }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 } } }, "showlegend": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jeonyl", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 07:16:01", "mapbox_access_tokens": null, "has_password": null, "username": "jeonyl", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:55:26.630722Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jeonyl/177.embed", "fid": "jeonyl:177", "filename": "two_features_svr_model_plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/177/9_57B0NRDBR8C0ZA619JQMIJN39U7L15.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/177/2_52MM9G0PZLH1UFOH5R9HFE8NSU801L.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/177/8_NBV1G6R9TS7G4QJG3TF6R1K4B942L5.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/177/9_57B0NRDBR8C0ZA619JQMIJN39U7L15.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jeonyl:177", "plots": "https://api.plotly.com/v2/plots/jeonyl:177", "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl" }, "owner": "jeonyl", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~jeonyl/177/", "world_readable": true, "date_modified": "2024-04-23T15:56:50.245Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/177/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "surface", "xsrc": "jeonyl:178:f85edc", "ysrc": "jeonyl:178:92ae9a", "zsrc": "jeonyl:178:7ef639", "scene": "scene", "opacity": 0.8, "showscale": false, "colorscale": [ [ 0.0, "rgb(255,255,204)" ], [ 0.125, "rgb(255,237,160)" ], [ 0.25, "rgb(254,217,118)" ], [ 0.375, "rgb(254,178,76)" ], [ 0.5, "rgb(253,141,60)" ], [ 0.625, "rgb(252,78,42)" ], [ 0.75, "rgb(227,26,28)" ], [ 0.875, "rgb(189,0,38)" ], [ 1.0, "rgb(128,0,38)" ] ] }, { "mode": "markers", "type": "scatter3d", "xsrc": "jeonyl:178:4c2941", "ysrc": "jeonyl:178:ea0fb2", "zsrc": "jeonyl:178:ae6cc5", "scene": "scene", "marker": { "size": 3, "color": "#ff0500" } } ], "layout": { "scene": { "xaxis": { "title": { "text": "X1" } }, "yaxis": { "title": { "text": "X2" } }, "zaxis": { "title": { "text": "Predicted Y" } }, "domain": { "x": [ 0.0, 1.0 ], "y": [ 0.0, 1.0 ] } }, "title": { "text": "Support Vector Regression" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "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", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "line": { "color": "white", "width": 0.6 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(36,36,36)" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "angularaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" } }, "scene": { "xaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "baxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "caxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "bgcolor": "white" }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "coloraxis": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0.0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1.0, "rgb(5,48,97)" ] ], "sequential": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "sequentialminus": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.3, "fillcolor": "black" }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 } } }, "showlegend": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jeonyl", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 07:16:01", "mapbox_access_tokens": null, "has_password": null, "username": "jeonyl", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:51:52.207891Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jeonyl/172.embed", "fid": "jeonyl:172", "filename": "two_features_xgb_model_plot", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/172/9_441Q27OL4MRXT1ZVDLKVFITMNO8Z2F.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/172/2_7YF1Q8K7F9TVR3KC0QKKD27E9MWEBX.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/172/8_059WEP93PJHWAV8V1ATCNZO7Y2RJLV.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/172/9_441Q27OL4MRXT1ZVDLKVFITMNO8Z2F.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jeonyl:172", "plots": "https://api.plotly.com/v2/plots/jeonyl:172", "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl" }, "owner": "jeonyl", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~jeonyl/172/", "world_readable": true, "date_modified": "2024-04-23T15:59:18.398Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/172/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "type": "surface", "xsrc": "jeonyl:181:c674b7", "ysrc": "jeonyl:181:6afabd", "zsrc": "jeonyl:181:9affc7", "scene": "scene", "opacity": 0.8, "showscale": false, "colorscale": [ [ 0.0, "rgb(255,255,204)" ], [ 0.125, "rgb(255,237,160)" ], [ 0.25, "rgb(254,217,118)" ], [ 0.375, "rgb(254,178,76)" ], [ 0.5, "rgb(253,141,60)" ], [ 0.625, "rgb(252,78,42)" ], [ 0.75, "rgb(227,26,28)" ], [ 0.875, "rgb(189,0,38)" ], [ 1.0, "rgb(128,0,38)" ] ] }, { "mode": "markers", "type": "scatter3d", "xsrc": "jeonyl:181:fe4070", "ysrc": "jeonyl:181:aa2d45", "zsrc": "jeonyl:181:5a92df", "scene": "scene", "marker": { "size": 2, "color": "#ff0500" } } ], "layout": { "scene": { "xaxis": { "title": { "text": "X1" } }, "yaxis": { "title": { "text": "X2" } }, "zaxis": { "title": { "text": "Predicted Y" } }, "domain": { "x": [ 0.0, 1.0 ], "y": [ 0.0, 1.0 ] } }, "title": { "text": "Decision Tree Regression(e.g. xgboost)" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "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", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "line": { "color": "white", "width": 0.6 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(36,36,36)" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "angularaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" } }, "scene": { "xaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "outside", "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "zerolinecolor": "rgb(36,36,36)", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "ticks": "outside", "title": { "standoff": 15 }, "showgrid": false, "showline": true, "zeroline": false, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "automargin": true, "zerolinecolor": "rgb(36,36,36)" }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "baxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "caxis": { "ticks": "outside", "showgrid": false, "showline": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)" }, "bgcolor": "white" }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "coloraxis": { "colorbar": { "ticks": "outside", "tickcolor": "rgb(36,36,36)", "outlinewidth": 1 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0.0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1.0, "rgb(5,48,97)" ] ], "sequential": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "sequentialminus": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.3, "fillcolor": "black" }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 } } }, "showlegend": false } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jeonyl", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-12 07:16:01", "mapbox_access_tokens": null, "has_password": null, "username": "jeonyl", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:45:14.213791Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~sudhanchitgopkar/1.embed", "fid": "sudhanchitgopkar:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/sudhanchitgopkar/1/9_0856VC71WDMKSVIHV7PI78SR01T9N8.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/sudhanchitgopkar/1/2_TCUTA0D8T8QGN9ZN4EZLS2CE2JR2TW.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sudhanchitgopkar/1/8_YG3VYTN4D9GK02CGMOG9WLWDUYD60S.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sudhanchitgopkar/1/9_0856VC71WDMKSVIHV7PI78SR01T9N8.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/sudhanchitgopkar:1", "plots": "https://api.plotly.com/v2/plots/sudhanchitgopkar:1", "parent": "https://api.plotly.com/v2/folders/home?user=sudhanchitgopkar" }, "owner": "sudhanchitgopkar", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~sudhanchitgopkar/1/", "world_readable": true, "date_modified": "2024-04-23T23:11:05.682Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~sudhanchitgopkar/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "D", "y": "" } }, "mode": "markers", "name": "<br>", "type": "box", "xsrc": "sudhanchitgopkar:0:b2282b", "boxmean": true, "hoveron": "boxes", "notched": false, "boxpoints": false, "orientation": "h", "hovertemplate": "" } ], "frames": [], "layout": { "title": { "font": { "size": 30 }, "text": "" }, "xaxis": { "type": "linear", "range": [ 0.10833333333333334, 0.5416666666666667 ], "title": { "text": "Keyword Hit Rate" }, "autorange": true }, "yaxis": { "type": "category", "range": [ -0.5, 0.5 ], "title": { "text": "Click to enter Y axis title" }, "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" }, "annotations": [] } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~sudhanchitgopkar", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-23 15:45:01", "mapbox_access_tokens": null, "has_password": null, "username": "sudhanchitgopkar", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:42:46.920626Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~janard53/1.embed", "fid": "janard53:1", "filename": "DDCVD Monitors", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/janard53/1/9_Y74P3YDHLXDH29GTH4WD1B2B3E03KG.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/janard53/1/2_U5XNTI7C9UUWI6JEJLOT8QN4F7NBIH.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/janard53/1/8_QEQK4AQHCIBGVB9PCJH83F9KDH5SWL.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/janard53/1/9_Y74P3YDHLXDH29GTH4WD1B2B3E03KG.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/janard53:1", "plots": "https://api.plotly.com/v2/plots/janard53:1", "parent": "https://api.plotly.com/v2/folders/home?user=janard53" }, "owner": "janard53", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~janard53/1/", "world_readable": true, "date_modified": "2024-05-28T09:33:52.283Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~janard53/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Lot ID", "y": "Pre" } }, "mode": "markers", "type": "box", "xsrc": "janard53:0:548495", "ysrc": "janard53:0:218f8b", "visible": true, "boxpoints": false, "transforms": [ { "meta": { "columnNames": { "groups": "Monitor" } }, "type": "groupby", "styles": [ { "value": { "visible": "legendonly" }, "target": "PRODUCER_NIT" }, { "value": { "visible": "legendonly" }, "target": "EXTREME_1_NIT" }, { "value": { "visible": "legendonly" }, "target": "EXTREME_2_aC" } ], "groupssrc": "janard53:0:808fd7" } ] }, { "meta": { "columnNames": { "x": "Lot ID", "y": "Adders" } }, "type": "box", "xsrc": "janard53:0:548495", "ysrc": "janard53:0:032b6c", "visible": true, "boxpoints": false, "transforms": [ { "meta": { "columnNames": { "groups": "Monitor" } }, "type": "groupby", "styles": [ { "value": { "visible": "legendonly" }, "target": "PRODUCER_NIT" }, { "value": { "visible": "legendonly" }, "target": "EXTREME_1_NIT" }, { "value": { "visible": true }, "target": "EXTREME_2_aC" } ], "groupssrc": "janard53:0:808fd7" } ] } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -0.5, 8.5 ], "autorange": true, "showspikes": false }, "yaxis": { "type": "linear", "range": [ -7.8888888888888875, 149.88888888888889 ], "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" }, "hovermode": "closest" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~janard53", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-23 15:41:43", "mapbox_access_tokens": null, "has_password": null, "username": "janard53", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:31:09.069385Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~DanRobinson2004/10.embed", "fid": "DanRobinson2004:10", "filename": "Plot 10", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/DanRobinson2004/10/9_Z5F7VVC76WJ7RFHZ8VLHKQ5ARXPVEO.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/DanRobinson2004/10/2_4UY89RVT27NDFTKW2RUSYH76J7M4D3.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/DanRobinson2004/10/8_WXBM6KBJQ7X8XBXG07GLSVM8HCKXKB.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/DanRobinson2004/10/9_Z5F7VVC76WJ7RFHZ8VLHKQ5ARXPVEO.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/DanRobinson2004:10", "plots": "https://api.plotly.com/v2/plots/DanRobinson2004:10", "parent": "https://api.plotly.com/v2/folders/home?user=DanRobinson2004" }, "owner": "DanRobinson2004", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~DanRobinson2004/10/", "world_readable": true, "date_modified": "2024-04-23T15:36:13.858Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~DanRobinson2004/10/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "Under Reinforced Concrete Beam", "type": "scatter", "xsrc": "DanRobinson2004:5:e75bcc", "ysrc": "DanRobinson2004:5:6dc94a" }, { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "Over Reinforced Concrete Beam", "type": "scatter", "xsrc": "DanRobinson2004:6:3a95cf", "ysrc": "DanRobinson2004:6:538b47", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "Natural Timber", "type": "scatter", "xsrc": "DanRobinson2004:7:d4bfda", "ysrc": "DanRobinson2004:7:976164", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "Glulam Beam", "type": "scatter", "xsrc": "DanRobinson2004:8:eecbf4", "ysrc": "DanRobinson2004:8:047b1e", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "OSB + Veneered Lumber", "type": "scatter", "xsrc": "DanRobinson2004:9:e3bf8a", "ysrc": "DanRobinson2004:9:58b5d3", "visible": true, "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "" }, "xaxis": { "type": "linear", "range": [ 5, 39 ], "title": { "text": "Force Applied (kN)" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.3999999999999997, 23.599999999999998 ], "title": { "text": "Deflection (mm)" }, "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/~DanRobinson2004", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/31.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2024-04-17 21:14:39", "mapbox_access_tokens": null, "has_password": null, "username": "DanRobinson2004", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } }, { "creation_time": "2024-04-23T15:21:44.330868Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~tlacroix/179.embed", "fid": "tlacroix:179", "filename": "FINAL - Total AutPhi Corpus Inclusions Graph", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/tlacroix/179/9_LOB305XLEYYMQYPVD4T9343B8TAZUK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/tlacroix/179/2_YZMNSSNBIPAG01LC8RAXXYI1DK1B6C.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/179/8_HM2V4ER6SNI8M8DB5X25SV2G52X6M0.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/179/9_LOB305XLEYYMQYPVD4T9343B8TAZUK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/tlacroix:179", "plots": "https://api.plotly.com/v2/plots/tlacroix:179", "parent": "https://api.plotly.com/v2/folders/home?user=tlacroix" }, "owner": "tlacroix", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 2, "web_url": "https://chart-studio.plotly.com/~tlacroix/179/", "world_readable": true, "date_modified": "2024-04-23T15:32:47.569Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~tlacroix/179/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Journal", "y": "Inclusions" } }, "mode": "markers", "name": "Inclusions", "type": "bar", "xsrc": "tlacroix:178:bbce51", "ysrc": "tlacroix:178:304a15", "marker": { "color": "rgb(99, 110, 250)" }, "opacity": 0.85, "orientation": "v" }, { "meta": { "columnNames": { "x": "Journal", "y": "Exclusions" } }, "mode": "lines", "name": "Exclusions", "type": "bar", "xsrc": "tlacroix:178:bbce51", "ysrc": "tlacroix:178:73c9a5", "stackgroup": null, "orientation": "v" }, { "line": { "dash": "dash", "color": "rgb(42, 63, 95)", "width": 3 }, "meta": { "columnNames": { "x": "Journal", "y": "G" } }, "mode": "lines", "name": "Average Inclusions", "type": "scatter", "xsrc": "tlacroix:178:bbce51", "ysrc": "tlacroix:178:417c4d", "stackgroup": null }, { "line": { "dash": "dot", "color": "rgb(42, 63, 95)", "width": 3 }, "meta": { "columnNames": { "x": "Journal", "y": "Average Result" } }, "mode": "lines", "name": "Average Hits", "type": "scatter", "xsrc": "tlacroix:178:bbce51", "ysrc": "tlacroix:178:a85d0d", "orientation": "v" } ], "frames": [], "layout": { "font": { "size": 24 }, "title": { "text": "Corpus Results (Inclusions/Exclusions)" }, "xaxis": { "type": "category", "range": [ -0.5, 59.5 ], "title": { "text": "Journal" }, "tickfont": { "size": 8 }, "autorange": true, "tickangle": 45 }, "yaxis": { "type": "linear", "range": [ 0, 184.21052631578948 ], "title": { "text": "Number of Articles" }, "autorange": true }, "legend": { "x": 0.7310778195985208, "y": 0.8663217158333604 }, "barmode": "stack", "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(250, 249, 246)", "paper_bgcolor": "rgb(250, 249, 246)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~tlacroix", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2019-03-29 15:30:07", "mapbox_access_tokens": null, "has_password": null, "username": "tlacroix", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "