{"id":922777,"date":"2024-12-26T14:37:35","date_gmt":"2024-12-26T06:37:35","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/922777.html"},"modified":"2024-12-26T14:37:37","modified_gmt":"2024-12-26T06:37:37","slug":"python%e5%a6%82%e4%bd%95%e7%94%bb%e5%87%bd%e6%95%b0%e5%9b%be%e5%83%8f","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/922777.html","title":{"rendered":"python\u5982\u4f55\u753b\u51fd\u6570\u56fe\u50cf"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/24211112\/9b704881-d69d-42cd-a36a-4c81501d805d.webp\" alt=\"python\u5982\u4f55\u753b\u51fd\u6570\u56fe\u50cf\" \/><\/p>\n<p><p> <strong>\u8981\u5728Python\u4e2d\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\uff0c\u4e3b\u8981\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u6cd5\uff1a\u4f7f\u7528Matplotlib\u5e93\u3001\u4f7f\u7528Seaborn\u5e93\u3001\u4f7f\u7528Plotly\u5e93<\/strong>\u3002\u5176\u4e2d\uff0cMatplotlib\u662f\u6700\u5e38\u7528\u7684\u7ed8\u56fe\u5e93\uff0cSeaborn\u662f\u5728Matplotlib\u57fa\u7840\u4e0a\u7684\u9ad8\u7ea7\u63a5\u53e3\uff0cPlotly\u5219\u7528\u4e8e\u521b\u5efa\u4ea4\u4e92\u5f0f\u56fe\u8868\u3002\u4e0b\u9762\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528\u8fd9\u4e9b\u5e93\u6765\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\uff0c\u5e76\u63d0\u4f9b\u4e00\u4e9b\u4ee3\u7801\u793a\u4f8b\u548c\u6280\u5de7\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001MATPLOTLIB\u5e93<\/p>\n<\/p>\n<p><p>Matplotlib\u662fPython\u4e2d\u6700\u5e38\u7528\u7684\u7ed8\u56fe\u5e93\u4e4b\u4e00\uff0c\u9002\u7528\u4e8e\u7b80\u5355\u7684\u9759\u6001\u56fe\u8868\u7ed8\u5236\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Matplotlib<\/li>\n<\/ol>\n<p><p>\u5728\u4f7f\u7528Matplotlib\u4e4b\u524d\uff0c\u9700\u8981\u786e\u4fdd\u5df2\u5b89\u88c5\u8be5\u5e93\u3002\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u8fdb\u884c\u5b89\u88c5\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install matplotlib<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5b89\u88c5\u5b8c\u6210\u540e\uff0c\u53ef\u4ee5\u5728Python\u811a\u672c\u4e2d\u5bfc\u5165\u8be5\u5e93\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import matplotlib.pyplot as plt<\/p>\n<p>import numpy as np<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u7ed8\u5236\u7b80\u5355\u7684\u51fd\u6570\u56fe\u50cf<\/li>\n<\/ol>\n<p><p>\u63a5\u4e0b\u6765\uff0c\u6211\u4eec\u5c06\u4f7f\u7528Matplotlib\u7ed8\u5236\u4e00\u4e2a\u7b80\u5355\u7684y = sin(x)\u51fd\u6570\u56fe\u50cf\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u8bbe\u7f6ex\u7684\u53d6\u503c\u8303\u56f4<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<h2><strong>\u5b9a\u4e49y\u7684\u51fd\u6570<\/strong><\/h2>\n<p>y = np.sin(x)<\/p>\n<h2><strong>\u521b\u5efa\u56fe\u50cf<\/strong><\/h2>\n<p>plt.plot(x, y)<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>plt.title(&quot;Sine Function&quot;)<\/p>\n<p>plt.xlabel(&quot;x&quot;)<\/p>\n<p>plt.ylabel(&quot;sin(x)&quot;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u50cf<\/strong><\/h2>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528\u4e86<code>numpy<\/code>\u5e93\u6765\u751f\u6210x\u7684\u503c\uff0c\u5e76\u5b9a\u4e49\u4e86y = sin(x)\u51fd\u6570\u3002\u7136\u540e\u4f7f\u7528<code>plt.plot()<\/code>\u51fd\u6570\u7ed8\u5236\u56fe\u50cf\uff0c\u6700\u540e\u4f7f\u7528<code>plt.show()<\/code>\u663e\u793a\u56fe\u50cf\u3002<\/p>\n<\/p>\n<ol start=\"3\">\n<li>\u81ea\u5b9a\u4e49\u56fe\u50cf<\/li>\n<\/ol>\n<p><p>Matplotlib\u63d0\u4f9b\u4e86\u591a\u79cd\u81ea\u5b9a\u4e49\u56fe\u50cf\u7684\u65b9\u5f0f\uff0c\u53ef\u4ee5\u4fee\u6539\u56fe\u50cf\u7684\u6837\u5f0f\u3001\u989c\u8272\u3001\u7ebf\u578b\u7b49\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u7ed8\u5236\u56fe\u50cf\u65f6\u8bbe\u7f6e\u7ebf\u578b\u548c\u989c\u8272<\/p>\n<p>plt.plot(x, y, linestyle=&#39;--&#39;, color=&#39;r&#39;, label=&#39;sin(x)&#39;)<\/p>\n<h2><strong>\u6dfb\u52a0\u56fe\u4f8b<\/strong><\/h2>\n<p>plt.legend()<\/p>\n<h2><strong>\u81ea\u5b9a\u4e49\u5750\u6807\u8f74\u8303\u56f4<\/strong><\/h2>\n<p>plt.xlim(-10, 10)<\/p>\n<p>plt.ylim(-1.5, 1.5)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u901a\u8fc7\u8fd9\u4e9b\u53c2\u6570\uff0c\u53ef\u4ee5\u4f7f\u56fe\u50cf\u66f4\u5177\u53ef\u8bfb\u6027\u548c\u7f8e\u89c2\u3002<\/p>\n<\/p>\n<p><p>\u4e8c\u3001SEABORN\u5e93<\/p>\n<\/p>\n<p><p>Seaborn\u662f\u4e00\u4e2a\u57fa\u4e8eMatplotlib\u6784\u5efa\u7684Python\u53ef\u89c6\u5316\u5e93\uff0c\u63d0\u4f9b\u4e86\u66f4\u9ad8\u7ea7\u548c\u6613\u7528\u7684\u63a5\u53e3\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Seaborn<\/li>\n<\/ol>\n<p><p>\u9996\u5148\u9700\u8981\u5b89\u88c5Seaborn\u5e93\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install seaborn<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u7136\u540e\u5728Python\u811a\u672c\u4e2d\u5bfc\u5165\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import seaborn as sns<\/p>\n<p>import matplotlib.pyplot as plt<\/p>\n<p>import numpy as np<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u4f7f\u7528Seaborn\u7ed8\u5236\u51fd\u6570\u56fe\u50cf<\/li>\n<\/ol>\n<p><p>Seaborn\u66f4\u5e38\u7528\u4e8e\u7ed8\u5236\u7edf\u8ba1\u56fe\uff0c\u4f46\u4e5f\u53ef\u4ee5\u7528\u4e8e\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\u3002\u4ee5\u4e0b\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u8bbe\u7f6ex\u7684\u53d6\u503c\u8303\u56f4<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<h2><strong>\u5b9a\u4e49y\u7684\u51fd\u6570<\/strong><\/h2>\n<p>y = np.sin(x)<\/p>\n<h2><strong>\u4f7f\u7528Seaborn\u7ed8\u5236\u56fe\u50cf<\/strong><\/h2>\n<p>sns.lineplot(x=x, y=y)<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>plt.title(&quot;Sine Function with Seaborn&quot;)<\/p>\n<p>plt.xlabel(&quot;x&quot;)<\/p>\n<p>plt.ylabel(&quot;sin(x)&quot;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u50cf<\/strong><\/h2>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>Seaborn\u7684\u7ed8\u56fe\u4ee3\u7801\u901a\u5e38\u6bd4Matplotlib\u66f4\u7b80\u6d01\uff0c\u5e76\u4e14\u6709\u66f4\u597d\u7684\u9ed8\u8ba4\u6837\u5f0f\u3002<\/p>\n<\/p>\n<p><p>\u4e09\u3001PLOTLY\u5e93<\/p>\n<\/p>\n<p><p>Plotly\u662f\u4e00\u4e2a\u7528\u4e8e\u5236\u4f5c\u4ea4\u4e92\u5f0f\u56fe\u8868\u7684Python\u5e93\uff0c\u9002\u7528\u4e8e\u9700\u8981\u7528\u6237\u4ea4\u4e92\u7684\u573a\u5408\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Plotly<\/li>\n<\/ol>\n<p><p>Plotly\u9700\u8981\u5355\u72ec\u5b89\u88c5\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install plotly<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728Python\u811a\u672c\u4e2d\u5bfc\u5165\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import plotly.graph_objects as go<\/p>\n<p>import numpy as np<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u4f7f\u7528Plotly\u7ed8\u5236\u4ea4\u4e92\u5f0f\u51fd\u6570\u56fe\u50cf<\/li>\n<\/ol>\n<p><p>Plotly\u53ef\u4ee5\u521b\u5efa\u4ea4\u4e92\u5f0f\u56fe\u50cf\uff0c\u5982\u4e0b\u793a\u4f8b\u6240\u793a\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u8bbe\u7f6ex\u7684\u53d6\u503c\u8303\u56f4<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<p>y = np.sin(x)<\/p>\n<h2><strong>\u521b\u5efaPlotly\u56fe\u50cf<\/strong><\/h2>\n<p>fig = go.Figure()<\/p>\n<h2><strong>\u6dfb\u52a0\u6563\u70b9<\/strong><\/h2>\n<p>fig.add_trace(go.Scatter(x=x, y=y, mode=&#39;lines&#39;, name=&#39;sin(x)&#39;))<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>fig.update_layout(title=&#39;Sine Function with Plotly&#39;,<\/p>\n<p>                  xaxis_title=&#39;x&#39;,<\/p>\n<p>                  yaxis_title=&#39;sin(x)&#39;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u50cf<\/strong><\/h2>\n<p>fig.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4f7f\u7528Plotly\u53ef\u4ee5\u751f\u6210\u4e00\u4e2a\u53ef\u4ea4\u4e92\u7684\u56fe\u50cf\uff0c\u7528\u6237\u53ef\u4ee5\u5728\u56fe\u50cf\u4e2d\u8fdb\u884c\u7f29\u653e\u3001\u5e73\u79fb\u7b49\u64cd\u4f5c\u3002<\/p>\n<\/p>\n<p><p>\u56db\u3001\u66f4\u591a\u7ed8\u56fe\u6280\u5de7<\/p>\n<\/p>\n<ol>\n<li><strong>\u591a\u51fd\u6570\u7ed8\u5236<\/strong>\uff1a\u5728\u4e00\u4e2a\u56fe\u50cf\u4e2d\u7ed8\u5236\u591a\u4e2a\u51fd\u6570\u56fe\u50cf\uff0c\u53ef\u4ee5\u4f7f\u7528<code>plt.plot()<\/code>\u591a\u6b21\u8c03\u7528\uff0c\u6216\u5728Plotly\u4e2d\u4f7f\u7528<code>fig.add_trace()<\/code>\u591a\u6b21\u6dfb\u52a0\u3002<\/li>\n<\/ol>\n<p><pre><code class=\"language-python\"># \u4f8b\u5982\uff0c\u5728\u540c\u4e00\u56fe\u4e2d\u7ed8\u5236sin(x)\u548ccos(x)<\/p>\n<p>y2 = np.cos(x)<\/p>\n<p>plt.plot(x, y, label=&#39;sin(x)&#39;)<\/p>\n<p>plt.plot(x, y2, label=&#39;cos(x)&#39;)<\/p>\n<p>plt.legend()<\/p>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li><strong>\u5b50\u56fe\u7ed8\u5236<\/strong>\uff1a\u4f7f\u7528<code>plt.subplot()<\/code>\u5728\u540c\u4e00\u753b\u5e03\u4e0a\u7ed8\u5236\u591a\u4e2a\u5b50\u56fe\u3002<\/li>\n<\/ol>\n<p><pre><code class=\"language-python\">plt.subplot(2, 1, 1)<\/p>\n<p>plt.plot(x, y)<\/p>\n<p>plt.title(&#39;sin(x)&#39;)<\/p>\n<p>plt.subplot(2, 1, 2)<\/p>\n<p>plt.plot(x, y2)<\/p>\n<p>plt.title(&#39;cos(x)&#39;)<\/p>\n<p>plt.tight_layout()<\/p>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"3\">\n<li><strong>\u4fdd\u5b58\u56fe\u50cf<\/strong>\uff1a\u4f7f\u7528<code>plt.savefig()<\/code>\u5c06\u56fe\u50cf\u4fdd\u5b58\u4e3a\u6587\u4ef6\u3002<\/li>\n<\/ol>\n<p><pre><code class=\"language-python\">plt.plot(x, y)<\/p>\n<p>plt.savefig(&#39;sine_function.png&#39;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u901a\u8fc7\u4ee5\u4e0a\u7684\u4ecb\u7ecd\uff0c\u60a8\u53ef\u4ee5\u5728Python\u4e2d\u4f7f\u7528\u591a\u79cd\u65b9\u5f0f\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\uff0c\u6839\u636e\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u5e93\u548c\u65b9\u6cd5\uff0c\u4f7f\u60a8\u7684\u6570\u636e\u53ef\u89c6\u5316\u66f4\u5177\u8868\u73b0\u529b\u548c\u4e92\u52a8\u6027\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u5728Python\u4e2d\u7ed8\u5236\u591a\u79cd\u7c7b\u578b\u7684\u51fd\u6570\u56fe\u50cf\uff1f<\/strong><br \/>Python\u63d0\u4f9b\u4e86\u591a\u79cd\u5e93\u7528\u4e8e\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\uff0c\u6700\u5e38\u7528\u7684\u662fMatplotlib\u548cSeaborn\u3002\u7528\u6237\u53ef\u4ee5\u4f7f\u7528Matplotlib\u7684<code>plot()<\/code>\u51fd\u6570\u7ed8\u5236\u7b80\u5355\u7684\u4e8c\u7ef4\u56fe\u50cf\uff0c\u6216\u8005\u5229\u7528<code>subplot()<\/code>\u521b\u5efa\u591a\u4e2a\u5b50\u56fe\u3002\u6b64\u5916\uff0cSeaborn\u5219\u9002\u5408\u7ed8\u5236\u66f4\u590d\u6742\u7684\u7edf\u8ba1\u56fe\u3002\u901a\u8fc7\u8fd9\u4e9b\u5de5\u5177\uff0c\u7528\u6237\u53ef\u4ee5\u5b9e\u73b0\u7ebf\u6027\u3001\u975e\u7ebf\u6027\u51fd\u6570\u53ca\u5176\u7ec4\u5408\u7684\u53ef\u89c6\u5316\u3002<\/p>\n<p><strong>\u5728\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\u65f6\uff0c\u5982\u4f55\u81ea\u5b9a\u4e49\u56fe\u8868\u7684\u6837\u5f0f\u548c\u6807\u6ce8\uff1f<\/strong><br \/>\u7528\u6237\u53ef\u4ee5\u901a\u8fc7Matplotlib\u7684\u53c2\u6570\u6765\u8c03\u6574\u56fe\u8868\u7684\u6837\u5f0f\uff0c\u4f8b\u5982\u4f7f\u7528<code>plt.title()<\/code>\u6dfb\u52a0\u6807\u9898\uff0c<code>plt.xlabel()<\/code>\u548c<code>plt.ylabel()<\/code>\u8bbe\u7f6e\u8f74\u6807\u7b7e\u3002\u8272\u5f69\u3001\u7ebf\u578b\u548c\u6807\u8bb0\u6837\u5f0f\u4e5f\u53ef\u4ee5\u901a\u8fc7<code>plt.plot()<\/code>\u7684\u53c2\u6570\u8fdb\u884c\u8c03\u6574\uff0c\u4ece\u800c\u589e\u5f3a\u56fe\u8868\u7684\u53ef\u8bfb\u6027\u548c\u7f8e\u89c2\u6027\u3002\u6b64\u5916\uff0c\u7528\u6237\u53ef\u4ee5\u4f7f\u7528<code>plt.grid()<\/code>\u6dfb\u52a0\u7f51\u683c\u7ebf\uff0c\u4f7f\u6570\u636e\u70b9\u7684\u6bd4\u8f83\u66f4\u52a0\u76f4\u89c2\u3002<\/p>\n<p><strong>\u5982\u4f55\u5c06\u7ed8\u5236\u7684\u51fd\u6570\u56fe\u50cf\u4fdd\u5b58\u4e3a\u6587\u4ef6\u683c\u5f0f\uff1f<\/strong><br \/>\u5728Python\u4e2d\uff0c\u4f7f\u7528Matplotlib\u7ed8\u5236\u56fe\u50cf\u540e\uff0c\u53ef\u4ee5\u901a\u8fc7<code>plt.savefig()<\/code>\u65b9\u6cd5\u5c06\u56fe\u8868\u4fdd\u5b58\u4e3a\u591a\u79cd\u6587\u4ef6\u683c\u5f0f\uff0c\u5982PNG\u3001JPEG\u548cPDF\u3002\u7528\u6237\u53ef\u4ee5\u5728\u4fdd\u5b58\u65f6\u6307\u5b9a\u6587\u4ef6\u540d\u548c\u683c\u5f0f\uff0c\u540c\u65f6\u53ef\u4ee5\u8bbe\u7f6e\u5206\u8fa8\u7387\u53c2\u6570\u4ee5\u786e\u4fdd\u56fe\u50cf\u6e05\u6670\u3002\u6b64\u5916\uff0c\u7528\u6237\u8fd8\u53ef\u4ee5\u9009\u62e9\u4fdd\u5b58\u56fe\u50cf\u7684\u8def\u5f84\uff0c\u4fbf\u4e8e\u540e\u7eed\u67e5\u627e\u548c\u4f7f\u7528\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u8981\u5728Python\u4e2d\u7ed8\u5236\u51fd\u6570\u56fe\u50cf\uff0c\u4e3b\u8981\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u6cd5\uff1a\u4f7f\u7528Matplotlib\u5e93\u3001\u4f7f\u7528Seaborn\u5e93\u3001\u4f7f [&hellip;]","protected":false},"author":3,"featured_media":922778,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/922777"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=922777"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/922777\/revisions"}],"predecessor-version":[{"id":922779,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/922777\/revisions\/922779"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/922778"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=922777"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=922777"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=922777"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}