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=cj0xJnA9MjAyNS0wNy0wOSsxMCUzQTA4JTNBNTMuMzkwMTE0JTJCMDAlM0EwMA%3D%3D&format=api
https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA3LTA5KzEwJTNBMTMlM0EzMi4zMzczMjQlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wNy0wOSsxMSUzQTEwJTNBMzIuNjcyOTYyJTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-07-09T11:10:32.672962Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~HardikR/1.embed", "fid": "HardikR:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/HardikR/1/9_RPR3EB1V4U70X6L43Q2KDSL0P8Y3LM.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/HardikR/1/2_0MVWM9FSLL0P0CALBAGBTRQKGDGSW8.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/HardikR/1/8_PDU8JDIHSVXBEDE8ABMD6WV1WFUKI3.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/HardikR/1/9_RPR3EB1V4U70X6L43Q2KDSL0P8Y3LM.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/HardikR:1", "plots": "https://api.plotly.com/v2/plots/HardikR:1", "parent": "https://api.plotly.com/v2/folders/home?user=HardikR" }, "owner": "HardikR", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~HardikR/1/", "world_readable": true, "date_modified": "2025-07-09T11:10:32.685Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~HardikR/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "B", "y": "A" } }, "mode": "lines", "type": "scatter", "xsrc": "HardikR:0:f1878d", "ysrc": "HardikR:0:1362e4" } ], "frames": [], "layout": { "title": { "text": "UPI outage -12 Apr" }, "xaxis": { "type": "category", "range": [ 0, 10 ], "title": { "text": "Date" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 550.1116666666666, 633.8783333333334 ], "title": { "text": "Transaction Volume (in Mn)" }, "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/~HardikR", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-09 11:07:17", "mapbox_access_tokens": null, "has_password": null, "username": "HardikR", "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": "2025-07-09T10:56:32.559802Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Sneha112001/3.embed", "fid": "Sneha112001:3", "filename": "Plot 3", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Sneha112001/3/9_JXAM7L3PYK03UZLK9XXXZQDU6LBKC7.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Sneha112001/3/2_MUBXQIMEA4HTLR9QE4EJM5M7LWJFZD.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sneha112001/3/8_SWNZG5UWUO4GHG61H2REU10CKRYCR8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sneha112001/3/9_JXAM7L3PYK03UZLK9XXXZQDU6LBKC7.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Sneha112001:3", "plots": "https://api.plotly.com/v2/plots/Sneha112001:3", "parent": "https://api.plotly.com/v2/folders/home?user=Sneha112001" }, "owner": "Sneha112001", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Sneha112001/3/", "world_readable": true, "date_modified": "2025-07-09T10:56:32.571Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Sneha112001/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(11, 224, 199)", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers+lines", "name": "<b>MDM-FSO</b>", "type": "scatter", "xsrc": "Sneha112001:2:9404f9", "ysrc": "Sneha112001:2:2f9b71", "marker": { "size": 9, "symbol": "diamond" } }, { "line": { "color": "rgb(213, 24, 148)", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "markers+lines", "name": "<b>DFE</b>", "type": "scatter", "xsrc": "Sneha112001:2:9404f9", "ysrc": "Sneha112001:2:1cbb4b", "marker": { "size": 9, "symbol": "diamond" }, "stackgroup": null }, { "line": { "color": "rgb(0, 54, 204)", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "markers+lines", "name": "<b>Proposed </b>", "type": "scatter", "xsrc": "Sneha112001:2:9404f9", "ysrc": "Sneha112001:2:408710", "marker": { "size": 9, "symbol": "diamond" }, "stackgroup": null } ], "frames": [], "layout": { "font": { "size": 20, "color": "rgb(12, 12, 12)" }, "xaxis": { "range": [ 1.5145281238203096e-06, 1.6154718761796905e-06 ], "title": { "font": { "color": "rgb(9, 9, 9)", "family": "Times New Roman" }, "text": "<b>Wavelength (m)</b>" }, "tickfont": { "size": 17, "color": "rgb(10, 10, 10)" }, "autorange": true, "exponentformat": "power" }, "yaxis": { "type": "linear", "range": [ -36.35139841114376, 2.3513984111437587 ], "title": { "font": { "color": "rgb(24, 24, 24)", "family": "Times New Roman" }, "text": "<b>Power (dBm)</b>" }, "autorange": true }, "legend": { "x": 0.06507080027605701, "y": 0.9292543021032504 }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "#C8D4E3", "linecolor": "#C8D4E3", "endlinecolor": "#2a3f5f", "minorgridcolor": "#C8D4E3", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "white", "showlakes": true, "subunitcolor": "#C8D4E3" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "white", "radialaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" }, "angularaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "yaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" }, "zaxis": { "ticks": "", "gridcolor": "#DFE8F3", "gridwidth": 2, "linecolor": "#EBF0F8", "zerolinecolor": "#EBF0F8", "showbackground": true, "backgroundcolor": "white" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#EBF0F8", "linecolor": "#EBF0F8", "automargin": true, "zerolinecolor": "#EBF0F8", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "baxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "caxis": { "ticks": "", "gridcolor": "#DFE8F3", "linecolor": "#A2B1C6" }, "bgcolor": "white" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "white", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#506784" }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#506784", "arrowwidth": 1 } }, "themeRef": "PLOTLY_WHITE" }, "showlegend": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Sneha112001", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-02-25 06:40:32", "mapbox_access_tokens": null, "has_password": null, "username": "Sneha112001", "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": "2025-07-09T10:47:35.201293Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~POHUNGCHENG/37.embed", "fid": "POHUNGCHENG:37", "filename": "2半自動抓取箱子", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/37/9_7XWEGZ0OJAM7288SRU8VPNH73GUH4P.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/37/2_K63SL1DESHZFQ390CDEVWDD1HP0PSE.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/37/8_5ULHQ17XOIG2R4AC20SWBUID2O6PDP.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/37/9_7XWEGZ0OJAM7288SRU8VPNH73GUH4P.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/POHUNGCHENG:37", "plots": "https://api.plotly.com/v2/plots/POHUNGCHENG:37", "parent": "https://api.plotly.com/v2/folders/home?user=POHUNGCHENG" }, "owner": "POHUNGCHENG", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~POHUNGCHENG/37/", "world_readable": true, "date_modified": "2025-07-09T10:47:35.213Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~POHUNGCHENG/37/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "Thumb", "type": "scatter", "xsrc": "POHUNGCHENG:36:2c2452", "ysrc": "POHUNGCHENG:36:67d737" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "Index", "type": "scatter", "xsrc": "POHUNGCHENG:36:2c2452", "ysrc": "POHUNGCHENG:36:829193" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "E" } }, "mode": "lines", "name": "Middle", "type": "scatter", "xsrc": "POHUNGCHENG:36:2c2452", "ysrc": "POHUNGCHENG:36:efe583" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "F" } }, "mode": "lines", "name": "Ring", "type": "scatter", "xsrc": "POHUNGCHENG:36:2c2452", "ysrc": "POHUNGCHENG:36:ca16ec" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "G" } }, "mode": "lines", "name": "Pinky", "type": "scatter", "xsrc": "POHUNGCHENG:36:2c2452", "ysrc": "POHUNGCHENG:36:4e5609" } ], "frames": [], "layout": { "title": { "text": "半自動箱子抓取2" }, "xaxis": { "type": "linear", "range": [ 0, 12.444 ], "title": { "text": "time(s)" }, "domain": [ 0, 0.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -473.6666666666667, 159.66666666666666 ], "title": { "text": "Analog Signal (V)" }, "domain": [ 0, 1 ], "autorange": true }, "legend": { "x": 0.5069169510807736, "y": 1 }, "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/~POHUNGCHENG", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-22 15:46:02", "mapbox_access_tokens": null, "has_password": null, "username": "POHUNGCHENG", "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": "2025-07-09T10:43:19.283708Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jimmyg23/580.embed", "fid": "jimmyg23:580", "filename": "NatGas CoT YoY", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/580/9_2W1KUWEJ461KIPN43RCD07H26MZZO9.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/580/2_0MVLY9WTZFI7563VONYELU71EQH801.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/580/8_VU33A416YKD656UGK6UFX6JP5KA2F1.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/580/9_2W1KUWEJ461KIPN43RCD07H26MZZO9.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jimmyg23:580", "plots": "https://api.plotly.com/v2/plots/jimmyg23:580", "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23" }, "owner": "jimmyg23", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 11, "web_url": "https://chart-studio.plotly.com/~jimmyg23/580/", "world_readable": true, "date_modified": "2025-07-18T21:34:57.882Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/580/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(210, 15, 63)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2020" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:582:4b641a", "stackgroup": null }, { "line": { "color": "rgb(239, 161, 56)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2021" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:583:9667fa", "stackgroup": null }, { "line": { "color": "rgb(58, 204, 74)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2022" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:584:3dc32a", "stackgroup": null }, { "line": { "color": "rgb(59, 213, 220)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2023" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:585:625ef5", "stackgroup": null }, { "line": { "color": "rgb(120, 48, 210)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2024" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:586:cb87f8", "stackgroup": null }, { "line": { "color": "rgb(64, 141, 208)", "width": 6 }, "meta": { "columnNames": { "x": "DATE", "y": "|2025" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:574:88bc00", "ysrc": "jimmyg23:581:f96e77", "stackgroup": null } ], "frames": [], "layout": { "font": { "size": 15, "color": "rgb(23, 50, 80)", "family": "Droid Sans" }, "title": { "x": 0.5, "font": { "size": 26, "family": "Droid Sans" }, "text": "Net Long | 1,127,541" }, "xaxis": { "type": "category", "dtick": 0, "range": [ 0, 51 ], "nticks": 0, "showline": true, "tickmode": "auto", "autorange": true, "gridcolor": "rgb(181, 204, 231)", "linecolor": "rgb(59, 97, 140)", "linewidth": 2, "tickangle": 45 }, "yaxis": { "type": "linear", "range": [ -260679.16666666666, 1229504.1666666667 ], "nticks": 15, "showline": true, "autorange": true, "linecolor": "rgb(153, 186, 228)", "tickangle": "auto", "zerolinecolor": "rgb(255, 210, 189)" }, "legend": { "x": 1.02, "y": 0.3599999999999999 }, "margin": { "t": 80 }, "barmode": "group", "modebar": { "color": "rgba(21, 54, 164, 0.3)", "activecolor": "rgba(17, 53, 139, 0.7)", "orientation": "v" }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" }, "uniformtext": { "mode": false, "minsize": 5 }, "plot_bgcolor": "rgb(255, 255, 255)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jimmyg23", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-03-19 23:02:49", "mapbox_access_tokens": null, "has_password": null, "username": "jimmyg23", "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": "2025-07-09T10:40:31.162765Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~POHUNGCHENG/35.embed", "fid": "POHUNGCHENG:35", "filename": "半自動箱子抓取", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/35/9_5KHCKVTOXJ45ISK86CUCBJ6781OUVA.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/35/2_LKZW257V5Y01XHY5B26J7TN6VKBA8J.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/35/8_SCKDA7M83WZNFRNOA40DW3P11NOSFL.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/POHUNGCHENG/35/9_5KHCKVTOXJ45ISK86CUCBJ6781OUVA.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/POHUNGCHENG:35", "plots": "https://api.plotly.com/v2/plots/POHUNGCHENG:35", "parent": "https://api.plotly.com/v2/folders/home?user=POHUNGCHENG" }, "owner": "POHUNGCHENG", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~POHUNGCHENG/35/", "world_readable": true, "date_modified": "2025-07-09T10:41:18.047Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~POHUNGCHENG/35/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "Thumb", "type": "scatter", "xsrc": "POHUNGCHENG:34:df3e4b", "ysrc": "POHUNGCHENG:34:86498a" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "Index", "type": "scatter", "xsrc": "POHUNGCHENG:34:df3e4b", "ysrc": "POHUNGCHENG:34:d17155" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "E" } }, "mode": "lines", "name": "Middle", "type": "scatter", "xsrc": "POHUNGCHENG:34:df3e4b", "ysrc": "POHUNGCHENG:34:5a86f6" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "F" } }, "mode": "lines", "name": "Ring", "type": "scatter", "xsrc": "POHUNGCHENG:34:df3e4b", "ysrc": "POHUNGCHENG:34:ae9d53" }, { "line": { "dash": "solid", "width": 3 }, "meta": { "columnNames": { "x": "A", "y": "G" } }, "mode": "lines", "name": "Pinky", "type": "scatter", "xsrc": "POHUNGCHENG:34:df3e4b", "ysrc": "POHUNGCHENG:34:a15420" } ], "frames": [], "layout": { "title": { "text": "半自動箱子抓取數據" }, "xaxis": { "type": "linear", "range": [ 0, 15.705 ], "title": { "text": "time(s)" }, "domain": [ 0, 0.5 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -571.7777777777778, 223.77777777777777 ], "title": { "text": "Analog Signal (V)" }, "domain": [ 0, 1 ], "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/~POHUNGCHENG", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-06-22 15:46:02", "mapbox_access_tokens": null, "has_password": null, "username": "POHUNGCHENG", "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": "2025-07-09T10:36:04.872759Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jimmyg23/567.embed", "fid": "jimmyg23:567", "filename": "RBOB CoT YoY", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/567/9_836RXOKULI4GVAJ8TSFBKT23ODZINJ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/567/2_0IM70Y2PZQGP4JN6XYGB2SOWRGEEZZ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/567/8_BF7BGVRMRDXQZRMHIDNYE0XYROCEGT.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/567/9_836RXOKULI4GVAJ8TSFBKT23ODZINJ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jimmyg23:567", "plots": "https://api.plotly.com/v2/plots/jimmyg23:567", "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23" }, "owner": "jimmyg23", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 11, "web_url": "https://chart-studio.plotly.com/~jimmyg23/567/", "world_readable": true, "date_modified": "2025-07-18T21:29:44.892Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/567/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(238, 26, 50)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2020" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:572:c1b12b", "stackgroup": null }, { "line": { "color": "rgb(62, 201, 50)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2021" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:573:aebe86", "stackgroup": null }, { "line": { "color": "rgb(52, 227, 203)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "Managed Money" } }, "mode": "lines", "name": "<b>2022</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:568:511c31", "stackgroup": null }, { "line": { "color": "rgb(230, 137, 62)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2023" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:569:7ed9c5", "stackgroup": null }, { "line": { "color": "rgb(125, 44, 203)", "width": 3 }, "meta": { "columnNames": { "x": "DATE", "y": "|2024" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:570:cfd638", "stackgroup": null }, { "line": { "color": "rgb(84, 143, 216)", "width": 6 }, "meta": { "columnNames": { "x": "DATE", "y": "|2025" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:572:88bc00", "ysrc": "jimmyg23:571:58c50b", "stackgroup": null } ], "frames": [], "layout": { "font": { "size": 15, "color": "rgb(23, 50, 80)", "family": "Droid Sans" }, "title": { "x": 0.5, "font": { "size": 26, "family": "Droid Sans" }, "text": "Net Long | 31,667" }, "xaxis": { "type": "category", "dtick": 0, "range": [ 0, 51 ], "nticks": 0, "showline": true, "tickmode": "auto", "autorange": true, "gridcolor": "rgb(181, 204, 231)", "linecolor": "rgb(59, 97, 140)", "linewidth": 2, "tickangle": 45 }, "yaxis": { "type": "linear", "range": [ -900.9999999999991, 120979 ], "nticks": 15, "showline": true, "autorange": true, "linecolor": "rgb(153, 186, 228)", "tickangle": "auto", "zerolinecolor": "rgb(255, 210, 189)" }, "legend": { "x": 1.02, "y": 0.3599999999999999 }, "margin": { "t": 80 }, "barmode": "group", "modebar": { "color": "rgba(21, 54, 164, 0.3)", "activecolor": "rgba(17, 53, 139, 0.7)", "orientation": "v" }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" }, "uniformtext": { "mode": false, "minsize": 5 }, "plot_bgcolor": "rgb(255, 255, 255)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jimmyg23", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-03-19 23:02:49", "mapbox_access_tokens": null, "has_password": null, "username": "jimmyg23", "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": "2025-07-09T10:24:18.437466Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~yuiyuinaobu41/4.embed", "fid": "yuiyuinaobu41:4", "filename": "Frekuensi Warna", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/yuiyuinaobu41/4/9_U59DZYHQ5OQNB4STBE9RNS3Y3OBEUC.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/yuiyuinaobu41/4/2_XU1QF0TN58N8VWETEWNGFTSNSXAXUR.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yuiyuinaobu41/4/8_WYJ7KX9ZX2BDBNJG4YIMSV7QN28S8I.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yuiyuinaobu41/4/9_U59DZYHQ5OQNB4STBE9RNS3Y3OBEUC.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/yuiyuinaobu41:4", "plots": "https://api.plotly.com/v2/plots/yuiyuinaobu41:4", "parent": "https://api.plotly.com/v2/folders/home?user=yuiyuinaobu41" }, "owner": "yuiyuinaobu41", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~yuiyuinaobu41/4/", "world_readable": true, "date_modified": "2025-07-09T12:50:21.139Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~yuiyuinaobu41/4/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "Rel Abu", "type": "scatter3d", "xsrc": "yuiyuinaobu41:0:65af97", "ysrc": "yuiyuinaobu41:0:a195f1", "zsrc": "yuiyuinaobu41:0:6e3f13", "marker": { "color": "rgb(94, 102, 107)" } }, { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "Merah", "type": "scatter3d", "xsrc": "yuiyuinaobu41:1:269e1f", "ysrc": "yuiyuinaobu41:1:3705da", "zsrc": "yuiyuinaobu41:1:2fe79a", "marker": { "color": "rgb(225, 12, 12)" } }, { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "Biru", "type": "scatter3d", "xsrc": "yuiyuinaobu41:2:3ca925", "ysrc": "yuiyuinaobu41:2:4169a9", "zsrc": "yuiyuinaobu41:2:c869e3", "marker": { "color": "rgb(21, 129, 195)" } }, { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "Hijau", "type": "scatter3d", "xsrc": "yuiyuinaobu41:3:861164", "ysrc": "yuiyuinaobu41:3:381536", "zsrc": "yuiyuinaobu41:3:83ada1", "marker": { "color": "rgb(3, 155, 42)" } } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "title": { "text": "Red<br>" } }, "yaxis": { "type": "linear", "title": { "text": "Green<br>" } }, "zaxis": { "type": "linear", "title": { "text": "Blue<br>" } }, "camera": { "up": { "x": -0.3855004760378983, "y": -0.38515340418664734, "z": 0.8384785257941862 }, "eye": { "x": 1.4766196985895723, "y": 1.3548851666942572, "z": 1.1289559568916188 }, "center": { "x": 0.08110940438500316, "y": 0.03550952592870558, "z": -0.11869901576563412 }, "projection": { "type": "perspective" } }, "dragmode": "orbit", "aspectmode": "auto", "aspectratio": { "x": 0.8131710430397382, "y": 1.1551973770209796, "z": 1.0645397945199275 } }, "title": { "text": "Frekuensi Warna (Hz)" }, "xaxis": { "domain": [ 0, 1 ] }, "yaxis": { "domain": [ 0, 1 ] }, "margin": { "b": 40, "l": 60, "r": 10, "t": 25 }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~yuiyuinaobu41", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "Eonflare", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-07-09 01:48:01", "mapbox_access_tokens": null, "has_password": null, "username": "yuiyuinaobu41", "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": "2025-07-09T10:23:49.720703Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jimmyg23/552.embed", "fid": "jimmyg23:552", "filename": "WTI NYmEx CoT YoY", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/552/9_JLI1UDPW3BW9X6S122LX2P66KAJ983.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/552/2_AFIBD6TX3T42XHUKV2SLA6WAGF09Y2.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/552/8_FZD63NBOC3ID8TYSN3DCE8ESR2N469.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/552/9_JLI1UDPW3BW9X6S122LX2P66KAJ983.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jimmyg23:552", "plots": "https://api.plotly.com/v2/plots/jimmyg23:552", "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23" }, "owner": "jimmyg23", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 11, "web_url": "https://chart-studio.plotly.com/~jimmyg23/552/", "world_readable": true, "date_modified": "2025-07-18T21:22:55.143Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/552/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "color": "rgb(223, 36, 63)", "width": 3 }, "meta": { "columnNames": { "x": "Year format", "y": "|2020" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:556:1d99ff", "stackgroup": null }, { "line": { "color": "rgb(76, 208, 54)", "width": 3 }, "meta": { "columnNames": { "x": "Year format", "y": "|2021" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:557:8b96f1", "stackgroup": null }, { "line": { "color": "rgb(59, 216, 212)", "width": 3 }, "meta": { "columnNames": { "x": "Year format", "y": "|2022" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:558:579be4", "stackgroup": null }, { "line": { "color": "rgb(243, 172, 109)", "width": 3 }, "meta": { "columnNames": { "x": "Year format", "y": "|2023" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:559:2d1d7d", "stackgroup": null }, { "line": { "color": "rgb(158, 25, 243)", "width": 3 }, "meta": { "columnNames": { "x": "Year format", "y": "|2024" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:553:7fd3a1", "stackgroup": null }, { "line": { "color": "rgb(64, 118, 221)", "width": 6 }, "meta": { "columnNames": { "x": "Year format", "y": "|2025" } }, "mode": "lines", "name": "<b>%{meta.columnNames.y}</b>", "type": "scatter", "xsrc": "jimmyg23:555:f1e308", "ysrc": "jimmyg23:554:c57fa5", "stackgroup": null } ], "frames": [], "layout": { "font": { "size": 15, "color": "rgb(23, 50, 80)", "family": "Droid Sans" }, "title": { "x": 0.5, "font": { "size": 26, "family": "Droid Sans" }, "text": "Net Long | 96,106" }, "xaxis": { "type": "category", "dtick": 0, "range": [ 0, 51 ], "nticks": 0, "showline": true, "tickmode": "auto", "autorange": true, "gridcolor": "rgb(181, 204, 231)", "linecolor": "rgb(59, 97, 140)", "linewidth": 2, "tickangle": 45 }, "yaxis": { "type": "linear", "range": [ 47748.5, 444338.5 ], "nticks": 15, "showline": true, "autorange": true, "linecolor": "rgb(153, 186, 228)", "tickangle": "auto", "zerolinecolor": "rgb(255, 210, 189)" }, "legend": { "x": 1.02, "y": 0.3599999999999999 }, "margin": { "t": 80 }, "barmode": "group", "modebar": { "color": "rgba(21, 54, 164, 0.3)", "activecolor": "rgba(17, 53, 139, 0.7)", "orientation": "v" }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#19d3f3", "#e763fa", "#fecb52", "#ffa15a", "#ff6692", "#b6e880" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ], "sequentialminus": [ [ 0, "#0508b8" ], [ 0.0893854748603352, "#1910d8" ], [ 0.1787709497206704, "#3c19f0" ], [ 0.2681564245810056, "#6b1cfb" ], [ 0.3575418994413408, "#981cfd" ], [ 0.44692737430167595, "#bf1cfd" ], [ 0.5363128491620112, "#dd2bfd" ], [ 0.6256983240223464, "#f246fe" ], [ 0.7150837988826816, "#fc67fd" ], [ 0.8044692737430168, "#fe88fc" ], [ 0.8938547486033519, "#fea5fd" ], [ 0.9832402234636871, "#febefe" ], [ 1, "#fec3fe" ] ] }, "plot_bgcolor": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" }, "uniformtext": { "mode": false, "minsize": 5 }, "plot_bgcolor": "rgb(255, 255, 255)", "paper_bgcolor": "rgb(255, 255, 255)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jimmyg23", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-03-19 23:02:49", "mapbox_access_tokens": null, "has_password": null, "username": "jimmyg23", "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": "2025-07-09T10:15:59.141776Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~samuel015/5.embed", "fid": "samuel015:5", "filename": "Meow_P(24)", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/samuel015/5/9_HH7X81WD3Y0ABHVOPLW3TYAIF69NPO.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/samuel015/5/2_5Q49OHUJVY17WQPUMBEBJ9186V3LCN.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel015/5/8_7G602CAPX2BRVJZ0QTD1BURPBG95FR.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel015/5/9_HH7X81WD3Y0ABHVOPLW3TYAIF69NPO.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/samuel015:5", "plots": "https://api.plotly.com/v2/plots/samuel015:5", "parent": "https://api.plotly.com/v2/folders/home?user=samuel015" }, "owner": "samuel015", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~samuel015/5/", "world_readable": true, "date_modified": "2025-07-17T11:54:35.931Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~samuel015/5/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "E" } }, "mode": "markers", "name": "<b>RAW</b>", "type": "scatter3d", "xsrc": "samuel015:6:777563", "ysrc": "samuel015:6:e8843f", "zsrc": "samuel015:6:6bd36f" }, { "meta": { "columnNames": { "x": "A", "y": "B", "z": "F" } }, "mode": "markers", "name": "<b>CALI(theta)</b>", "type": "scatter3d", "xsrc": "samuel015:6:777563", "ysrc": "samuel015:6:e8843f", "zsrc": "samuel015:6:ba425b" } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "title": { "text": "P(%)" } }, "yaxis": { "type": "linear", "title": { "text": "Q(%)" } }, "zaxis": { "type": "linear", "title": { "text": "Error(%)" } }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 1.8644705338783931, "y": 0.5493327939894203, "z": 0.35653621654949186 }, "center": { "x": -0.205343909584043, "y": 0.0357357175239555, "z": -0.10897770746812549 }, "projection": { "type": "perspective" } }, "dragmode": "turntable", "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~samuel015", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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": "2025-07-09 07:11:06", "mapbox_access_tokens": null, "has_password": null, "username": "samuel015", "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": "2025-07-09T10:13:32.337324Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~samuel015/3.embed", "fid": "samuel015:3", "filename": "Meow_Vrms", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/samuel015/3/9_E3I2TIR0SPEYGI94UO7TNBR1QP0TN7.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/samuel015/3/2_7RVCTPKQPFONUNT8ZDGPT9V1288WCV.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel015/3/8_6M0M6GGBAXRFVF4AD7EM6AS81K98V3.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/samuel015/3/9_E3I2TIR0SPEYGI94UO7TNBR1QP0TN7.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/samuel015:3", "plots": "https://api.plotly.com/v2/plots/samuel015:3", "parent": "https://api.plotly.com/v2/folders/home?user=samuel015" }, "owner": "samuel015", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~samuel015/3/", "world_readable": true, "date_modified": "2025-07-10T07:03:09.689Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~samuel015/3/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "EMI板外面 vs MCU讀值", "type": "scatter3d", "xsrc": "samuel015:2:8c00cc", "ysrc": "samuel015:2:d91064", "zsrc": "samuel015:2:cf8cc0" }, { "meta": { "columnNames": { "x": "A", "y": "B", "z": "D" } }, "mode": "markers", "name": "EMI板裡面 vs MCU讀值", "type": "scatter3d", "xsrc": "samuel015:2:8c00cc", "ysrc": "samuel015:2:d91064", "zsrc": "samuel015:2:47c981" } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "title": { "text": "P(%)" } }, "yaxis": { "type": "linear", "title": { "text": "Q(%)" } }, "zaxis": { "title": { "text": "Error(%)" } }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": -1.0738198231115883, "y": -2.3684439070948895, "z": 1.5022391359788023 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~samuel015", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.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": "2025-07-09 07:11:06", "mapbox_access_tokens": null, "has_password": null, "username": "samuel015", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "