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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTE1KzE0JTNBNDElM0ExNy40MTQyNjclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xNSsxNSUzQTM4JTNBNDIuOTQwNDkyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-15T15:38:42.940492Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Prashanth.klv/3.embed",
            "fid": "Prashanth.klv:3",
            "filename": "test_file",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Prashanth.klv/3/9_1DPQYW1B3PEH60ZLONGD46OL5IT08H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Prashanth.klv/3/2_6WNELNFSK3GF4AO77WSGYLXB49U9JZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Prashanth.klv/3/8_HSE3Z4LY8UOLOS42TJ458CCR22ZPIL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Prashanth.klv/3/9_1DPQYW1B3PEH60ZLONGD46OL5IT08H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Prashanth.klv:3",
                "plots": "https://api.plotly.com/v2/plots/Prashanth.klv:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Prashanth.klv"
            },
            "owner": "Prashanth.klv",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~Prashanth.klv/3/",
            "world_readable": true,
            "date_modified": "2024-04-15T15:38:42.950Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Prashanth.klv/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "markers+lines",
                        "name": "2018",
                        "type": "scatter",
                        "xsrc": "Prashanth.klv:2:728a24",
                        "ysrc": "Prashanth.klv:2:233c30",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "2018",
                        "orientation": "v",
                        "textposition": "bottom right",
                        "customdatasrc": "Prashanth.klv:2:193984",
                        "hovertemplate": "year=%{customdata[0]}<br>number_of_collisions=%{y}<br>number_of_total_casualties=%{customdata[1]}<br>number_of_cyclist_injured=%{customdata[2]}<br>number_of_cyclist_killed=%{customdata[3]}<br>number_of_motorist_injured=%{customdata[4]}<br>number_of_motorist_killed=%{customdata[5]}<br>number_of_pedestrians_injured=%{customdata[6]}<br>number_of_pedestrians_killed=%{customdata[7]}<br>number_of_persons_injured=%{customdata[8]}<br>number_of_persons_killed=%{customdata[9]}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#EF553B"
                        },
                        "mode": "markers+lines",
                        "name": "2019",
                        "type": "scatter",
                        "xsrc": "Prashanth.klv:2:d04ad0",
                        "ysrc": "Prashanth.klv:2:dfd127",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "2019",
                        "orientation": "v",
                        "textposition": "bottom right",
                        "customdatasrc": "Prashanth.klv:2:fbc7ab",
                        "hovertemplate": "year=%{customdata[0]}<br>number_of_collisions=%{y}<br>number_of_total_casualties=%{customdata[1]}<br>number_of_cyclist_injured=%{customdata[2]}<br>number_of_cyclist_killed=%{customdata[3]}<br>number_of_motorist_injured=%{customdata[4]}<br>number_of_motorist_killed=%{customdata[5]}<br>number_of_pedestrians_injured=%{customdata[6]}<br>number_of_pedestrians_killed=%{customdata[7]}<br>number_of_persons_injured=%{customdata[8]}<br>number_of_persons_killed=%{customdata[9]}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#00cc96"
                        },
                        "mode": "markers+lines",
                        "name": "2020",
                        "type": "scatter",
                        "xsrc": "Prashanth.klv:2:624fd3",
                        "ysrc": "Prashanth.klv:2:817076",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "2020",
                        "orientation": "v",
                        "textposition": "bottom right",
                        "customdatasrc": "Prashanth.klv:2:12b0ef",
                        "hovertemplate": "year=%{customdata[0]}<br>number_of_collisions=%{y}<br>number_of_total_casualties=%{customdata[1]}<br>number_of_cyclist_injured=%{customdata[2]}<br>number_of_cyclist_killed=%{customdata[3]}<br>number_of_motorist_injured=%{customdata[4]}<br>number_of_motorist_killed=%{customdata[5]}<br>number_of_pedestrians_injured=%{customdata[6]}<br>number_of_pedestrians_killed=%{customdata[7]}<br>number_of_persons_injured=%{customdata[8]}<br>number_of_persons_killed=%{customdata[9]}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#ab63fa"
                        },
                        "mode": "markers+lines",
                        "name": "2021",
                        "type": "scatter",
                        "xsrc": "Prashanth.klv:2:1d4685",
                        "ysrc": "Prashanth.klv:2:c09c3f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "2021",
                        "orientation": "v",
                        "textposition": "bottom right",
                        "customdatasrc": "Prashanth.klv:2:2dfc16",
                        "hovertemplate": "year=%{customdata[0]}<br>number_of_collisions=%{y}<br>number_of_total_casualties=%{customdata[1]}<br>number_of_cyclist_injured=%{customdata[2]}<br>number_of_cyclist_killed=%{customdata[3]}<br>number_of_motorist_injured=%{customdata[4]}<br>number_of_motorist_killed=%{customdata[5]}<br>number_of_pedestrians_injured=%{customdata[6]}<br>number_of_pedestrians_killed=%{customdata[7]}<br>number_of_persons_injured=%{customdata[8]}<br>number_of_persons_killed=%{customdata[9]}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#FFA15A"
                        },
                        "mode": "markers+lines",
                        "name": "2022",
                        "type": "scatter",
                        "xsrc": "Prashanth.klv:2:c5178c",
                        "ysrc": "Prashanth.klv:2:f48e29",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "2022",
                        "orientation": "v",
                        "textposition": "bottom right",
                        "customdatasrc": "Prashanth.klv:2:1a5715",
                        "hovertemplate": "year=%{customdata[0]}<br>number_of_collisions=%{y}<br>number_of_total_casualties=%{customdata[1]}<br>number_of_cyclist_injured=%{customdata[2]}<br>number_of_cyclist_killed=%{customdata[3]}<br>number_of_motorist_injured=%{customdata[4]}<br>number_of_motorist_killed=%{customdata[5]}<br>number_of_pedestrians_injured=%{customdata[6]}<br>number_of_pedestrians_killed=%{customdata[7]}<br>number_of_persons_injured=%{customdata[8]}<br>number_of_persons_killed=%{customdata[9]}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "text": "Number of Collisions over the months for different Calendar Years"
                    },
                    "xaxis": {
                        "title": {
                            "text": "month_name"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "number_of_collisions"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "year"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(17,17,17)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#f2f5fa"
                                    },
                                    "error_y": {
                                        "color": "#f2f5fa"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                            "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": {
                                        "line": {
                                            "color": "#283442"
                                        }
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "dark"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "color": "#f2f5fa"
                                }
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        }
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 12,
                            "family": "Rockwell"
                        },
                        "bgcolor": "white"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Prashanth.klv",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-13 00:25:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Prashanth.klv",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T15:37:49.144788Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lbsim96/1.embed",
            "fid": "lbsim96:1",
            "filename": "DirectShear-Shear&Horz-Graph",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lbsim96/1/9_LLHMWJQWW1RAMEBKJ3556FXY3ELJWM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lbsim96/1/2_PRTKITX4KKNRLP8Z7AKZ9YE9Z0HT5C.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lbsim96/1/8_DS45ZNOVDKGDX3ELEXHAEMSN8W2Z0B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lbsim96/1/9_LLHMWJQWW1RAMEBKJ3556FXY3ELJWM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lbsim96:1",
                "plots": "https://api.plotly.com/v2/plots/lbsim96:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=lbsim96"
            },
            "owner": "lbsim96",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lbsim96/1/",
            "world_readable": true,
            "date_modified": "2024-04-16T13:31:39.134Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lbsim96/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "dot"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G1-0 mm",
                                "y": "G1-0 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Loose 50kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:4dd822",
                        "ysrc": "lbsim96:0:8e84ff"
                    },
                    {
                        "line": {
                            "dash": "dot"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G1-1mm",
                                "y": "G1-1 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Loose 100kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:6f9a9e",
                        "ysrc": "lbsim96:0:b3b04e",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "dash": "dot"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "G1-2 mm",
                                "y": "G1-2 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Loose 150kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:4bd30e",
                        "ysrc": "lbsim96:0:08a548",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G1-3 mm",
                                "y": "G1-3 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Dense 50kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:cdf4ca",
                        "ysrc": "lbsim96:0:fe4783",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G1-4 mm",
                                "y": "G1-4 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Dense 100kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:975b9a",
                        "ysrc": "lbsim96:0:cb0680",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G1-5 mm",
                                "y": "G1-5 kPa"
                            }
                        },
                        "mode": "lines",
                        "name": "Dense 150kPa",
                        "type": "scatter",
                        "xsrc": "lbsim96:0:cb3619",
                        "ysrc": "lbsim96:0:6d2421",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "All Group Data"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.008,
                            9.502
                        ],
                        "title": {
                            "text": "Horizontal Displacement (mm)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -28.996611111111108,
                            550.935611111111
                        ],
                        "title": {
                            "text": "Shear Stress (kPa)"
                        },
                        "autorange": true
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lbsim96",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.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": "2024-04-15 15:36:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lbsim96",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T15:34:53.051176Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~HMY520/1.embed",
            "fid": "HMY520:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/HMY520:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/HMY520/1/2_8TSEMB7WSUTPOG3CK5NWZT6JDR0UEK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/HMY520/1/8_P8FEKVZ5N7YGSVBK1WXBR9UNZPHUIM.png",
                "list-thumb": "https://api.plotly.com/v2/files/HMY520:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/HMY520:1",
                "plots": "https://api.plotly.com/v2/plots/HMY520:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=HMY520"
            },
            "owner": "HMY520",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~HMY520/1/",
            "world_readable": true,
            "date_modified": "2024-04-15T15:41:11.492Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~HMY520/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Test 1",
                        "type": "box",
                        "xsrc": "HMY520:0:54f9a4",
                        "jitter": 1,
                        "marker": {
                            "symbol": "circle-open",
                            "opacity": 1
                        },
                        "boxmean": true,
                        "visible": true,
                        "pointpos": -2,
                        "boxpoints": "all",
                        "whiskerwidth": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B"
                            }
                        },
                        "name": "Test 2",
                        "type": "box",
                        "xsrc": "HMY520:0:ef393c",
                        "jitter": 1,
                        "marker": {
                            "symbol": "circle-open"
                        },
                        "boxmean": true,
                        "notched": false,
                        "pointpos": -2,
                        "boxpoints": "all",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "showlegend": true,
                        "whiskerwidth": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C"
                            }
                        },
                        "name": "Test 3",
                        "type": "box",
                        "xsrc": "HMY520:0:84a089",
                        "jitter": 1,
                        "marker": {
                            "symbol": "circle-open"
                        },
                        "pointpos": -2,
                        "boxpoints": "all",
                        "whiskerwidth": 1
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            5.702863961813843,
                            15.702863961813843
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5342205323193916,
                            2.5
                        ],
                        "autorange": false
                    },
                    "boxgap": 0.5800000000000001,
                    "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"
                    },
                    "boxgroupgap": 0.22
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~HMY520",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-15 15:34:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "HMY520",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T15:07:44.025345Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~anas97/7.embed",
            "fid": "anas97:7",
            "filename": "OutputFormat",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/anas97/7/9_KRE8UT9PS71SZRIVB2T9EPOR8NTD82.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/anas97/7/2_KCY51GDQWVJL9OZHEA9C382AKOHERZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/anas97/7/8_L9HHRESNOOMYPWR6USSZ3ZI9VO37O0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/anas97/7/9_KRE8UT9PS71SZRIVB2T9EPOR8NTD82.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/anas97:7",
                "plots": "https://api.plotly.com/v2/plots/anas97:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=anas97"
            },
            "owner": "anas97",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~anas97/7/",
            "world_readable": true,
            "date_modified": "2024-04-16T12:31:51.874Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~anas97/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "723fe8",
                        "line": {
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "title length",
                                "y": "Avg per project"
                            }
                        },
                        "mode": "lines",
                        "name": "Ratio metrics",
                        "type": "bar",
                        "xsrc": "anas97:6:24ff4c",
                        "ysrc": "anas97:6:bcccbf",
                        "marker": {
                            "color": "rgb(255, 127, 14)",
                            "sizeref": 0.028149617325,
                            "sizemode": "area"
                        },
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(14, 169, 255)",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "title length",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Syntax verification",
                        "type": "bar",
                        "xsrc": "anas97:6:24ff4c",
                        "ysrc": "anas97:6:c44065",
                        "marker": {
                            "color": "rgb(14, 169, 255)"
                        },
                        "stackgroup": null,
                        "orientation": "v",
                        "hovertemplate": ""
                    },
                    {
                        "fill": "none",
                        "line": {
                            "shape": "spline",
                            "smoothing": 0
                        },
                        "meta": {
                            "columnNames": {
                                "x": "title length",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Manual reading",
                        "type": "bar",
                        "xsrc": "anas97:6:24ff4c",
                        "ysrc": "anas97:6:3cb8e2",
                        "stackgroup": null,
                        "connectgaps": false,
                        "orientation": "v",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Effectiveness of Output Format on 20 Generated Scenarios"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14
                            },
                            "text": ""
                        },
                        "nticks": 3,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 10
                        },
                        "tickmode": "auto",
                        "autorange": true,
                        "tickangle": "auto",
                        "automargin": false,
                        "showspikes": false,
                        "tickformat": "",
                        "rangeslider": {
                            "range": [
                                -0.5,
                                1.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            105.26315789473685
                        ],
                        "title": {
                            "text": "Success Rate (%)"
                        },
                        "nticks": 11,
                        "showgrid": true,
                        "autorange": true,
                        "showspikes": false
                    },
                    "bargap": 0.38,
                    "autosize": true,
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~anas97",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/78.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": "2024-04-15 09:03:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "anas97",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T15:03:17.308835Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sam_C./25.embed",
            "fid": "Sam_C.:25",
            "filename": "Chronogramme Baldur's Gate III - 030424 Plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sam_C./25/9_WRIS8OBZ1BR14OEJ7UO0ZAVGUZ2H0T.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sam_C./25/2_0TQX02ADFLPP1L7XAL111W842CKIJM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sam_C./25/8_7VL81B73Q3TMDGD3KS9OL3RA4M3GIC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sam_C./25/9_WRIS8OBZ1BR14OEJ7UO0ZAVGUZ2H0T.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sam_C.:25",
                "plots": "https://api.plotly.com/v2/plots/Sam_C.:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sam_C."
            },
            "owner": "Sam_C.",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Sam_C./25/",
            "world_readable": true,
            "date_modified": "2024-04-24T13:36:25.563Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sam_C./25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "color": "rgb(29, 186, 17)",
                            "shape": "hv",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Sam_C.:24:cc4bf5",
                        "ysrc": "Sam_C.:24:8b69b1",
                        "error_x": {
                            "type": "percent",
                            "color": "rgb(229, 50, 6)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "hoverinfo": "x+y+text",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "connectgaps": true,
                        "orientation": "v",
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Open Sans"
                    },
                    "title": {
                        "text": "Chronogramme d'une session de jeu sur Baldur's Gate III - 030424"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            26
                        ],
                        "title": {
                            "text": "Temps en heures et minutes (00:00:00)"
                        },
                        "showgrid": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            3.335790312856629,
                            8.689442755989173
                        ],
                        "title": {
                            "text": "Échelle de la sensation de présence (de 0 à 8)"
                        },
                        "showgrid": false,
                        "autorange": true
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1.0136907776178714,
                            "y": 5.015736540074061,
                            "ax": -3,
                            "ay": 46,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A envie de jouer <br>roleplay mais <br>\nne peut pas.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 2.030189834270328,
                            "y": 4.003671706752372,
                            "ax": -41,
                            "ay": 48,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est frustrée par <br>des éléments du jeu.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 3.0174146659613013,
                            "y": 6.002333078954921,
                            "ax": -42,
                            "ay": -36,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Lance un combat.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 4.003633357383531,
                            "y": 4.978966978866221,
                            "ax": 10,
                            "ay": 44,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est dans une <br>phase d'exploration.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 4.994882750149478,
                            "y": 5.979507059945702,
                            "ax": -12,
                            "ay": -42,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A eu du mal à <br>ouvrir un coffre.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 6.011285649634009,
                            "y": 4.990379569546146,
                            "ax": 37,
                            "ay": 72,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A été soûlée de ne <br>pas réussir à ouvrir le coffre.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 7.0097792523349085,
                            "y": 7.003361314308002,
                            "ax": -39,
                            "ay": -39,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A envie d'affronter <br>furtivement les gobelins.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 8.019340397991982,
                            "y": 5.989847051462698,
                            "ax": 40,
                            "ay": 68,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Relance sa sauvegarde <br>par manque de discrétion.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 8.990064529275566,
                            "y": 7.0064828211810575,
                            "ax": -12,
                            "ay": -71,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A réussi à faire <br>ce qu'elle voulait <br>\ndurant le combat.<br>",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 10.02397426943623,
                            "y": 7.989757486193632,
                            "ax": 17,
                            "ay": -51,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est satisfait du déroulé <br>des actions de jeu.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 11.036755063953285,
                            "y": 7.011858567363551,
                            "ax": -29,
                            "ay": 37,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Le combat est fini.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 12.007479195236868,
                            "y": 6.018748102882392,
                            "ax": -3,
                            "ay": 51,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Fait une sauvegarde <br>de sa partie.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 12.999332272164061,
                            "y": 6.980951031932381,
                            "ax": -16,
                            "ay": -55,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est en pleine <br>cinématique.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 14.012113066681115,
                            "y": 4.9780652249319415,
                            "ax": -95,
                            "ay": 47,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est perdu face à un dialogue <br>qui parle de quelque chose <br>\nqu'elle n'a pas vécue.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 15.024893861198167,
                            "y": 5.99762633885733,
                            "ax": -2,
                            "ay": -56,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Suit une <br>cinématique.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 16.037875883768972,
                            "y": 6.978916366590519,
                            "ax": -17,
                            "ay": -128,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Découvre l'utilité d'un objet <br>qu'elle connait depuis <br>\nle début de son aventure.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 17.008600015052554,
                            "y": 6.025433431862802,
                            "ax": -44,
                            "ay": 166,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "On lui parle d'un élément <br>présent dans le jeu dont <br>\nelle n'a pas la connaissance.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 18.02138080956961,
                            "y": 6.980951031932381,
                            "ax": -11,
                            "ay": -45,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est satisfaite de <br>la discussion.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 19.034161604086663,
                            "y": 6.014775661024467,
                            "ax": -24,
                            "ay": 54,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A failli quitter le jeu <br>pour aller voir&nbsp;<br>\nqui est&nbsp;Shiar.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 20.02601468101386,
                            "y": 6.981919920190412,
                            "ax": -15,
                            "ay": -95,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Rit du comportement <br>de ses personnages.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 21.017867757941048,
                            "y": 6.025433431862802,
                            "ax": -51,
                            "ay": 137,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Est frustrée que le chemin <br>suivi soit un cul-de-sac.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 22.009519606814493,
                            "y": 4.007432968037088,
                            "ax": -71,
                            "ay": 31,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "A du mal à trouver <br>un personnage.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 23.022300401331545,
                            "y": 5.974435137681472,
                            "ax": -22,
                            "ay": -48,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Découvre de <br>nouveaux enjeux.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 24.01415347825874,
                            "y": 6.978754393118822,
                            "ax": -10,
                            "ay": -59,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Découvre les conséquences <br>de son échec critique.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        },
                        {
                            "x": 25.026934272775794,
                            "y": 6.025677892901992,
                            "ax": -22,
                            "ay": 81,
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "Rate et comprend le <br>fonctionnement d'un <br>\npersonnage après <br>\n7h de jeu.",
                            "arrowhead": 4,
                            "arrowsize": 1.5,
                            "arrowcolor": "rgb(0, 0, 0)",
                            "arrowwidth": 1
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Sam_C.",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "Axergonomie",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 09:52:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sam_C.",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T14:51:01.380893Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gonzapic/4.embed",
            "fid": "gonzapic:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gonzapic:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gonzapic/4/2_3T7830TIGO76Q0N9O8PM0N5ADPR28F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gonzapic/4/8_R2MQD06OI85S2WKRH4DH3XKUV91AQX.png",
                "list-thumb": "https://api.plotly.com/v2/files/gonzapic:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gonzapic:4",
                "plots": "https://api.plotly.com/v2/plots/gonzapic:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=gonzapic"
            },
            "owner": "gonzapic",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~gonzapic/4/",
            "world_readable": true,
            "date_modified": "2024-04-26T07:58:38.631Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gonzapic/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 1,
                            "smoothing": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4] - z[5] - z[6] - z[7] - z[8] - z[9] - z[10] - z[11] - z[12] - z[13] - z[14] - z[15] - z[16] - z[17] - z[18] - z[19] - z[20] - z[21] - z[22] - z[23] - z[24] - z[25] - z[26] - z[27] - z[28] - z[29] - z[30] - z[31] - z[32] - z[33] - z[34] - z[35] - z[36] - z[37] - z[38] - z[39] - z[40] - z[41] - z[42] - z[43] - z[44] - z[45] - z[46] - z[47] - z[48] - z[49] - z[50] - z[51] - z[52] - z[53] - z[54] - z[55] - z[56] - z[57] - z[58] - z[59] - z[60]"
                            }
                        },
                        "mode": "markers",
                        "type": "contour",
                        "xsrc": "gonzapic:3:f83476",
                        "ysrc": "gonzapic:3:b765c9",
                        "zmax": 0.5,
                        "zmin": 0,
                        "zsrc": "gonzapic:3:7b8f7e,ab4ed4,818fa8,35a758,35c93d,9d6287,f1b6f0,9281b6,a43a80,d17efb,ef3b4b,1ec1e2,9ccdeb,ba70e5,84bd64,a64bb6,d77d5a,d14d9d,740865,f1227d,690b27,8a442a,725c0e,13b343,7fcdcd,bb1816,b428a2,addd46,22bdcb,4927ca,1bf34e,ee26d8,8a2494,d2410d,d8a259,9e22a6,8fdf3a,5f6b4d,3a36f6,103d0c,42e618,288c0b,06b535,6589eb,bcd6fd,8837e3,0c88ff,5972ea,684815,01b1b1,7c67fb,e54241,0ab199,f83508,06b223,6643e0,bfb57e,f800f8,e49f17,d06d51,1b6701",
                        "zauto": false,
                        "contours": {
                            "end": 100,
                            "size": 3,
                            "type": "levels",
                            "start": 1,
                            "coloring": "fill",
                            "showlines": true,
                            "showlabels": true
                        },
                        "hoverinfo": "x+y+z",
                        "showscale": false,
                        "transpose": false,
                        "colorscale": [
                            [
                                0,
                                "#f7fcf0"
                            ],
                            [
                                0.125,
                                "#e0f3db"
                            ],
                            [
                                0.25,
                                "#ccebc5"
                            ],
                            [
                                0.375,
                                "#a8ddb5"
                            ],
                            [
                                0.5,
                                "#7bccc4"
                            ],
                            [
                                0.625,
                                "#4eb3d3"
                            ],
                            [
                                0.75,
                                "#2b8cbe"
                            ],
                            [
                                0.875,
                                "#0868ac"
                            ],
                            [
                                1,
                                "#084081"
                            ]
                        ],
                        "showlegend": false,
                        "autocontour": false,
                        "connectgaps": false,
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 24
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 24
                        },
                        "text": "Percentage of additional Good Die per wafer"
                    },
                    "width": 700,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            100,
                            200
                        ],
                        "title": {
                            "font": {
                                "size": 24
                            },
                            "text": "<b>Wafer Thickness (µm)</b>"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 24
                        },
                        "autorange": false,
                        "gridwidth": 1,
                        "linewidth": 1,
                        "tickformat": "",
                        "rangeslider": {
                            "range": [
                                50,
                                350
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.5,
                            4
                        ],
                        "title": {
                            "font": {
                                "size": 24
                            },
                            "text": "<b>Specific Resistivity Ron.A (mOhm.cm²)</b>"
                        },
                        "tickfont": {
                            "size": 24
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "fixedrange": false
                    },
                    "height": 700,
                    "legend": {
                        "font": {
                            "size": 16
                        },
                        "borderwidth": 2
                    },
                    "margin": {
                        "t": 100
                    },
                    "autosize": false,
                    "colorway": [
                        "#ffffff",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "hoverlabel": {
                        "font": {
                            "size": 24
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 700,
            "width": 700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gonzapic",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-15 13:09:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gonzapic",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T14:50:16.057553Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hameidia.n/21.embed",
            "fid": "hameidia.n:21",
            "filename": "Plot 21",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/21/9_PQWPEN6H8SMEEULMNOFZK20BXGFOF7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/21/2_U39IZTORILDBUB5IDBWXC7NAAXVPC2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/21/8_4W4WL55DDXONE5AZFOGGTJVUSEZ05V.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/21/9_PQWPEN6H8SMEEULMNOFZK20BXGFOF7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hameidia.n:21",
                "plots": "https://api.plotly.com/v2/plots/hameidia.n:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=hameidia.n"
            },
            "owner": "hameidia.n",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hameidia.n/21/",
            "world_readable": true,
            "date_modified": "2024-04-15T14:50:16.073Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hameidia.n/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "heur - itcc",
                                "y": "",
                                "z": "1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "hameidia.n:20:1ea742,2f7dc2*",
                        "zmax": 31,
                        "zmin": 0,
                        "zsrc": "hameidia.n:20:2d78a9,a0f606,6548b7,29b651,16bdd4,28e20a,d9f032,1ce76c,0156a0,0b27a7,37ddf0,a4de3d",
                        "zauto": false,
                        "opacity": 1,
                        "zsmooth": false,
                        "colorbar": {
                            "title": {
                                "text": "numbers of days"
                            }
                        },
                        "showscale": true,
                        "transpose": true,
                        "colorscale": [
                            [
                                0,
                                "#fdfdcc"
                            ],
                            [
                                0.09090909090909091,
                                "#ceecb3"
                            ],
                            [
                                0.18181818181818182,
                                "#9cdba5"
                            ],
                            [
                                0.2727272727272727,
                                "#6fc9a3"
                            ],
                            [
                                0.36363636363636365,
                                "#56b1a3"
                            ],
                            [
                                0.45454545454545453,
                                "#4c99a0"
                            ],
                            [
                                0.5454545454545454,
                                "#44829b"
                            ],
                            [
                                0.6363636363636364,
                                "#3e6c96"
                            ],
                            [
                                0.7272727272727273,
                                "#3e528f"
                            ],
                            [
                                0.8181818181818182,
                                "#403c73"
                            ],
                            [
                                0.9090909090909091,
                                "#362b4d"
                            ],
                            [
                                1,
                                "#271a2c"
                            ]
                        ],
                        "reversescale": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Ambiance indices from the climate-tourism model for the wilaya of Algiers"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            34.5
                        ],
                        "title": {
                            "text": "Hours/class"
                        },
                        "autorange": true,
                        "gridwidth": 1
                    },
                    "yaxis": {
                        "dtick": 0,
                        "range": [
                            -0.5,
                            12
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Months"
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "gridcolor": "rgb(0, 21, 54)",
                        "gridwidth": 1
                    },
                    "mapbox": {},
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hameidia.n",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-14 14:18:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hameidia.n",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T14:47:23.465649Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hameidia.n/19.embed",
            "fid": "hameidia.n:19",
            "filename": "Plot 19",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/19/9_SCM4CLJ6UK1KWU1BWGD2CPYLTKY53I.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/19/2_DBOLR7II1AGMQJKD2RU3ZFY3R6G14F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/19/8_E1HLXJ43O2W65UZSFJO0EW28OI9OLJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/19/9_SCM4CLJ6UK1KWU1BWGD2CPYLTKY53I.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hameidia.n:19",
                "plots": "https://api.plotly.com/v2/plots/hameidia.n:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=hameidia.n"
            },
            "owner": "hameidia.n",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~hameidia.n/19/",
            "world_readable": true,
            "date_modified": "2024-04-15T14:47:23.478Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hameidia.n/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "heur - itcc",
                                "y": "",
                                "z": "1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "hameidia.n:18:1163b1,70cbf6*",
                        "zmax": 31,
                        "zmin": 0,
                        "zsrc": "hameidia.n:18:a1c269,915433,e52232,4998c9,1344bc,ace4ef,4d6059,c1f749,5c36e2,a91fef,b9b495,033f43",
                        "zauto": false,
                        "zsmooth": false,
                        "colorbar": {
                            "title": {
                                "text": "numbers of days"
                            }
                        },
                        "showscale": true,
                        "transpose": true,
                        "colorscale": [
                            [
                                0,
                                "#fff7ec"
                            ],
                            [
                                0.125,
                                "#fee8c8"
                            ],
                            [
                                0.25,
                                "#fdd49e"
                            ],
                            [
                                0.375,
                                "#fdbb84"
                            ],
                            [
                                0.5,
                                "#fc8d59"
                            ],
                            [
                                0.625,
                                "#ef6548"
                            ],
                            [
                                0.75,
                                "#d7301f"
                            ],
                            [
                                0.875,
                                "#b30000"
                            ],
                            [
                                1,
                                "#7f0000"
                            ]
                        ],
                        "reversescale": false,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Risk index of the climate-tourism model for the wilaya of Algiers"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            34.5
                        ],
                        "title": {
                            "text": "Hours/class"
                        },
                        "autorange": true,
                        "gridwidth": 1
                    },
                    "yaxis": {
                        "dtick": 0,
                        "range": [
                            -0.5,
                            12
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Months"
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "gridcolor": "rgb(0, 21, 54)",
                        "gridwidth": 1
                    },
                    "mapbox": {},
                    "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/~hameidia.n",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-14 14:18:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hameidia.n",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T14:44:19.104226Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hameidia.n/17.embed",
            "fid": "hameidia.n:17",
            "filename": "Plot 17",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/17/9_VXXGGEX772PSBHFQ84YUKFP00JDYBG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/17/2_P0ABS75WBXGEVZ50378G42YEQ0QINR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/17/8_XSRIUV3FXF685QRU82CLLJM0DERI7Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hameidia.n/17/9_VXXGGEX772PSBHFQ84YUKFP00JDYBG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hameidia.n:17",
                "plots": "https://api.plotly.com/v2/plots/hameidia.n:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=hameidia.n"
            },
            "owner": "hameidia.n",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hameidia.n/17/",
            "world_readable": true,
            "date_modified": "2024-04-15T14:44:19.117Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hameidia.n/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "heur - itcc",
                                "y": "",
                                "z": "1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12"
                            }
                        },
                        "type": "heatmap",
                        "xsrc": "hameidia.n:16:30944c,8296a6*",
                        "zmax": 31,
                        "zmin": 0,
                        "zsrc": "hameidia.n:16:02705e,ad2898,a60f7e,4b9f0a,02c4c8,32a2c3,5a11c1,6a109e,f2af6f,353fad,1619b8,ed5626",
                        "zauto": false,
                        "zsmooth": false,
                        "colorbar": {
                            "title": {
                                "text": "numbers of days"
                            }
                        },
                        "showscale": true,
                        "transpose": true,
                        "colorscale": [
                            [
                                0,
                                "#030512"
                            ],
                            [
                                0.09090909090909091,
                                "#191933"
                            ],
                            [
                                0.18181818181818182,
                                "#2c2a57"
                            ],
                            [
                                0.2727272727272727,
                                "#3a3c7d"
                            ],
                            [
                                0.36363636363636365,
                                "#3e53a0"
                            ],
                            [
                                0.45454545454545453,
                                "#3e6db2"
                            ],
                            [
                                0.5454545454545454,
                                "#4886bb"
                            ],
                            [
                                0.6363636363636364,
                                "#599fc4"
                            ],
                            [
                                0.7272727272727273,
                                "#72b8cd"
                            ],
                            [
                                0.8181818181818182,
                                "#95cfd8"
                            ],
                            [
                                0.9090909090909091,
                                "#c0e5e8"
                            ],
                            [
                                1,
                                "#eafcfd"
                            ]
                        ],
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Meteorological indices from the climate-tourism model for the wilaya of Alger -2"
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            34.5
                        ],
                        "title": {
                            "font": {
                                "size": 10
                            },
                            "text": "Hours/class"
                        },
                        "autorange": true,
                        "gridwidth": 1
                    },
                    "yaxis": {
                        "dtick": 0,
                        "range": [
                            -0.5,
                            12
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Months"
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "gridcolor": "rgb(0, 21, 54)",
                        "gridwidth": 1
                    },
                    "mapbox": {},
                    "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/~hameidia.n",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/74.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-14 14:18:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hameidia.n",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-15T14:41:17.414267Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mwellerRWTH/7.embed",
            "fid": "mwellerRWTH:7",
            "filename": "xfer",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mwellerRWTH/7/9_MVM7SFNPCMXRLF8VGETF1KM97VG12R.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mwellerRWTH/7/2_F1D5AWTMCE5QNF66WKMJMLJYP9TJMU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mwellerRWTH/7/8_AWR64GTNLX3YZWOO9EP1LHBRZXHBYA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mwellerRWTH/7/9_MVM7SFNPCMXRLF8VGETF1KM97VG12R.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mwellerRWTH:7",
                "plots": "https://api.plotly.com/v2/plots/mwellerRWTH:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=mwellerRWTH"
            },
            "owner": "mwellerRWTH",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mwellerRWTH/7/",
            "world_readable": true,
            "date_modified": "2024-04-18T10:54:52.863Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mwellerRWTH/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "xfer(KiB)",
                                "y": "bw(MiB/s)",
                                "marker": {
                                    "color": "bw(MiB/s)"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Read",
                        "type": "scatter",
                        "xsrc": "mwellerRWTH:5:e30fa5",
                        "ysrc": "mwellerRWTH:5:ac0d9c",
                        "xaxis": "x",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "bw(MiB/s)"
                                }
                            },
                            "color": "#1f77b4",
                            "reversescale": false
                        },
                        "visible": true,
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "xfer(KiB)",
                                "y": "bw(MiB/s)"
                            }
                        },
                        "mode": "markers",
                        "name": "Write",
                        "type": "scatter",
                        "xsrc": "mwellerRWTH:4:63e593",
                        "ysrc": "mwellerRWTH:4:99c801",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "block (KiB)"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "xfer (KiB)"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "MiB/s"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.4053561959720378,
                                "y": -1.401224919403439,
                                "z": 0.865472522779223
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0.22,
                        "text": "Performance by Transfer Size"
                    },
                    "xaxis": {
                        "type": "log",
                        "range": [
                            1,
                            7.490659035796868
                        ],
                        "title": {
                            "text": "xfer(KiB)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -56.833238796680504,
                            568.7182217842324
                        ],
                        "title": {
                            "text": "bw (MiB/s)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "legend": {
                        "x": -0.020015396458814474,
                        "y": 1.1935419165488983,
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "metasrc": "mwellerRWTH:1:99c801",
                    "autosize": true,
                    "dragmode": "zoom",
                    "clickmode": "none",
                    "hovermode": "closest",
                    "hoverlabel": {
                        "align": "left"
                    },
                    "showlegend": true,
                    "annotations": [],
                    "selectdirection": "d"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mwellerRWTH",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-15 13:43:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mwellerRWTH",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}