Plots


Jump to API response

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=cj0xJnA9MjAyNS0wOC0xOCswOCUzQTE5JTNBMjkuNzY1NTkyJTJCMDAlM0EwMA%3D%3D&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTE4KzA4JTNBNDglM0EzMS41MDAzMzclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0xOCsxMiUzQTMwJTNBMTIuMjg2MTY3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-18T12:30:12.286167Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~34/2.embed",
            "fid": "34:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/34/2/9_L7EP1JQ3WOB99T7TK7IICD4USK5157.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/34/2/2_M73E7M7HKJPDBVWI68GIFU7VSS8K1T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/34/2/8_TVEUZW2HSL2H4SVDCX6X8VJUYO5H95.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/34/2/9_L7EP1JQ3WOB99T7TK7IICD4USK5157.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/34:2",
                "plots": "https://api.plotly.com/v2/plots/34:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=34"
            },
            "owner": "34",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~34/2/",
            "world_readable": true,
            "date_modified": "2025-08-18T12:30:12.298Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~34/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "2beb5c6a-4e75-4e7f-b90d-7c560c919b77",
                        "meta": {
                            "columnNames": {
                                "x": "Poisonous, x",
                                "y": "Poisonous, y",
                                "z": "Poisonous, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Poisonous",
                        "type": "scatter3d",
                        "xsrc": "34:1:6cfb30",
                        "ysrc": "34:1:f3ead6",
                        "zsrc": "34:1:2635ff"
                    },
                    {
                        "uid": "6afe8f00-5cc5-4e5f-b646-45046ea4f9bb",
                        "meta": {
                            "columnNames": {
                                "x": "Edible, x",
                                "y": "Edible, y",
                                "z": "Edible, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Edible",
                        "type": "scatter3d",
                        "xsrc": "34:1:9c5454",
                        "ysrc": "34:1:e8ae61",
                        "zsrc": "34:1:beb461"
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "PC1"
                            },
                            "showline": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "PC2"
                            },
                            "showline": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "PC3"
                            },
                            "showline": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 1.2500000000000002,
                                "y": 1.25,
                                "z": 1.2500000000000002
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.726041562994339,
                            "y": 1.0666362503171418,
                            "z": 1.291285212399521
                        }
                    },
                    "title": {
                        "text": "PCA (3D)"
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~34",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.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-08-18 12:26:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "34",
                "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-08-18T12:24:03.086781Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Lily_kcr/3.embed",
            "fid": "Lily_kcr:3",
            "filename": "Bio Healthy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/3/9_QL1ORJHCT3AFQXLVWBRHPG2WAAS605.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/3/2_X2J27365K7GITB8268LHTRLOCL80EI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/3/8_4AKB0UWLS2JW3WTQ9JBXPYWKGD7DA4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/3/9_QL1ORJHCT3AFQXLVWBRHPG2WAAS605.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Lily_kcr:3",
                "plots": "https://api.plotly.com/v2/plots/Lily_kcr:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Lily_kcr"
            },
            "owner": "Lily_kcr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Lily_kcr/3/",
            "world_readable": true,
            "date_modified": "2025-08-18T12:24:03.099Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Lily_kcr/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "I"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:bfac70",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "I"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:74a6ec",
                            "symmetric": true
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "error_y": {
                                    "array": "J"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Very Low",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:97d04e",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "J"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:f7d8f0",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D",
                                "error_y": {
                                    "array": "K"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Low",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:dc7045",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "K"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:f9d359",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E",
                                "error_y": {
                                    "array": "L"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Medium",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:f78b7c",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "L"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:e9cc0b",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F",
                                "error_y": {
                                    "array": "M"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Medium-High",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:015d85",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "M"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:1caa0d",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G",
                                "error_y": {
                                    "array": "N"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "High",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:2:6fe9e4",
                        "ysrc": "Lily_kcr:2:adf0ff",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "N"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:2:b8b1b4",
                            "symmetric": true
                        },
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.20575721313655082,
                            14.79424278686345
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            19.473333333333336,
                            53.406666666666666
                        ],
                        "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/~Lily_kcr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2025-08-18 12:12:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Lily_kcr",
                "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-08-18T12:17:55.249467Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Lily_kcr/1.embed",
            "fid": "Lily_kcr:1",
            "filename": "Bio IA",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/1/9_HE42062T9AJ7TA1BAUEWVZWKYB4UXO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/1/2_GA6DKGHI8OPP8UQN59VRAOMA3MX1SW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/1/8_FKUGKXRAQP7L60RWWQS0UZUG9XNTZR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Lily_kcr/1/9_HE42062T9AJ7TA1BAUEWVZWKYB4UXO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Lily_kcr:1",
                "plots": "https://api.plotly.com/v2/plots/Lily_kcr:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Lily_kcr"
            },
            "owner": "Lily_kcr",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Lily_kcr/1/",
            "world_readable": true,
            "date_modified": "2025-08-18T12:17:55.262Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Lily_kcr/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "error_y": {
                                    "array": "I"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Control",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:0a617d",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "I"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:8b5203",
                            "symmetric": true
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C",
                                "error_y": {
                                    "array": "J"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Very Low",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:0d6f06",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "J"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:e8e6eb",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D",
                                "error_y": {
                                    "array": "K"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Low",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:3d0b6f",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "K"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:0e3275",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E",
                                "error_y": {
                                    "array": "L"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Medium",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:700fec",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "L"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:733140",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F",
                                "error_y": {
                                    "array": "M"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Medium-High",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:dc0494",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "M"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:d3addc",
                            "symmetric": true
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "G",
                                "error_y": {
                                    "array": "N"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "High",
                        "type": "scatter",
                        "xsrc": "Lily_kcr:0:7feb69",
                        "ysrc": "Lily_kcr:0:03de3e",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "N"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "Lily_kcr:0:653465",
                            "symmetric": true
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.20575721313655082,
                            14.79424278686345
                        ],
                        "title": {
                            "text": "Time (Days)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            21.087222222222223,
                            62.14277777777777
                        ],
                        "title": {
                            "text": "Mean Frond Number"
                        },
                        "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/~Lily_kcr",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2025-08-18 12:12:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Lily_kcr",
                "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-08-18T11:41:28.835807Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~EIDSTER/4435.embed",
            "fid": "EIDSTER:4435",
            "filename": "EIDSTER_Move_Magnitude",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/EIDSTER:4435/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/EIDSTER:4435/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/EIDSTER:4435/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/EIDSTER:4435/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/EIDSTER:4435",
                "plots": "https://api.plotly.com/v2/plots/EIDSTER:4435",
                "parent": "https://api.plotly.com/v2/folders/home?user=EIDSTER"
            },
            "owner": "EIDSTER",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~EIDSTER/4435/",
            "world_readable": true,
            "date_modified": "2025-08-21T21:08:51.918Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~EIDSTER/4435/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Latest Closing Move",
                        "type": "candlestick",
                        "xsrc": "EIDSTER:4442:26d64c",
                        "lowsrc": "EIDSTER:4442:f48643",
                        "highsrc": "EIDSTER:4442:03a86a",
                        "opacity": 0.4,
                        "opensrc": "EIDSTER:4442:bd2236",
                        "closesrc": "EIDSTER:4442:efca8b",
                        "hoverinfo": "x+text",
                        "decreasing": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "fillcolor": "black"
                        },
                        "increasing": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "fillcolor": "white"
                        },
                        "hovertextsrc": "EIDSTER:4442:eb225b",
                        "whiskerwidth": 0.15
                    },
                    {
                        "name": "",
                        "type": "bar",
                        "xsrc": "EIDSTER:4442:fd4c03",
                        "ysrc": "EIDSTER:4442:28019e",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 0
                            },
                            "color": "#EBEBF2"
                        },
                        "opacity": 1.0,
                        "textsrc": "EIDSTER:4442:131d17",
                        "textfont": {
                            "colorsrc": "EIDSTER:4442:9dc6f0"
                        },
                        "hoverinfo": "skip",
                        "orientation": "v",
                        "textposition": "outside"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "black",
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.03,
                        "y": 0.92,
                        "text": "<b>Magnitude Of Latest Closing Moves</b><br>Thu - August 21, 2025",
                        "xanchor": "left",
                        "yanchor": "top"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "color": "#72747F"
                            }
                        },
                        "mirror": true,
                        "showgrid": false,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "linecolor": "black",
                        "linewidth": 1,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "color": "#72747F"
                            }
                        },
                        "showticklabels": false
                    },
                    "margin": {
                        "b": 10,
                        "l": 40,
                        "r": 40,
                        "t": 90,
                        "pad": 5
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": "x",
                    "hoverlabel": {
                        "align": "auto"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": -0.5,
                            "y": 0.99,
                            "font": {
                                "size": 16,
                                "color": "black"
                            },
                            "text": "Percent of days the move was",
                            "xref": "x",
                            "yref": "y",
                            "xanchor": "left",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": -0.5,
                            "y": 0.87,
                            "font": {
                                "size": 16,
                                "color": "black"
                            },
                            "text": "expected to reach at least this far",
                            "xref": "x",
                            "yref": "y",
                            "xanchor": "left",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": -0.5,
                            "y": 0.75,
                            "font": {
                                "size": 16,
                                "color": "black"
                            },
                            "text": "away from previous close",
                            "xref": "x",
                            "yref": "y",
                            "xanchor": "left",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": -0.5,
                            "y": 0.63,
                            "font": {
                                "size": 16,
                                "color": "black"
                            },
                            "text": "according to implied volatility.",
                            "xref": "x",
                            "yref": "y",
                            "xanchor": "left",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 1,
                            "y": 1.07,
                            "font": {
                                "size": 10,
                                "color": "#72747F"
                            },
                            "text": "EIDSTER.com",
                            "xref": "x domain",
                            "yref": "y domain",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ],
                    "uniformtext": {
                        "mode": "hide",
                        "minsize": 8
                    },
                    "plot_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~EIDSTER",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.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": "2021-05-14 00:16:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "EIDSTER",
                "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-08-18T11:09:42.245417Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hans_der_kanns/7.embed",
            "fid": "hans_der_kanns:7",
            "filename": "Keramiktaststift_Vorschub",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hans_der_kanns:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hans_der_kanns/7/2_V4T02EMUZFSJO945873OJA66PBEA4I.png",
                "block-thumb": "https://api.plotly.com/v2/files/hans_der_kanns:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/hans_der_kanns:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hans_der_kanns:7",
                "plots": "https://api.plotly.com/v2/plots/hans_der_kanns:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=hans_der_kanns"
            },
            "owner": "hans_der_kanns",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hans_der_kanns/7/",
            "world_readable": true,
            "date_modified": "2025-08-20T12:25:51.700Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hans_der_kanns/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:e3fdef",
                        "ysrc": "hans_der_kanns:5:bdfeb9",
                        "zsrc": "hans_der_kanns:5:23074f",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:860766",
                        "ysrc": "hans_der_kanns:5:1af1d6",
                        "zsrc": "hans_der_kanns:5:4efcf6",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:ec2994",
                        "ysrc": "hans_der_kanns:5:ca9573",
                        "zsrc": "hans_der_kanns:5:23c00e",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:253c9b",
                        "ysrc": "hans_der_kanns:5:988612",
                        "zsrc": "hans_der_kanns:5:970d89",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:a42623",
                        "ysrc": "hans_der_kanns:5:0a5f7c",
                        "zsrc": "hans_der_kanns:5:97cbbc",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:e624d4",
                        "ysrc": "hans_der_kanns:5:5bb161",
                        "zsrc": "hans_der_kanns:5:1ed15c",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:b271fb",
                        "ysrc": "hans_der_kanns:5:3bd193",
                        "zsrc": "hans_der_kanns:5:9c80d8",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:5:b5971d",
                        "ysrc": "hans_der_kanns:5:a6fd21",
                        "zsrc": "hans_der_kanns:5:afec29",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:68abbf",
                        "ysrc": "hans_der_kanns:6:27f4ca",
                        "zsrc": "hans_der_kanns:6:a7f378",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:ca039b",
                        "ysrc": "hans_der_kanns:6:0b8d80",
                        "zsrc": "hans_der_kanns:6:b18962",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:5c4605",
                        "ysrc": "hans_der_kanns:6:a97e89",
                        "zsrc": "hans_der_kanns:6:195ad0",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:54dcc3",
                        "ysrc": "hans_der_kanns:6:1f509d",
                        "zsrc": "hans_der_kanns:6:712408",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:e3c8ee",
                        "ysrc": "hans_der_kanns:6:13178c",
                        "zsrc": "hans_der_kanns:6:d0145a",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:8dbf2e",
                        "ysrc": "hans_der_kanns:6:f32abb",
                        "zsrc": "hans_der_kanns:6:732a58",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:748227",
                        "ysrc": "hans_der_kanns:6:3a3787",
                        "zsrc": "hans_der_kanns:6:6d8447",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:6:e77d01",
                        "ysrc": "hans_der_kanns:6:b10eae",
                        "zsrc": "hans_der_kanns:6:820815",
                        "scene": "scene2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:285a01",
                        "ysrc": "hans_der_kanns:12:1962dd",
                        "zsrc": "hans_der_kanns:12:07c32f",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:b3fe88",
                        "ysrc": "hans_der_kanns:12:6cb29c",
                        "zsrc": "hans_der_kanns:12:e975bd",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:053c92",
                        "ysrc": "hans_der_kanns:12:3d7e29",
                        "zsrc": "hans_der_kanns:12:445f2f",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:6461cb",
                        "ysrc": "hans_der_kanns:12:6c6d39",
                        "zsrc": "hans_der_kanns:12:17b4db",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:a21e9a",
                        "ysrc": "hans_der_kanns:12:d8c965",
                        "zsrc": "hans_der_kanns:12:aa5170",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:9b4da3",
                        "ysrc": "hans_der_kanns:12:73a397",
                        "zsrc": "hans_der_kanns:12:65dafc",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:db84a4",
                        "ysrc": "hans_der_kanns:12:21b5e4",
                        "zsrc": "hans_der_kanns:12:9762b2",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:12:3a3e60",
                        "ysrc": "hans_der_kanns:12:7cb99b",
                        "zsrc": "hans_der_kanns:12:487e5c",
                        "scene": "scene3",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 7,
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.0002
                            ],
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "autorange": false,
                            "exponentformat": "none"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.824522320041819,
                                "y": -2.653167119481993,
                                "z": 1.3303025564320732
                            },
                            "center": {
                                "x": -0.08648659998254403,
                                "y": 0.03126792244231911,
                                "z": -0.10640099887137996
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "scene2": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.0002
                            ],
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "autorange": false,
                            "exponentformat": "none"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.662743060276946,
                                "y": -2.317681148711349,
                                "z": 1.4874994163114585
                            },
                            "center": {
                                "x": -0.04967312588869879,
                                "y": 0.011990301187476068,
                                "z": -0.06558923063099606
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "scene3": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.0002
                            ],
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.859716279282019,
                                "y": -2.0453116191201417,
                                "z": 1.1377081721260018
                            },
                            "center": {
                                "x": -0.0717107638326484,
                                "y": -0.003998578136787815,
                                "z": -0.05983846390722575
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 0.0960461038405612,
                            "y": 0.7820548809931094,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Kugeldurchmesser X",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.49820069161870545,
                            "y": 0.7918474135228383,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Kugeldurchmesser Y",
                            "showarrow": false
                        },
                        {
                            "x": 0.8915343915343915,
                            "y": 0.793692050722662,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Fehler Z-Plus",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hans_der_kanns",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-07 13:47:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hans_der_kanns",
                "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-08-18T10:56:07.717439Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ryuhyojeong/1.embed",
            "fid": "ryuhyojeong:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ryuhyojeong/1/9_870JTSZJM5UQS6IKBEPJI7G6SJH6J3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ryuhyojeong/1/2_6DF0MB79EQF9U9ROX3H4OOAJAX72YX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ryuhyojeong/1/8_RZ0ABJVSDL3V6MRTSE1Q6WK0ASTBY4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ryuhyojeong/1/9_870JTSZJM5UQS6IKBEPJI7G6SJH6J3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ryuhyojeong:1",
                "plots": "https://api.plotly.com/v2/plots/ryuhyojeong:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ryuhyojeong"
            },
            "owner": "ryuhyojeong",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~ryuhyojeong/1/",
            "world_readable": true,
            "date_modified": "2025-08-18T10:58:27.827Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ryuhyojeong/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "태풍의이동경로",
                        "type": "scatter",
                        "xsrc": "ryuhyojeong:0:e2c39c",
                        "ysrc": "ryuhyojeong:0:bc6f52"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "광주",
                        "type": "scatter",
                        "xsrc": "ryuhyojeong:0:e21be5",
                        "ysrc": "ryuhyojeong:0:934b28"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "I"
                            }
                        },
                        "mode": "markers",
                        "name": "부산",
                        "type": "scatter",
                        "xsrc": "ryuhyojeong:0:062166",
                        "ysrc": "ryuhyojeong:0:660ef2"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 4.652064875818703,
                                "y": 3.340675537364875,
                                "z": -0.4981421929106943
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            124.58422874549986,
                            143.71577125450014
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            10.589951467019633,
                            43.91004853298037
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ryuhyojeong",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.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": "2025-08-18 10:55:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ryuhyojeong",
                "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-08-18T10:53:50.394958Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~joriscobotxnl/1.embed",
            "fid": "joriscobotxnl:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/joriscobotxnl/1/9_EA9UCKHBORISNTV54UUDQHQ82POZF7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/joriscobotxnl/1/2_T5FCR2B08NQ3U60DR1OVBDSBJ3GYDW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/joriscobotxnl/1/8_XZVWVWKH3NO0L10PYAUTL21W4LD4CU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/joriscobotxnl/1/9_EA9UCKHBORISNTV54UUDQHQ82POZF7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/joriscobotxnl:1",
                "plots": "https://api.plotly.com/v2/plots/joriscobotxnl:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=joriscobotxnl"
            },
            "owner": "joriscobotxnl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~joriscobotxnl/1/",
            "world_readable": true,
            "date_modified": "2025-08-18T14:55:18.496Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~joriscobotxnl/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Goed, x",
                                "y": "Goed, y",
                                "z": "Goed, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Goed",
                        "type": "scatter3d",
                        "xsrc": "joriscobotxnl:0:94ef2f",
                        "ysrc": "joriscobotxnl:0:080ac2",
                        "zsrc": "joriscobotxnl:0:d10009",
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgb(21, 223, 32)",
                            "fillcolor": "rgba(191,56,42,0.5)"
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Singularity, x",
                                "y": "Singularity, y",
                                "z": "Singularity, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Singularity",
                        "type": "scatter3d",
                        "xsrc": "joriscobotxnl:0:a205c9",
                        "ysrc": "joriscobotxnl:0:5994e3",
                        "zsrc": "joriscobotxnl:0:43fe81",
                        "marker": {
                            "line": {
                                "color": "transparent"
                            },
                            "color": "rgb(255, 0, 0)",
                            "fillcolor": "rgba(12,75,142,0.5)"
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NR, x",
                                "y": "NR, y",
                                "z": "NR, z"
                            }
                        },
                        "mode": "markers",
                        "name": "Not reachable",
                        "type": "scatter3d",
                        "xsrc": "joriscobotxnl:0:60fc21",
                        "ysrc": "joriscobotxnl:0:5d7de2",
                        "zsrc": "joriscobotxnl:0:6c2b25",
                        "marker": {
                            "color": "rgb(255, 216, 0)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "x"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "y"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "z"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.2707533338613621,
                                "y": 0.851699504992493,
                                "z": 0.8212526993877662
                            },
                            "center": {
                                "x": -0.34845409062589183,
                                "y": 0.06320626131261554,
                                "z": -0.22516856244321165
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 0.921007874660097,
                            "y": 1.473612599456155,
                            "z": 0.7368062997280775
                        }
                    },
                    "xaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "yaxis": {
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~joriscobotxnl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.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": "2025-08-18 09:55:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "joriscobotxnl",
                "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-08-18T09:37:08.886866Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fontanap/6.embed",
            "fid": "fontanap:6",
            "filename": "Plot 6",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fontanap/6/9_QT5ASD11RQPA9UTL9V7UB4V91PMV5L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fontanap/6/2_8LJM43CMBK8HX4J3RQEG5AZ2JLH7TQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fontanap/6/8_HLDQPBXVZBAX6C3YP4KFHPMYZDAANA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fontanap/6/9_QT5ASD11RQPA9UTL9V7UB4V91PMV5L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fontanap:6",
                "plots": "https://api.plotly.com/v2/plots/fontanap:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=fontanap"
            },
            "owner": "fontanap",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~fontanap/6/",
            "world_readable": true,
            "date_modified": "2025-08-18T09:37:08.901Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fontanap/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "coverage"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "fontanap:5:204a66",
                        "ysrc": "fontanap:5:d1bacd",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Coverage"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            11.5
                        ],
                        "title": {
                            "text": "Sample"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            73.04852631578947
                        ],
                        "title": {
                            "text": "Coverage"
                        },
                        "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/~fontanap",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-06-13 07:03:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fontanap",
                "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-08-18T09:10:30.773793Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hans_der_kanns/3.embed",
            "fid": "hans_der_kanns:3",
            "filename": "Hartmetalltaststift",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/hans_der_kanns:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hans_der_kanns/3/2_ZBGAEQ7INM1LUBSA7A7NMIKJHRX4U9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hans_der_kanns/3/8_Y2V405RC2BJTOIJSMBZP3594530FLB.png",
                "list-thumb": "https://api.plotly.com/v2/files/hans_der_kanns:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hans_der_kanns:3",
                "plots": "https://api.plotly.com/v2/plots/hans_der_kanns:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=hans_der_kanns"
            },
            "owner": "hans_der_kanns",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~hans_der_kanns/3/",
            "world_readable": true,
            "date_modified": "2025-08-20T11:59:36.327Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hans_der_kanns/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+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:08d650",
                        "ysrc": "hans_der_kanns:2:fa8d18",
                        "zsrc": "hans_der_kanns:2:2e68c3",
                        "scene": "scene",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:e5828f",
                        "ysrc": "hans_der_kanns:2:bd3ae1",
                        "zsrc": "hans_der_kanns:2:23e444",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:d420ef",
                        "ysrc": "hans_der_kanns:2:9e7fe9",
                        "zsrc": "hans_der_kanns:2:c722d7",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:a108be",
                        "ysrc": "hans_der_kanns:2:7aff6c",
                        "zsrc": "hans_der_kanns:2:c0c1ec",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:1dfbae",
                        "ysrc": "hans_der_kanns:2:c4c8f7",
                        "zsrc": "hans_der_kanns:2:8fb8f9",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:34602f",
                        "ysrc": "hans_der_kanns:2:0cff60",
                        "zsrc": "hans_der_kanns:2:c81d5e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:6bf804",
                        "ysrc": "hans_der_kanns:2:0c2fa1",
                        "zsrc": "hans_der_kanns:2:c1736e",
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:2:8fb420",
                        "ysrc": "hans_der_kanns:2:95ceaf",
                        "zsrc": "hans_der_kanns:2:9d6ae6",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:7510cf",
                        "ysrc": "hans_der_kanns:4:08908c",
                        "zsrc": "hans_der_kanns:4:f57a89",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:92e35f",
                        "ysrc": "hans_der_kanns:4:d6d8ba",
                        "zsrc": "hans_der_kanns:4:1689a6",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:2730d4",
                        "ysrc": "hans_der_kanns:4:66943f",
                        "zsrc": "hans_der_kanns:4:23e98e",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)",
                            "opacity": 1
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:9c2b5c",
                        "ysrc": "hans_der_kanns:4:35022e",
                        "zsrc": "hans_der_kanns:4:29f24d",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:cb2b7f",
                        "ysrc": "hans_der_kanns:4:2420d1",
                        "zsrc": "hans_der_kanns:4:4765b5",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:caa319",
                        "ysrc": "hans_der_kanns:4:313041",
                        "zsrc": "hans_der_kanns:4:18e96b",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:e9798d",
                        "ysrc": "hans_der_kanns:4:674ab8",
                        "zsrc": "hans_der_kanns:4:d6706c",
                        "scene": "scene2",
                        "marker": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 4)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:4:abe335",
                        "ysrc": "hans_der_kanns:4:b6b2de",
                        "zsrc": "hans_der_kanns:4:412b11",
                        "scene": "scene2",
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:3be3d9",
                        "ysrc": "hans_der_kanns:11:dc1220",
                        "zsrc": "hans_der_kanns:11:dd8b79",
                        "scene": "scene3",
                        "marker": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E",
                                "z": "F"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:3b39b2",
                        "ysrc": "hans_der_kanns:11:d23fa2",
                        "zsrc": "hans_der_kanns:11:d2ab96",
                        "scene": "scene3",
                        "marker": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H",
                                "z": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:8b9bca",
                        "ysrc": "hans_der_kanns:11:169617",
                        "zsrc": "hans_der_kanns:11:3757ff",
                        "scene": "scene3",
                        "marker": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "K",
                                "z": "L"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:e7e8b3",
                        "ysrc": "hans_der_kanns:11:73b596",
                        "zsrc": "hans_der_kanns:11:59741b",
                        "scene": "scene3",
                        "marker": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "N",
                                "z": "O"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:7da8bf",
                        "ysrc": "hans_der_kanns:11:791d8c",
                        "zsrc": "hans_der_kanns:11:d0af8c",
                        "scene": "scene3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "Q",
                                "z": "R"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:ccdfa9",
                        "ysrc": "hans_der_kanns:11:2c1868",
                        "zsrc": "hans_der_kanns:11:ca9334",
                        "scene": "scene3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "T",
                                "z": "U"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:fb3ec7",
                        "ysrc": "hans_der_kanns:11:2bff2f",
                        "zsrc": "hans_der_kanns:11:790c2d",
                        "scene": "scene3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "V",
                                "y": "W",
                                "z": "X"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter3d",
                        "xsrc": "hans_der_kanns:11:63c680",
                        "ysrc": "hans_der_kanns:11:0962ae",
                        "zsrc": "hans_der_kanns:11:c0a506",
                        "scene": "scene3",
                        "showlegend": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.0005
                            ],
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "autorange": false,
                            "exponentformat": "none"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.2242963512166307,
                                "y": -2.3719801982042794,
                                "z": 1.473691032798952
                            },
                            "center": {
                                "x": -0.0888320727649423,
                                "y": -0.07040824527125449,
                                "z": -0.2626825488237562
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "scene2": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.0003
                            ],
                            "title": {
                                "font": {
                                    "size": 16,
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "autorange": false,
                            "exponentformat": "none"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.31659334730335,
                                "y": -2.261491524520497,
                                "z": 1.5232169654635144
                            },
                            "center": {
                                "x": -0.09726605474592158,
                                "y": -0.04568376979834361,
                                "z": -0.23031717115640077
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "scene3": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Grobvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Feinvorschub [mm/min]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                1e-07,
                                0.00015
                            ],
                            "title": {
                                "font": {
                                    "color": "rgb(0, 0, 0)"
                                },
                                "text": "Standardabweichung [mm]"
                            },
                            "tickfont": {
                                "color": "rgb(0, 0, 0)"
                            },
                            "autorange": false,
                            "exponentformat": "none"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.2329284499902076,
                                "y": -2.102670869788796,
                                "z": 1.2573131022113686
                            },
                            "center": {
                                "x": -0.14703034159266345,
                                "y": -0.03875870363981087,
                                "z": -0.21944980094824093
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "shapes": [],
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 0.09195814489416405,
                            "y": 0.912301385792609,
                            "ax": -349,
                            "ay": -363,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)",
                                "family": "Arial"
                            },
                            "text": "Kugeldurchmesser X",
                            "showarrow": false
                        },
                        {
                            "x": 0.4996906678542124,
                            "y": 0.9217223010366311,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Kugeldurchmesser Y",
                            "showarrow": false
                        },
                        {
                            "x": 0.8981481481481481,
                            "y": 0.9165971901208478,
                            "font": {
                                "size": 24,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "Fehler Z-Plus",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hans_der_kanns",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-07 13:47:43",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hans_der_kanns",
                "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-08-18T08:48:31.500337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~batuga/1.embed",
            "fid": "batuga:1",
            "filename": "W",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/batuga/1/9_8HKJBKWPWBBWF05ZYNSKKV9B4K3VRK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/batuga/1/2_G7LF5G8O0VZJHV0K08AX60LRXPBUI2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/batuga/1/8_N0OCZII0XBWUJ0BFS6WXFXKQ00EJOS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/batuga/1/9_8HKJBKWPWBBWF05ZYNSKKV9B4K3VRK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/batuga:1",
                "plots": "https://api.plotly.com/v2/plots/batuga:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=batuga"
            },
            "owner": "batuga",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~batuga/1/",
            "world_readable": true,
            "date_modified": "2025-08-18T08:48:31.511Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~batuga/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "batuga:0:231b55",
                        "ysrc": "batuga:0:978eed",
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            44
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            91.515,
                            123.21499999999999
                        ],
                        "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/~batuga",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-18 08:47:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "batuga",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}