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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI0LTA0LTE4KzA3JTNBNDUlM0EzOC4yMTU3ODclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xOCswNyUzQTQ2JTNBMTEuMzEwMDkzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-18T07:46:11.310093Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/87.embed",
            "fid": "nccurer2:87",
            "filename": "zhongzheng_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/87/9_AZPVFRODSWGFRTFX7L7BFEOKGQUC3S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/87/2_EM9S8BPPJAXVWHNNXQ8P1GSXH1MNK2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/87/8_TSC68Z29PFC2AQLHZCW91LQJOES359.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/87/9_AZPVFRODSWGFRTFX7L7BFEOKGQUC3S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:87",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:87",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/87/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:33.631Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/87/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:86:211054",
                        "ysrc": "nccurer2:86:393a2d",
                        "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": "nccurer2:86:a7fc97",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:86:3a9a9d",
                        "ysrc": "nccurer2:86:cf37d5",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:46:07.732722Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/85.embed",
            "fid": "nccurer2:85",
            "filename": "wanhua_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/85/9_BU902PUD1KNMQZ4ZABU4Q8Q1H2AQDZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/85/2_DQS39T6PSR5ARIQZBJZO1RS1BWUY32.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/85/8_ZE4YVXU0R1H8A0XYBWIZW3MNGDCNGF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/85/9_BU902PUD1KNMQZ4ZABU4Q8Q1H2AQDZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:85",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:85",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/85/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:30.220Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/85/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:84:7c5c04",
                        "ysrc": "nccurer2:84:3eaf34",
                        "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": "nccurer2:84:741e9c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:84:a581c9",
                        "ysrc": "nccurer2:84:c32a29",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:46:04.197906Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/83.embed",
            "fid": "nccurer2:83",
            "filename": "neihu_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/83/9_OSUMBVCE5AU9WMXQESHJH0GBJ88LD3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/83/2_S6I4FPRU6NGW41Z96JDVNW3D0N2ZVG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/83/8_DFT5MJPR9YVIK5GLZVDJLB2SF6VM2H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/83/9_OSUMBVCE5AU9WMXQESHJH0GBJ88LD3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:83",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:83",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 9,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/83/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:26.826Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/83/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:82:c6be04",
                        "ysrc": "nccurer2:82:6489c7",
                        "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": "nccurer2:82:460a0a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:82:5f1ca5",
                        "ysrc": "nccurer2:82:dad41a",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:46:00.273479Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/81.embed",
            "fid": "nccurer2:81",
            "filename": "songshan_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/81/9_F2W0V524J6MOLQXVGY5CBNQ9D67J1I.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/81/2_UHGE7BJNDDOM71S53D5GP97SS0MWJG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/81/8_6UGX58KX9ZZOO86QK9XR8IE3KIPTXV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/81/9_F2W0V524J6MOLQXVGY5CBNQ9D67J1I.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:81",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:81",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/81/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:23.418Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/81/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:80:36b24e",
                        "ysrc": "nccurer2:80:404132",
                        "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": "nccurer2:80:1695cf",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:80:123496",
                        "ysrc": "nccurer2:80:4ec6bb",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:55.912062Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/79.embed",
            "fid": "nccurer2:79",
            "filename": "zhongshan_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/79/9_Z02JU02OGLEVL35TB61N3YMF2SO20A.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/79/2_QATKSQ1FKG9PNETD8MVQQ9I1BW88F9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/79/8_5SCJ4JJECB1WTQWMH6TQHFWL8VSZAB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/79/9_Z02JU02OGLEVL35TB61N3YMF2SO20A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:79",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:79",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/79/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:19.739Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/79/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:78:6a4e0a",
                        "ysrc": "nccurer2:78:01863e",
                        "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": "nccurer2:78:1ab2e4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:78:e37fc0",
                        "ysrc": "nccurer2:78:c51893",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:52.347959Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/77.embed",
            "fid": "nccurer2:77",
            "filename": "datong_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/77/9_6FFCAN0VLLF7FSO45TH239BKQY1RTF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/77/2_DSBVQ96A6LJC6VG3KETW03JSU7TP72.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/77/8_W7F1FEACPHG7HPKA0SLG5WC4SS7L9V.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/77/9_6FFCAN0VLLF7FSO45TH239BKQY1RTF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:77",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:77",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/77/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:16.318Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/77/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:76:ea9e52",
                        "ysrc": "nccurer2:76:8fa572",
                        "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": "nccurer2:76:43b161",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:76:f06543",
                        "ysrc": "nccurer2:76:de63ba",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:48.821479Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/75.embed",
            "fid": "nccurer2:75",
            "filename": "shilin_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/75/9_VXR9TLNCNAX241A0L8Z63JPUANOQUT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/75/2_IR9HFTPR8H1Y6H1U34MVYC37PPD6PP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/75/8_BYW44K5EIHYXGGX2TSD8WUKNNOAXS4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/75/9_VXR9TLNCNAX241A0L8Z63JPUANOQUT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:75",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:75",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/75/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:12.963Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/75/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:74:a3eaa0",
                        "ysrc": "nccurer2:74:fdbd6e",
                        "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": "nccurer2:74:3a1ad3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:74:ebdca0",
                        "ysrc": "nccurer2:74:3e55e3",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:45.341557Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/73.embed",
            "fid": "nccurer2:73",
            "filename": "beitou_4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/73/9_0B07U74TEU4KP8BVB6NM3XL48S9ZY9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/73/2_JJTHOWX6FSBE4C175K1IIBIRKMYAZI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/73/8_Z145YO5LPAGC7KWQTLBESMHDVFNCUS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/73/9_0B07U74TEU4KP8BVB6NM3XL48S9ZY9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:73",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:73",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 18,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/73/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:09.591Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/73/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:72:714a34",
                        "ysrc": "nccurer2:72:7e70dd",
                        "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": "nccurer2:72:c8bb0e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:72:a27aad",
                        "ysrc": "nccurer2:72:8b5847",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:41.672801Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/71.embed",
            "fid": "nccurer2:71",
            "filename": "wenshan_3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/71/9_UC8BAJSVPI2B7NGN4CVMUMZ7GWF87P.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/71/2_4B4FRZW571NL9L38CEAPR9WQJ3MQ09.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/71/8_2LDCE0DJPLI4VK0S797VAKI0EQ22N1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/71/9_UC8BAJSVPI2B7NGN4CVMUMZ7GWF87P.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:71",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:71",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 13,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/71/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:06.219Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/71/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:70:ecb750",
                        "ysrc": "nccurer2:70:d0efc9",
                        "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": "nccurer2:70:64be46",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:70:653e1f",
                        "ysrc": "nccurer2:70:785004",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "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-18T07:45:38.215787Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nccurer2/69.embed",
            "fid": "nccurer2:69",
            "filename": "nangang_3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nccurer2/69/9_VTORIDGJSU77NF64YHJ4EBVMP6PREA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nccurer2/69/2_9PRRP6QHK48AC0QGYUN2UREGL0S7HG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/69/8_GB54Q5I5QIV9L1DX2L7KTJK18MC1QP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nccurer2/69/9_VTORIDGJSU77NF64YHJ4EBVMP6PREA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nccurer2:69",
                "plots": "https://api.plotly.com/v2/plots/nccurer2:69",
                "parent": "https://api.plotly.com/v2/folders/home?user=nccurer2"
            },
            "owner": "nccurer2",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~nccurer2/69/",
            "world_readable": true,
            "date_modified": "2024-04-22T03:36:02.822Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nccurer2/69/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "累計物件",
                        "type": "bar",
                        "xsrc": "nccurer2:68:9e711c",
                        "ysrc": "nccurer2:68:655afd",
                        "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": "nccurer2:68:53d6ae",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgb(213,69,83)",
                            "width": 3
                        },
                        "mode": "lines",
                        "name": "月租金中位數",
                        "type": "scatter",
                        "xsrc": "nccurer2:68:dcf6d4",
                        "ysrc": "nccurer2:68:8a5e87",
                        "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)"
                        },
                        "showlegend": false
                    }
                ],
                "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"
                        }
                    ],
                    "legend": {
                        "font": {
                            "size": 14
                        },
                        "title": {
                            "text": "<b>站名</b>"
                        }
                    },
                    "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"
                    },
                    "hovermode": "x",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~nccurer2",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-18 07:38:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nccurer2",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}