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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI1KzA2JTNBMzIlM0E0My4xMjYwMDclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNSswNiUzQTMzJTNBMTQuMjY3MTI5JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-25T06:33:14.267129Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/292.embed",
            "fid": "nccurer:292",
            "filename": "hs_xinyi",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/292/9_QP4LBR7YG9TLC0QGDLD3E75ETMAZHZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/292/2_M3STNZGDDQDDEHI0DICB5SBRAWH9CW.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:292/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/292/9_QP4LBR7YG9TLC0QGDLD3E75ETMAZHZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:292",
                "plots": "https://api.plotly.com/v2/plots/nccurer:292",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 742,
            "web_url": "https://chart-studio.plotly.com/~nccurer/292/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:51:07.317Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/292/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:291:1818b1",
                        "ysrc": "nccurer:291:071765",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:291:65fc30"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:291:2dfb06",
                        "ysrc": "nccurer:291:9b983f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:291:645dbf",
                        "ysrc": "nccurer:291:8bab3c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:291:330c8e",
                        "ysrc": "nccurer:291:4f4971",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:291:c9fbc4",
                        "ysrc": "nccurer:291:03faca",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>信義區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:33:09.856114Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/290.embed",
            "fid": "nccurer:290",
            "filename": "hs_daan",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/290/9_FY40NA99B68IMGR5SLI2Q9JUERL7ZC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/290/2_R9RFR4CH3AXP60MNU7SYD826OPO011.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:290/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/290/9_FY40NA99B68IMGR5SLI2Q9JUERL7ZC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:290",
                "plots": "https://api.plotly.com/v2/plots/nccurer:290",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 747,
            "web_url": "https://chart-studio.plotly.com/~nccurer/290/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:51:03.522Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/290/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:289:0786db",
                        "ysrc": "nccurer:289:dc36e4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:289:d1d953"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:289:f682ee",
                        "ysrc": "nccurer:289:1551b9",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:289:97ac4a",
                        "ysrc": "nccurer:289:f75602",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:289:e6374d",
                        "ysrc": "nccurer:289:e8bf1f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:289:38d27b",
                        "ysrc": "nccurer:289:f95977",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>大安區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:33:06.193298Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/288.embed",
            "fid": "nccurer:288",
            "filename": "hs_zhongzheng",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/288/9_LRRGUXUUHYLC6ATDZFUP8FOL1XL5P0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/288/2_KZAFY24879S8S2KDW8VZGH8UDBA82S.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:288/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/288/9_LRRGUXUUHYLC6ATDZFUP8FOL1XL5P0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:288",
                "plots": "https://api.plotly.com/v2/plots/nccurer:288",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 801,
            "web_url": "https://chart-studio.plotly.com/~nccurer/288/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:59.591Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/288/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:287:7a4ce9",
                        "ysrc": "nccurer:287:906ca0",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:287:9287d4"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:287:cca5be",
                        "ysrc": "nccurer:287:7353db",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:287:55f52f",
                        "ysrc": "nccurer:287:ed9f2a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:287:2c3a29",
                        "ysrc": "nccurer:287:79935f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:287:2a8c58",
                        "ysrc": "nccurer:287:9a3fca",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>中正區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:33:02.692095Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/286.embed",
            "fid": "nccurer:286",
            "filename": "hs_wanhua",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/286/9_EVJGOSXVFCQ4RNL7H3PNI4JXXVT6QO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/286/2_5G65HS6VJ4HHNI5TP6S73R4OZTLAR4.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:286/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/286/9_EVJGOSXVFCQ4RNL7H3PNI4JXXVT6QO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:286",
                "plots": "https://api.plotly.com/v2/plots/nccurer:286",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 737,
            "web_url": "https://chart-studio.plotly.com/~nccurer/286/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:55.835Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/286/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:285:13a6f0",
                        "ysrc": "nccurer:285:ae754d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:285:406bc0"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:285:adc0ce",
                        "ysrc": "nccurer:285:e80c49",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:285:ffb3f7",
                        "ysrc": "nccurer:285:651e36",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:285:6fd5ff",
                        "ysrc": "nccurer:285:dd5686",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:285:da07e8",
                        "ysrc": "nccurer:285:ce840f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>萬華區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:32:59.077129Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/284.embed",
            "fid": "nccurer:284",
            "filename": "hs_neihu",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/284/9_0LJ53G25YPIFTTHDY1PFBRMYZX7Q5Q.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/284/2_ZWVCZH8Z7ZANCZDMSF4E6IB17JLN84.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:284/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/284/9_0LJ53G25YPIFTTHDY1PFBRMYZX7Q5Q.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:284",
                "plots": "https://api.plotly.com/v2/plots/nccurer:284",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 716,
            "web_url": "https://chart-studio.plotly.com/~nccurer/284/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:51.949Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/284/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:283:31f4ec",
                        "ysrc": "nccurer:283:ba043b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:283:d3c8a5"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:283:b31b48",
                        "ysrc": "nccurer:283:715ae5",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:283:c91ce9",
                        "ysrc": "nccurer:283:8d404f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:283:cfd2ca",
                        "ysrc": "nccurer:283:465152",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:283:2f4bbf",
                        "ysrc": "nccurer:283:b8b93a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>內湖區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:32:56.051588Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tiwariaryan1223/7.embed",
            "fid": "tiwariaryan1223:7",
            "filename": "Plot 3 copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tiwariaryan1223/7/9_5R0X0JJGBEWC0SOR59VNQ6SOVPKQ34.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tiwariaryan1223/7/2_ST20485L4D60KGN5NXR837GEHMAWKQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tiwariaryan1223/7/8_CKGRSBRTKZZ518IKEPBZ13TT49KG4L.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tiwariaryan1223/7/9_5R0X0JJGBEWC0SOR59VNQ6SOVPKQ34.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tiwariaryan1223:7",
                "plots": "https://api.plotly.com/v2/plots/tiwariaryan1223:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=tiwariaryan1223"
            },
            "owner": "tiwariaryan1223",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tiwariaryan1223/7/",
            "world_readable": true,
            "date_modified": "2024-04-25T06:47:34.178Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tiwariaryan1223/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "tiwariaryan1223:6:a8962a",
                        "ysrc": "tiwariaryan1223:6:0e8652"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Temperature v/s Time curve for Insulin Cartridge"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            2859
                        ],
                        "title": {
                            "text": "Time (in sec)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            8.7,
                            34.699999999999996
                        ],
                        "title": {
                            "text": "Temperature(in °C)"
                        },
                        "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/~tiwariaryan1223",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-25 06:06:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tiwariaryan1223",
                "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-25T06:32:54.163049Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/282.embed",
            "fid": "nccurer:282",
            "filename": "hs_songshan",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/282/9_HFGLTXGBCXA2M2ZS4S1XLBIS0XK50G.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/282/2_6Z6U8XLVB38QHARAC4X9KBKDORZ36R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/282/8_NJPFH9Y503QEG4NJI68OBHNEZEIE54.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/282/9_HFGLTXGBCXA2M2ZS4S1XLBIS0XK50G.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:282",
                "plots": "https://api.plotly.com/v2/plots/nccurer:282",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 735,
            "web_url": "https://chart-studio.plotly.com/~nccurer/282/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:48.146Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/282/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:281:fa771b",
                        "ysrc": "nccurer:281:0d7653",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:281:c95f8e"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:281:0e1ea5",
                        "ysrc": "nccurer:281:6f8e45",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:281:cb23e3",
                        "ysrc": "nccurer:281:e118a2",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:281:82bcc1",
                        "ysrc": "nccurer:281:8322a4",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:281:a1222d",
                        "ysrc": "nccurer:281:847fa8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>松山區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:32:50.566905Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/280.embed",
            "fid": "nccurer:280",
            "filename": "hs_zhongshan",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/280/9_HF7PIMJ0WGSKEW3BTCNHKXAN0TJAE0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/280/2_IO8JBF5UYN61YCF77Q1VHUCREAV85Y.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:280/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/280/9_HF7PIMJ0WGSKEW3BTCNHKXAN0TJAE0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:280",
                "plots": "https://api.plotly.com/v2/plots/nccurer:280",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 747,
            "web_url": "https://chart-studio.plotly.com/~nccurer/280/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:44.110Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/280/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:279:1f3788",
                        "ysrc": "nccurer:279:45ad2b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:279:dea7c5"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:279:7ed57b",
                        "ysrc": "nccurer:279:e8d271",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:279:99773d",
                        "ysrc": "nccurer:279:29cb99",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:279:a0e076",
                        "ysrc": "nccurer:279:c375ea",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:279:deeb0d",
                        "ysrc": "nccurer:279:af8d91",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>中山區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:32:46.808454Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/278.embed",
            "fid": "nccurer:278",
            "filename": "hs_datong",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/278/9_0F1FMSDMDNOT8WKSAF87YXM5TJPKY2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/278/2_YCWPO26CEQDZDRAY9NS62MWPNGS0BK.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:278/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/278/9_0F1FMSDMDNOT8WKSAF87YXM5TJPKY2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:278",
                "plots": "https://api.plotly.com/v2/plots/nccurer:278",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 752,
            "web_url": "https://chart-studio.plotly.com/~nccurer/278/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:40.285Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/278/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:277:2b5858",
                        "ysrc": "nccurer:277:ed479f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:277:628653"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:277:fccaee",
                        "ysrc": "nccurer:277:7abe94",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:277:bad675",
                        "ysrc": "nccurer:277:5f039c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:277:cafb90",
                        "ysrc": "nccurer:277:2a7285",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:277:9b32ab",
                        "ysrc": "nccurer:277:121ebe",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>大同區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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-25T06:32:43.126007Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer/276.embed",
            "fid": "nccurer:276",
            "filename": "hs_shilin",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer/276/9_36UA9G5AFBA138ITQXDPFEYCLVVYCW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer/276/2_ULOOB112YOWQCGCBLPIHF8V2X1MYRP.png",
                "block-thumb": "https://api.plotly.com/v2/files/nccurer:276/image?image_name=block-thumb",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer/276/9_36UA9G5AFBA138ITQXDPFEYCLVVYCW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer:276",
                "plots": "https://api.plotly.com/v2/plots/nccurer:276",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer"
            },
            "owner": "nccurer",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 721,
            "web_url": "https://chart-studio.plotly.com/~nccurer/276/",
            "world_readable": true,
            "date_modified": "2024-07-11T01:50:36.341Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer/276/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件數量",
                        "type": "bar",
                        "xsrc": "nccurer:275:fa6957",
                        "ysrc": "nccurer:275:921127",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "color": "rgb(32,46,124)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "widthsrc": "nccurer:275:48c763"
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "整層住家",
                        "type": "scatter",
                        "xsrc": "nccurer:275:6385f4",
                        "ysrc": "nccurer:275:bb5872",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(153, 213, 69)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "獨立套房",
                        "type": "scatter",
                        "xsrc": "nccurer:275:7cc0e4",
                        "ysrc": "nccurer:275:9571b0",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(28, 241, 252)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "分租套房",
                        "type": "scatter",
                        "xsrc": "nccurer:275:543064",
                        "ysrc": "nccurer:275:1c9b4e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    },
                    {
                        "line": {
                            "color": "rgb(252, 28, 241)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "雅房",
                        "type": "scatter",
                        "xsrc": "nccurer:275:78893f",
                        "ysrc": "nccurer:275:20d4a8",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "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)"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "y": 0.98,
                        "font": {
                            "size": 20
                        },
                        "text": "<b>士林區租屋熱點租金變化</b>"
                    },
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>年份</b>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "automargin": true,
                        "tickformat": "digit"
                    },
                    "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"
                        }
                    ],
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 40
                    },
                    "yaxis2": {
                        "side": "right",
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "<b>月租金中位數 (元)</b>"
                        },
                        "rangemode": "tozero",
                        "overlaying": "y",
                        "tickformat": "digit"
                    },
                    "dragmode": false,
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "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
            }
        }
    ]
}