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=cj0xJnA9MjAyNC0wNC0yOSswNSUzQTU0JTNBNDEuNzkzOTM3JTJCMDAlM0EwMA%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=cD0yMDI0LTA0LTI5KzA1JTNBNTQlM0E0NS43MTc2MTYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yOSswNyUzQTA5JTNBMDguNDUzNjU2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-29T07:09:08.453656Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NatiH/10.embed",
            "fid": "NatiH:10",
            "filename": "Plot 10",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/NatiH/10/9_ZAGAB7JU8E0OA0SGAVIDNVP1DBDDGZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/NatiH/10/2_17AADCXXXQC4XK7L0Z4DWEITNTNG13.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NatiH/10/8_I3CM3GXMN86MI12PFLHCC3JHP9YQGO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NatiH/10/9_ZAGAB7JU8E0OA0SGAVIDNVP1DBDDGZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NatiH:10",
                "plots": "https://api.plotly.com/v2/plots/NatiH:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=NatiH"
            },
            "owner": "NatiH",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~NatiH/10/",
            "world_readable": true,
            "date_modified": "2024-04-29T07:09:08.465Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NatiH/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "K.E.",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "NatiH:8:080074",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "GPE",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "NatiH:8:27b88f"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.0011564717477003943,
                            0.022256471747700395
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -0.3913649025069638,
                            6.391364902506964
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~NatiH",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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": "2023-08-31 10:39:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NatiH",
                "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-29T06:58:31.066020Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishraquefairuz/1.embed",
            "fid": "ishraquefairuz:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ishraquefairuz/1/9_W2OJ51CF5R4HA3R0J950Y3ZJYC3Q5E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ishraquefairuz/1/2_5F4Y69W3R2HPWY0NH8UMCZPZT4I82Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ishraquefairuz/1/8_E65IVNS6XXOS6Y92X8AAA3QPZFIJKK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ishraquefairuz/1/9_W2OJ51CF5R4HA3R0J950Y3ZJYC3Q5E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishraquefairuz:1",
                "plots": "https://api.plotly.com/v2/plots/ishraquefairuz:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishraquefairuz"
            },
            "owner": "ishraquefairuz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishraquefairuz/1/",
            "world_readable": true,
            "date_modified": "2024-04-29T07:06:30.155Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishraquefairuz/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "altitude (m)",
                                "y": "Age (yr)",
                                "error_y": {
                                    "array": "Interr (yr)"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "ishraquefairuz:0:c1ff48",
                        "ysrc": "ishraquefairuz:0:af0577",
                        "marker": {
                            "size": 6,
                            "color": "rgb(92, 193, 101)"
                        },
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "Interr (yr)"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "ishraquefairuz:0:3a55df",
                            "symmetric": true
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Altitude vs. Age"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1200,
                            1500
                        ],
                        "title": {
                            "text": "Altitude (m)"
                        },
                        "autorange": false,
                        "fixedrange": true,
                        "tickformat": ""
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -13208.454767726162,
                            265460.44498777506
                        ],
                        "title": {
                            "text": "Be Ages"
                        },
                        "autorange": true
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ishraquefairuz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 06:57:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishraquefairuz",
                "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-29T06:33:26.501326Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aaron0627/1.embed",
            "fid": "Aaron0627:1",
            "filename": "WAK-OG binding affinities",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/1/9_A6Y1D8ASSJNZP1IQF1IPB4DJIURJ12.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/1/2_CT9MWC9PPGZHWYUG1IK7SOY2DEVV3L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/1/8_FKPVKWIO38C8RVJDNJEWHAJLW0MQWJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Aaron0627/1/9_A6Y1D8ASSJNZP1IQF1IPB4DJIURJ12.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aaron0627:1",
                "plots": "https://api.plotly.com/v2/plots/Aaron0627:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aaron0627"
            },
            "owner": "Aaron0627",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Aaron0627/1/",
            "world_readable": true,
            "date_modified": "2024-05-09T08:12:18.849Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aaron0627/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "\n  Est. Free Energy\n  of Binding\n",
                        "type": "bar",
                        "xsrc": "Aaron0627:2:462077",
                        "ysrc": "Aaron0627:2:90f390",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "name": "\n  vdW + Hbond + desolv\n  Energy\n",
                        "type": "bar",
                        "xsrc": "Aaron0627:2:462077",
                        "ysrc": "Aaron0627:2:9b82a0",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "\n  Est. Inhibition\n  Constant, Ki\n",
                        "type": "bar",
                        "xsrc": "Aaron0627:2:462077",
                        "ysrc": "Aaron0627:2:0af9b0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 25
                        },
                        "text": "PaWAK/WAKL-oligogalacturonide binding values"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            -0.5,
                            23.5
                        ],
                        "title": {
                            "font": {
                                "size": 17
                            },
                            "text": "PaWAK/WAKL"
                        },
                        "anchor": "y2",
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true,
                        "automargin": true,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -5.4911111111111115,
                            1.931111111111111
                        ],
                        "title": {
                            "font": {
                                "size": 17
                            },
                            "text": "Energy (kcal/mol) & Concentration (mM)"
                        },
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.7900863883472183,
                        "y": 1.6130005025967498,
                        "font": {
                            "size": 18
                        }
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aaron0627",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 06:08:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aaron0627",
                "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-29T06:28:16.612055Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~poojatrivedi01712/23.embed",
            "fid": "poojatrivedi01712:23",
            "filename": "Plot 23",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/poojatrivedi01712/23/9_9TBD14XUDJ8OIRVPT9UP19K1NT1MPR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/poojatrivedi01712/23/2_AZD9RYGCUCDDJO3UZ86GP8OHQ0JKKD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/poojatrivedi01712/23/8_Y355QHI4TGV8HHXK14B3WRF3JPVEH4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/poojatrivedi01712/23/9_9TBD14XUDJ8OIRVPT9UP19K1NT1MPR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/poojatrivedi01712:23",
                "plots": "https://api.plotly.com/v2/plots/poojatrivedi01712:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=poojatrivedi01712"
            },
            "owner": "poojatrivedi01712",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~poojatrivedi01712/23/",
            "world_readable": true,
            "date_modified": "2024-04-29T06:51:36.971Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~poojatrivedi01712/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B - C",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2d",
                        "xgap": 1,
                        "xsrc": "poojatrivedi01712:22:f59aaa,ae5fe0*",
                        "ygap": 0,
                        "ysrc": "poojatrivedi01712:22:cf75e7",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "color": "rgb(15, 16, 16)",
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0
                    },
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            21.5
                        ],
                        "title": {
                            "text": "Severity score with Prakriti"
                        },
                        "tickfont": {
                            "size": 17
                        },
                        "autorange": true,
                        "fixedrange": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                22.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "category",
                        "range": [
                            -0.5,
                            18.5
                        ],
                        "tick0": 35,
                        "title": {
                            "text": "Age (Years)"
                        },
                        "nticks": 30,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 13
                        },
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "gridwidth": 0,
                        "linewidth": 2,
                        "tickangle": "auto",
                        "automargin": true,
                        "fixedrange": false,
                        "separatethousands": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event+select",
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#440154"
                            ],
                            [
                                0.1111111111111111,
                                "#482878"
                            ],
                            [
                                0.2222222222222222,
                                "#3e4989"
                            ],
                            [
                                0.3333333333333333,
                                "#31688e"
                            ],
                            [
                                0.4444444444444444,
                                "#26828e"
                            ],
                            [
                                0.5555555555555556,
                                "#1f9e89"
                            ],
                            [
                                0.6666666666666666,
                                "#35b779"
                            ],
                            [
                                0.7777777777777778,
                                "#6ece58"
                            ],
                            [
                                0.8888888888888888,
                                "#b5de2b"
                            ],
                            [
                                1,
                                "#fde725"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~poojatrivedi01712",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-02 03:46:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "poojatrivedi01712",
                "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-29T06:23:20.796286Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AlejandroBrena/53.embed",
            "fid": "AlejandroBrena:53",
            "filename": "Plot 53",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AlejandroBrena/53/9_IJDXK4H7A3T1OLGB5VNPI2VRZAGXY2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AlejandroBrena/53/2_4K9OD7CYHIHQZNXYJDNQ62VZFYPBFD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AlejandroBrena/53/8_EHTABUM6SPZ1P0NVYUL56ALYBXG83H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AlejandroBrena/53/9_IJDXK4H7A3T1OLGB5VNPI2VRZAGXY2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AlejandroBrena:53",
                "plots": "https://api.plotly.com/v2/plots/AlejandroBrena:53",
                "parent": "https://api.plotly.com/v2/folders/home?user=AlejandroBrena"
            },
            "owner": "AlejandroBrena",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~AlejandroBrena/53/",
            "world_readable": true,
            "date_modified": "2024-05-07T05:29:09.958Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AlejandroBrena/53/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f9197a",
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "Inicia Carga"
                            }
                        },
                        "mode": "lines",
                        "name": "Inicia<br>Carga",
                        "type": "bar",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:cde9d1",
                        "xaxis": "x",
                        "marker": {
                            "line": {
                                "color": "rgb(126, 219, 105)",
                                "width": 2
                            },
                            "color": "rgb(126, 219, 105)"
                        },
                        "hoverinfo": "name",
                        "showlegend": false,
                        "orientation": "v"
                    },
                    {
                        "uid": "94a2a2",
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "Inicia Registro"
                            }
                        },
                        "mode": "markers",
                        "name": "Inicia<br>Registro",
                        "type": "bar",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:d5a07e",
                        "marker": {
                            "line": {
                                "color": "rgb(231, 62, 26)",
                                "width": 2
                            },
                            "color": "rgb(231, 62, 26)"
                        },
                        "hoverinfo": "name",
                        "showlegend": false,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(60, 134, 205)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "LLUVIA"
                            }
                        },
                        "mode": "lines",
                        "name": "Lluvia",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:77dfb9",
                        "yaxis": "y3",
                        "hoverinfo": "y+name",
                        "showlegend": true,
                        "legendgroup": 1
                    },
                    {
                        "line": {
                            "color": "rgb(204, 0, 0)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "ZONA BAJA INUNDACIONES"
                            }
                        },
                        "mode": "lines",
                        "name": "ZONA BAJA DE INUNDACIONES<br>",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:3a7142",
                        "yaxis": "y2",
                        "hoverinfo": "name",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(204, 0, 0)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "HURACANES"
                            }
                        },
                        "mode": "lines",
                        "name": "HURACANES",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:d82e94",
                        "yaxis": "y2",
                        "hoverinfo": "name",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(204, 0, 0)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "ZAFRA"
                            }
                        },
                        "mode": "lines",
                        "name": "ZAFRA<br>",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:9b577f",
                        "yaxis": "y2",
                        "hoverinfo": "name",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(217, 145, 61)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "PIÑA"
                            }
                        },
                        "mode": "lines",
                        "name": "PIÑA",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:2f6ada",
                        "yaxis": "y2",
                        "hoverinfo": "name",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(225, 220, 23)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "CALOR"
                            }
                        },
                        "mode": "lines",
                        "name": "Calor",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:758186",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(225, 220, 23)",
                            "maxdisplayed": 0
                        },
                        "hoverinfo": "y+name",
                        "showlegend": true,
                        "stackgroup": "",
                        "legendgroup": 1
                    },
                    {
                        "line": {
                            "color": "rgb(50, 80, 204)",
                            "width": 6
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "S"
                            }
                        },
                        "mode": "lines",
                        "name": "Proyección",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:e04451",
                        "stackgroup": null,
                        "legendgroup": 2
                    },
                    {
                        "line": {
                            "width": 20
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "Punto_azul"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:d2eb29",
                        "marker": {
                            "size": 20,
                            "color": "rgb(50, 80, 204)"
                        },
                        "hoverinfo": "x+y",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(50, 209, 17)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "Real_Acumulado"
                            }
                        },
                        "mode": "lines",
                        "name": "Avance<br>Real",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:ade5bd"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "Punto_Verde"
                            }
                        },
                        "mode": "markers",
                        "name": "traceeee",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:f7e4bd",
                        "marker": {
                            "size": 20,
                            "color": "rgb(50, 209, 17)"
                        },
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "AE"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:8c2368",
                        "marker": {
                            "size": 20,
                            "color": "rgb(255, 255, 255)"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "dash": "dash"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fecha",
                                "y": "linea_punteada_blanca"
                            }
                        },
                        "mode": "lines",
                        "name": "Proy.<br>Perforación 2",
                        "type": "scatter",
                        "xsrc": "AlejandroBrena:52:b72243",
                        "ysrc": "AlejandroBrena:52:b3b696",
                        "marker": {
                            "color": "rgb(255, 255, 255)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 30
                        },
                        "text": "Proyección general de Perforación."
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "dtick": 10,
                        "range": [
                            0,
                            343.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "FECHA"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "tickson": "labels",
                        "showgrid": false,
                        "tickfont": {
                            "size": 20
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "tickangle": 45,
                        "showspikes": false,
                        "tickprefix": "",
                        "showticklabels": true,
                        "showtickprefix": "none"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -10,
                            81000
                        ],
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Pozos"
                        },
                        "domain": [
                            0,
                            0.625
                        ],
                        "showgrid": true,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": false,
                        "showspikes": false,
                        "exponentformat": "none"
                    },
                    "bargap": 0.9,
                    "legend": {
                        "x": 1.0203931269039967,
                        "y": 0.8158930964960912,
                        "font": {
                            "size": 20
                        }
                    },
                    "margin": {
                        "b": 50,
                        "r": 100,
                        "t": 80
                    },
                    "yaxis2": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            3.4166666666666665,
                            5.083333333333333
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "RUTA<br>CRÍTICA"
                        },
                        "anchor": "x",
                        "domain": [
                            0.625,
                            0.875
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": false,
                        "showspikes": true,
                        "showticklabels": false
                    },
                    "yaxis3": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -5.84813888888889,
                            111.0446388888889
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Precipitación<br>(mm)"
                        },
                        "domain": [
                            0.875,
                            1
                        ],
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": true,
                        "overlaying": false
                    },
                    "yaxis4": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            20,
                            45
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Temperatura<br>(°C)"
                        },
                        "showgrid": false,
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": false,
                        "overlaying": "y3",
                        "showticklabels": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hovermode": "closest",
                    "hoverlabel": {
                        "font": {
                            "size": 20
                        }
                    },
                    "annotations": [
                        {
                            "x": 11.674144282425168,
                            "y": 3.7364937861808585,
                            "font": {
                                "size": 20
                            },
                            "text": "PIÑA",
                            "yref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 129.27495011511894,
                            "y": 5.14361804831167,
                            "font": {
                                "size": 20
                            },
                            "text": "ZONA BAJA DE INUNDACIONES",
                            "yref": "y2",
                            "ayref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 130.45607060629317,
                            "y": 4.706704730361311,
                            "font": {
                                "size": 20
                            },
                            "text": "HURACANES",
                            "yref": "y2",
                            "ayref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 85.5600460475825,
                            "y": 3.7064846794361404,
                            "font": {
                                "size": 20
                            },
                            "text": "PIÑA",
                            "yref": "y2",
                            "ayref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 260.7884521000472,
                            "y": 4.227230359393325,
                            "font": {
                                "size": 20
                            },
                            "text": "ZAFRA<br>",
                            "yref": "y2",
                            "ayref": "y2",
                            "showarrow": false
                        },
                        {
                            "x": 22.143775901765157,
                            "y": 4.1804358469685585,
                            "font": {
                                "size": 20
                            },
                            "text": "ZAFRA",
                            "yref": "y2",
                            "ayref": "y2",
                            "showarrow": false
                        }
                    ],
                    "bargroupgap": 0
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AlejandroBrena",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "Estadístico Jr.",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-29 22:44:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AlejandroBrena",
                "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-29T06:08:37.520466Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pidotcom/38.embed",
            "fid": "pidotcom:38",
            "filename": "SOGIF",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pidotcom:38/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pidotcom:38/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pidotcom:38/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pidotcom:38/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pidotcom:38",
                "plots": "https://api.plotly.com/v2/plots/pidotcom:38",
                "parent": "https://api.plotly.com/v2/folders/home?user=pidotcom"
            },
            "owner": "pidotcom",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 23048,
            "web_url": "https://chart-studio.plotly.com/~pidotcom/38/",
            "world_readable": true,
            "date_modified": "2025-06-26T05:44:14.084Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pidotcom/38/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "rgb(52, 25, 37)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Date",
                                "y": "Cumulative Return"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Cumulative Return",
                        "type": "scatter",
                        "xsrc": "pidotcom:37:d02e49",
                        "ysrc": "pidotcom:37:c6379d",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(151, 77, 108)"
                        },
                        "visible": true,
                        "fillcolor": "rgba(151, 77, 108, 0.8)",
                        "cliponaxis": true,
                        "stackgroup": "",
                        "connectgaps": false,
                        "hovertemplate": "<b>%{y:.4f}</b>"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(207, 130, 19)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Date",
                                "y": "Unit Price",
                                "marker": {
                                    "size": "Unit Price"
                                }
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Issue Price",
                        "type": "scatter",
                        "xsrc": "pidotcom:37:d02e49",
                        "ysrc": "pidotcom:37:bcf37e",
                        "marker": {
                            "line": {
                                "color": "rgb(118, 75, 13)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Unit Price"
                                }
                            },
                            "size": 6,
                            "color": "rgb(242, 175, 48)",
                            "sizeref": null,
                            "sizemode": "area"
                        },
                        "visible": true,
                        "fillcolor": "rgba(240, 152, 24, 0.8)",
                        "hoverinfo": "x+y+name",
                        "stackgroup": null,
                        "hovertemplate": "%{y:.4f}"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(5, 32, 49)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Date",
                                "y": "Redemption Price"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Redemption Price",
                        "type": "scatter",
                        "xsrc": "pidotcom:37:d02e49",
                        "ysrc": "pidotcom:37:352a31",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 1
                            },
                            "color": "rgb(9, 67, 106)",
                            "symbol": "circle",
                            "opacity": 1
                        },
                        "visible": true,
                        "fillcolor": "rgba(9, 67, 106, 0.8)",
                        "stackgroup": "",
                        "hovertemplate": "%{y:.4f}"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "side": "bottom",
                        "type": "date",
                        "dtick": "M3",
                        "range": [
                            "2023-09-30 01:01:11.5361",
                            "2025-05-31 "
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<br>"
                        },
                        "nticks": 0,
                        "showline": false,
                        "tickmode": "auto",
                        "autorange": false,
                        "fixedrange": true,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                "2023-09-01",
                                "2024-03-01"
                            ],
                            "yaxis": {},
                            "yaxis2": {},
                            "yaxis3": {},
                            "visible": false,
                            "autorange": true,
                            "thickness": 0
                        },
                        "rangeselector": {
                            "visible": false
                        }
                    },
                    "yaxis": {
                        "type": "log",
                        "dtick": 0.05,
                        "range": [
                            -0.03908329742024161,
                            0.0433138640637252
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "text": "<br>"
                        },
                        "nticks": 3,
                        "tickmode": "auto",
                        "autorange": true,
                        "automargin": true,
                        "fixedrange": true,
                        "showspikes": false,
                        "tickformat": ".4f",
                        "tickprefix": "$",
                        "ticksuffix": "",
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "legend": {
                        "x": 0.04164444849714781,
                        "y": 0.9352861685599371,
                        "title": {
                            "text": "<b>Click legend to hide/show a line</b>"
                        },
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0,
                        "pad": 0
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": true,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pidotcom",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-07 00:19:41",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pidotcom",
                "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-29T05:54:57.476430Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/326.embed",
            "fid": "nccurer:326",
            "filename": "aprA_2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/326/9_MP7HQVJT5TV76K1AMPYTA0PT6DIC3G.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/326/2_QLBXK9Z22JR3JKYYKZZQZLFYZDA9GD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/326/8_T01JQ3DWZ14TIH2AY2JE6FM9SVSNWD.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/326/9_MP7HQVJT5TV76K1AMPYTA0PT6DIC3G.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:326",
                "plots": "https://api.plotly.com/v2/plots/nccurer:326",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 20,
            "web_url": "https://chart-studio.plotly.com/~nccurer/326/",
            "world_readable": true,
            "date_modified": "2024-06-07T02:35:21.922Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/326/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "台北車站",
                        "type": "scatter",
                        "xsrc": "nccurer:325:0a610a",
                        "ysrc": "nccurer:325:eb6757",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:325:3d5a6d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:325:19dcb7"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "三重",
                        "type": "scatter",
                        "xsrc": "nccurer:325:f8a1d7",
                        "ysrc": "nccurer:325:d472dd",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:325:ac3bf5",
                        "visible": true,
                        "hoverinfosrc": "nccurer:325:cb9528"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "新北產業園區",
                        "type": "scatter",
                        "xsrc": "nccurer:325:a656da",
                        "ysrc": "nccurer:325:863812",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:325:fe0827",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:325:68124c"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines+markers",
                        "name": "泰山貴和",
                        "type": "scatter",
                        "xsrc": "nccurer:325:00c88a",
                        "ysrc": "nccurer:325:8d3045",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:325:c3adbf",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:325:949e7e"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines+markers",
                        "name": "體育大學",
                        "text": "42097 *筆數少於12",
                        "type": "scatter",
                        "xsrc": "nccurer:325:8e82b9",
                        "ysrc": "nccurer:325:96100b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "visible": "legendonly",
                        "hoverinfo": "text+name"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "長庚醫院",
                        "type": "scatter",
                        "xsrc": "nccurer:325:05a4df",
                        "ysrc": "nccurer:325:6904f1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:325:06e904",
                        "visible": true,
                        "hoverinfosrc": "nccurer:325:ac01f6"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines+markers",
                        "name": "領航",
                        "text": "26390",
                        "type": "scatter",
                        "xsrc": "nccurer:325:20d1ce",
                        "ysrc": "nccurer:325:4f9d43",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "visible": "legendonly",
                        "hoverinfo": "text+name"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "高鐵桃園站",
                        "type": "scatter",
                        "xsrc": "nccurer:325:20a198",
                        "ysrc": "nccurer:325:26d74d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:325:f36862",
                        "visible": true,
                        "hoverinfosrc": "nccurer:325:9e722e"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines",
                        "name": "環北",
                        "type": "scatter",
                        "xsrc": "nccurer:325:1fe8c3",
                        "ysrc": "nccurer:325:c5dea6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "textsrc": "nccurer:325:4656f9",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:325:ba4c40"
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>機場線各捷運站周邊的公寓租金變化</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "categoryarray": [
                            "2019",
                            "2020",
                            "2021",
                            "2022",
                            "2023"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>每坪租金中位數 (元)</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "images": [
                        {
                            "x": 0.5,
                            "y": 0.5,
                            "col": 1,
                            "row": 1,
                            "xref": "x domain",
                            "yref": "y domain",
                            "layer": "below",
                            "sizex": 0.5,
                            "sizey": 0.5,
                            "source": "https://i.ibb.co/Lt28WxF/logo.jpg",
                            "opacity": 0.05,
                            "xanchor": "center",
                            "yanchor": "middle"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "x",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-02-17 05:11:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer",
                "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-29T05:54:53.763816Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/324.embed",
            "fid": "nccurer:324",
            "filename": "aprY_2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/324/9_Q39MIN7XQKYBMDQ4891G38574XACBT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/324/2_FFACW4FKWQ1NWAYK20UKSVTJ0IULPA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/324/8_MHHHIBS88ZNFIC78Q0REZYUZZ6PVR2.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/324/9_Q39MIN7XQKYBMDQ4891G38574XACBT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:324",
                "plots": "https://api.plotly.com/v2/plots/nccurer:324",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 20,
            "web_url": "https://chart-studio.plotly.com/~nccurer/324/",
            "world_readable": true,
            "date_modified": "2024-06-07T02:35:18.054Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/324/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "大坪林",
                        "type": "scatter",
                        "xsrc": "nccurer:323:16a851",
                        "ysrc": "nccurer:323:f4aadb",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:323:0c9d87",
                        "visible": true,
                        "hoverinfosrc": "nccurer:323:7a65fe"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "秀朗橋",
                        "type": "scatter",
                        "xsrc": "nccurer:323:504459",
                        "ysrc": "nccurer:323:dbef5d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:323:ef5a62",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:4bad91"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "景平",
                        "type": "scatter",
                        "xsrc": "nccurer:323:3da3c1",
                        "ysrc": "nccurer:323:3b41b4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:323:235d99",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:90096c"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "景安",
                        "type": "scatter",
                        "xsrc": "nccurer:323:ac8248",
                        "ysrc": "nccurer:323:e6648a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:323:9d93ed",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:6f3845"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "中和",
                        "type": "scatter",
                        "xsrc": "nccurer:323:1fe11a",
                        "ysrc": "nccurer:323:735c9b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:323:af9f08",
                        "visible": true,
                        "hoverinfosrc": "nccurer:323:1f0f56"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines+markers",
                        "name": "橋和",
                        "type": "scatter",
                        "xsrc": "nccurer:323:e185e9",
                        "ysrc": "nccurer:323:cfecf9",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:323:020008",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:9a77c5"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "中原",
                        "type": "scatter",
                        "xsrc": "nccurer:323:a94e3e",
                        "ysrc": "nccurer:323:1a27d8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:323:d8850c",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:aa2179"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "板新",
                        "type": "scatter",
                        "xsrc": "nccurer:323:18dd24",
                        "ysrc": "nccurer:323:034893",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:323:e8bf68",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:241c85"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines",
                        "name": "板橋",
                        "type": "scatter",
                        "xsrc": "nccurer:323:6b8e89",
                        "ysrc": "nccurer:323:fef8cb",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "textsrc": "nccurer:323:b36fdf",
                        "visible": true,
                        "hoverinfosrc": "nccurer:323:622bf9"
                    },
                    {
                        "line": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "mode": "lines",
                        "name": "新埔民生",
                        "type": "scatter",
                        "xsrc": "nccurer:323:b24635",
                        "ysrc": "nccurer:323:cb952e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(23,190,207,1)"
                            },
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_x": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_y": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "textsrc": "nccurer:323:4c26ca",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:257d81"
                    },
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "頭前庄",
                        "type": "scatter",
                        "xsrc": "nccurer:323:2c7715",
                        "ysrc": "nccurer:323:165538",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:323:800572",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:b57cc1"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "幸福",
                        "type": "scatter",
                        "xsrc": "nccurer:323:b849ee",
                        "ysrc": "nccurer:323:3ea84a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:323:59a736",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:9ade22"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "新北產業園區",
                        "type": "scatter",
                        "xsrc": "nccurer:323:90c681",
                        "ysrc": "nccurer:323:5b69f1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:323:fe6491",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:323:86ffa8"
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>環狀線各捷運站周邊的公寓租金變化</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "categoryarray": [
                            "2019",
                            "2020",
                            "2021",
                            "2022",
                            "2023"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>每坪租金中位數 (元)</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "images": [
                        {
                            "x": 0.5,
                            "y": 0.5,
                            "col": 1,
                            "row": 1,
                            "xref": "x domain",
                            "yref": "y domain",
                            "layer": "below",
                            "sizex": 0.5,
                            "sizey": 0.5,
                            "source": "https://i.ibb.co/Lt28WxF/logo.jpg",
                            "opacity": 0.05,
                            "xanchor": "center",
                            "yanchor": "middle"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "x",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-02-17 05:11:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer",
                "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-29T05:54:50.031255Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/322.embed",
            "fid": "nccurer:322",
            "filename": "aprR_2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/322/9_D6377MY1MYQ062NV8LORAFA19H8MW7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/322/2_0E18KWGWD7UWZVEQPCBR9C5LTCBO0E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/322/8_14MDU3FD1C6VK50I5RYAPUCW3B9HY6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/322/9_D6377MY1MYQ062NV8LORAFA19H8MW7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:322",
                "plots": "https://api.plotly.com/v2/plots/nccurer:322",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 19,
            "web_url": "https://chart-studio.plotly.com/~nccurer/322/",
            "world_readable": true,
            "date_modified": "2024-06-07T02:35:13.887Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/322/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines+markers",
                        "name": "象山",
                        "text": "17131 *筆數少於12",
                        "type": "scatter",
                        "xsrc": "nccurer:321:61cc65",
                        "ysrc": "nccurer:321:442da4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "visible": "legendonly",
                        "hoverinfo": "text+name"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "台北101/世貿",
                        "type": "scatter",
                        "xsrc": "nccurer:321:ef2fb3",
                        "ysrc": "nccurer:321:172792",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:321:b5ccdb",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:2fe7b3"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "信義安和",
                        "type": "scatter",
                        "xsrc": "nccurer:321:92dea5",
                        "ysrc": "nccurer:321:e6d3e2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:321:bc9ac4",
                        "visible": true,
                        "hoverinfosrc": "nccurer:321:3d1005"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "大安",
                        "type": "scatter",
                        "xsrc": "nccurer:321:fb4c94",
                        "ysrc": "nccurer:321:fd7e3e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:321:43907d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:76f7cb"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "大安森林公園",
                        "type": "scatter",
                        "xsrc": "nccurer:321:c8b81d",
                        "ysrc": "nccurer:321:cad0f8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:321:3d72ff",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:8653bb"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "東門",
                        "type": "scatter",
                        "xsrc": "nccurer:321:035342",
                        "ysrc": "nccurer:321:e90dac",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:321:c3528d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:061dd5"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "中正紀念堂",
                        "type": "scatter",
                        "xsrc": "nccurer:321:d64952",
                        "ysrc": "nccurer:321:3a4594",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:321:d086a4",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:979177"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "台北車站",
                        "type": "scatter",
                        "xsrc": "nccurer:321:459af4",
                        "ysrc": "nccurer:321:e6badd",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:321:a1f933",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:8a9c0d"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines",
                        "name": "中山",
                        "type": "scatter",
                        "xsrc": "nccurer:321:c6f5a7",
                        "ysrc": "nccurer:321:55f6d8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "textsrc": "nccurer:321:aabe2e",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:42909e"
                    },
                    {
                        "line": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "mode": "lines",
                        "name": "雙連",
                        "type": "scatter",
                        "xsrc": "nccurer:321:e5c00e",
                        "ysrc": "nccurer:321:dfe29e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(23,190,207,1)"
                            },
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_x": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_y": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "textsrc": "nccurer:321:1a93e2",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:d493c4"
                    },
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "民權西路",
                        "type": "scatter",
                        "xsrc": "nccurer:321:5c5e7d",
                        "ysrc": "nccurer:321:9e5242",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:321:fb88d9",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:91d7a0"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "圓山",
                        "type": "scatter",
                        "xsrc": "nccurer:321:b69f16",
                        "ysrc": "nccurer:321:117640",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:321:a65615",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:c4d11f"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "劍潭",
                        "type": "scatter",
                        "xsrc": "nccurer:321:53ead0",
                        "ysrc": "nccurer:321:22185c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:321:14c5d0",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:a82262"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "士林",
                        "type": "scatter",
                        "xsrc": "nccurer:321:68db56",
                        "ysrc": "nccurer:321:290d55",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:321:63f665",
                        "visible": true,
                        "hoverinfosrc": "nccurer:321:62359b"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "芝山",
                        "type": "scatter",
                        "xsrc": "nccurer:321:15e981",
                        "ysrc": "nccurer:321:3ae0c3",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:321:d0e164",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:d298fe"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "明德",
                        "type": "scatter",
                        "xsrc": "nccurer:321:e85a3b",
                        "ysrc": "nccurer:321:ca02b6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:321:537262",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:395b7f"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "石牌",
                        "type": "scatter",
                        "xsrc": "nccurer:321:939a60",
                        "ysrc": "nccurer:321:97b474",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:321:9ac4ad",
                        "visible": true,
                        "hoverinfosrc": "nccurer:321:8a032a"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "唭哩岸",
                        "type": "scatter",
                        "xsrc": "nccurer:321:2bdbfd",
                        "ysrc": "nccurer:321:29b414",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:321:a396e5",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:26b619"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines",
                        "name": "奇岩",
                        "type": "scatter",
                        "xsrc": "nccurer:321:0ffeab",
                        "ysrc": "nccurer:321:a6b415",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "textsrc": "nccurer:321:5b340b",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:4d1776"
                    },
                    {
                        "line": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "mode": "lines",
                        "name": "北投",
                        "type": "scatter",
                        "xsrc": "nccurer:321:ae4cf5",
                        "ysrc": "nccurer:321:74abea",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(23,190,207,1)"
                            },
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_x": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_y": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "textsrc": "nccurer:321:ca7a02",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:794de9"
                    },
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "新北投",
                        "type": "scatter",
                        "xsrc": "nccurer:321:ff405c",
                        "ysrc": "nccurer:321:8bbf6b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:321:ec481c",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:af44e4"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "復興崗",
                        "type": "scatter",
                        "xsrc": "nccurer:321:04146a",
                        "ysrc": "nccurer:321:8c80c1",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:321:b5209b",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:29e94f"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines+markers",
                        "name": "忠義",
                        "type": "scatter",
                        "xsrc": "nccurer:321:f1af6b",
                        "ysrc": "nccurer:321:cdac28",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:321:f28a59",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:1c5f26"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "關渡",
                        "type": "scatter",
                        "xsrc": "nccurer:321:e23e9e",
                        "ysrc": "nccurer:321:4fb23c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:321:cc4a47",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:d6914c"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "竹圍",
                        "type": "scatter",
                        "xsrc": "nccurer:321:02ab40",
                        "ysrc": "nccurer:321:f8ea2b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:321:2d4e35",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:cc4665"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines+markers",
                        "name": "紅樹林",
                        "text": "22477 *筆數少於12",
                        "type": "scatter",
                        "xsrc": "nccurer:321:a51f59",
                        "ysrc": "nccurer:321:0150a4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "visible": "legendonly",
                        "hoverinfo": "text+name"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "淡水",
                        "type": "scatter",
                        "xsrc": "nccurer:321:410520",
                        "ysrc": "nccurer:321:a76690",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:321:2484a9",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:321:4a3832"
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>淡水信義線各捷運站周邊的公寓租金變化</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "categoryarray": [
                            "2019",
                            "2020",
                            "2021",
                            "2022",
                            "2023"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>每坪租金中位數 (元)</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "images": [
                        {
                            "x": 0.5,
                            "y": 0.5,
                            "col": 1,
                            "row": 1,
                            "xref": "x domain",
                            "yref": "y domain",
                            "layer": "below",
                            "sizex": 0.5,
                            "sizey": 0.5,
                            "source": "https://i.ibb.co/Lt28WxF/logo.jpg",
                            "opacity": 0.05,
                            "xanchor": "center",
                            "yanchor": "middle"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "x",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-02-17 05:11:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer",
                "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-29T05:54:45.717616Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/320.embed",
            "fid": "nccurer:320",
            "filename": "aprO_2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/320/9_JNOS99J64W92IO8D3EHMLGHUUB1UIS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/320/2_KVLVIG1KFA0CE9HE8XQ3KF05ZQE0P3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/320/8_38KWB4U9LCW6UAXEQE99H3WP89FQJR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/320/9_JNOS99J64W92IO8D3EHMLGHUUB1UIS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:320",
                "plots": "https://api.plotly.com/v2/plots/nccurer:320",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 19,
            "web_url": "https://chart-studio.plotly.com/~nccurer/320/",
            "world_readable": true,
            "date_modified": "2024-06-07T02:35:08.706Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/320/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "南勢角",
                        "type": "scatter",
                        "xsrc": "nccurer:319:18c219",
                        "ysrc": "nccurer:319:70d70f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:319:0e1667",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:d297f7"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "景安",
                        "type": "scatter",
                        "xsrc": "nccurer:319:1f35bb",
                        "ysrc": "nccurer:319:ce34d6",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:319:262f70",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:d90752"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "永安市場",
                        "type": "scatter",
                        "xsrc": "nccurer:319:05b9e1",
                        "ysrc": "nccurer:319:62c189",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:319:f4c6ed",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:b32f97"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "頂溪",
                        "type": "scatter",
                        "xsrc": "nccurer:319:5b1825",
                        "ysrc": "nccurer:319:4b83ad",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:319:9c927d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:95605b"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "古亭",
                        "type": "scatter",
                        "xsrc": "nccurer:319:1f4194",
                        "ysrc": "nccurer:319:9249a2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:319:364e5b",
                        "visible": true,
                        "hoverinfosrc": "nccurer:319:38c1ab"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "東門",
                        "type": "scatter",
                        "xsrc": "nccurer:319:88d70c",
                        "ysrc": "nccurer:319:58ea4e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:319:a44e75",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:8f0dce"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "忠孝新生",
                        "type": "scatter",
                        "xsrc": "nccurer:319:f2ff35",
                        "ysrc": "nccurer:319:1dea29",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:319:437334",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:475b1e"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "松江南京",
                        "type": "scatter",
                        "xsrc": "nccurer:319:7fc5d5",
                        "ysrc": "nccurer:319:5a80cd",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:319:7b1b8d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:f928a2"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines",
                        "name": "行天宮",
                        "type": "scatter",
                        "xsrc": "nccurer:319:fd01ac",
                        "ysrc": "nccurer:319:bbfc21",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "textsrc": "nccurer:319:11b9a2",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:cdee45"
                    },
                    {
                        "line": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "mode": "lines",
                        "name": "中山國小",
                        "type": "scatter",
                        "xsrc": "nccurer:319:41d1d9",
                        "ysrc": "nccurer:319:9be935",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(23,190,207,1)"
                            },
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_x": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_y": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "textsrc": "nccurer:319:1a66e1",
                        "visible": true,
                        "hoverinfosrc": "nccurer:319:117447"
                    },
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "民權西路",
                        "type": "scatter",
                        "xsrc": "nccurer:319:80e582",
                        "ysrc": "nccurer:319:00377d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:319:3b5333",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:f05222"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "大橋頭",
                        "type": "scatter",
                        "xsrc": "nccurer:319:c5a911",
                        "ysrc": "nccurer:319:1d31ae",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:319:8464cc",
                        "visible": true,
                        "hoverinfosrc": "nccurer:319:e01634"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "台北橋",
                        "type": "scatter",
                        "xsrc": "nccurer:319:3f1f10",
                        "ysrc": "nccurer:319:02b775",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:319:01f9f5",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:3c6ffd"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "菜寮",
                        "type": "scatter",
                        "xsrc": "nccurer:319:f7cda0",
                        "ysrc": "nccurer:319:8523f5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:319:ee90b6",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:25f605"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "三重",
                        "type": "scatter",
                        "xsrc": "nccurer:319:b03597",
                        "ysrc": "nccurer:319:f88605",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:319:e17e8d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:cf6933"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "先嗇宮",
                        "type": "scatter",
                        "xsrc": "nccurer:319:f7d48a",
                        "ysrc": "nccurer:319:a78c80",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:319:ee833d",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:c172d8"
                    },
                    {
                        "line": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "mode": "lines",
                        "name": "頭前庄",
                        "type": "scatter",
                        "xsrc": "nccurer:319:0576e8",
                        "ysrc": "nccurer:319:14c107",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(227,119,194,1)"
                            },
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_x": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "error_y": {
                            "color": "rgba(227,119,194,1)"
                        },
                        "textsrc": "nccurer:319:b8eadc",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:9c67c9"
                    },
                    {
                        "line": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "mode": "lines",
                        "name": "新莊",
                        "type": "scatter",
                        "xsrc": "nccurer:319:b19ac3",
                        "ysrc": "nccurer:319:6bdc39",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(127,127,127,1)"
                            },
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_x": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "error_y": {
                            "color": "rgba(127,127,127,1)"
                        },
                        "textsrc": "nccurer:319:bb4628",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:a4b5bc"
                    },
                    {
                        "line": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "mode": "lines+markers",
                        "name": "輔大",
                        "text": "16343 *筆數少於12",
                        "type": "scatter",
                        "xsrc": "nccurer:319:671f91",
                        "ysrc": "nccurer:319:05e45a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(188,189,34,1)"
                            },
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_x": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "error_y": {
                            "color": "rgba(188,189,34,1)"
                        },
                        "visible": "legendonly",
                        "hoverinfo": "text+name"
                    },
                    {
                        "line": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "mode": "lines",
                        "name": "丹鳳",
                        "type": "scatter",
                        "xsrc": "nccurer:319:4155dc",
                        "ysrc": "nccurer:319:fc739a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(23,190,207,1)"
                            },
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_x": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "error_y": {
                            "color": "rgba(23,190,207,1)"
                        },
                        "textsrc": "nccurer:319:cef461",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:7ed697"
                    },
                    {
                        "line": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "mode": "lines",
                        "name": "迴龍",
                        "type": "scatter",
                        "xsrc": "nccurer:319:ddd44c",
                        "ysrc": "nccurer:319:4d8714",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "textsrc": "nccurer:319:fa615e",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:d33ca2"
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "mode": "lines",
                        "name": "三重國小",
                        "type": "scatter",
                        "xsrc": "nccurer:319:726206",
                        "ysrc": "nccurer:319:565572",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,127,14,1)"
                            },
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,127,14,1)"
                        },
                        "textsrc": "nccurer:319:354785",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:07bf19"
                    },
                    {
                        "line": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "mode": "lines",
                        "name": "三和國中",
                        "type": "scatter",
                        "xsrc": "nccurer:319:1005be",
                        "ysrc": "nccurer:319:0557b8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(44,160,44,1)"
                            },
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_x": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "error_y": {
                            "color": "rgba(44,160,44,1)"
                        },
                        "textsrc": "nccurer:319:e44ffe",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:1df647"
                    },
                    {
                        "line": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "mode": "lines",
                        "name": "徐匯中學",
                        "type": "scatter",
                        "xsrc": "nccurer:319:992e2c",
                        "ysrc": "nccurer:319:d00cba",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(214,39,40,1)"
                            },
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_x": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "error_y": {
                            "color": "rgba(214,39,40,1)"
                        },
                        "textsrc": "nccurer:319:7ccd9c",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:b6a259"
                    },
                    {
                        "line": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "mode": "lines",
                        "name": "三民高中",
                        "type": "scatter",
                        "xsrc": "nccurer:319:1ed121",
                        "ysrc": "nccurer:319:cc0bdb",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(148,103,189,1)"
                            },
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_x": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "error_y": {
                            "color": "rgba(148,103,189,1)"
                        },
                        "textsrc": "nccurer:319:5dcdcc",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:07b851"
                    },
                    {
                        "line": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "mode": "lines",
                        "name": "蘆洲",
                        "type": "scatter",
                        "xsrc": "nccurer:319:48b807",
                        "ysrc": "nccurer:319:2639b7",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(140,86,75,1)"
                            },
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_x": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "error_y": {
                            "color": "rgba(140,86,75,1)"
                        },
                        "textsrc": "nccurer:319:a91be0",
                        "visible": "legendonly",
                        "hoverinfosrc": "nccurer:319:442f8a"
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>中和新蘆線各捷運站周邊的公寓租金變化</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "categoryarray": [
                            "2019",
                            "2020",
                            "2021",
                            "2022",
                            "2023"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>每坪租金中位數 (元)</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "images": [
                        {
                            "x": 0.5,
                            "y": 0.5,
                            "col": 1,
                            "row": 1,
                            "xref": "x domain",
                            "yref": "y domain",
                            "layer": "below",
                            "sizex": 0.5,
                            "sizey": 0.5,
                            "source": "https://i.ibb.co/Lt28WxF/logo.jpg",
                            "opacity": 0.05,
                            "xanchor": "center",
                            "yanchor": "middle"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "x",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/59.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-02-17 05:11:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}