{"id":995281,"date":"2024-12-27T09:03:32","date_gmt":"2024-12-27T01:03:32","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/995281.html"},"modified":"2024-12-27T09:03:35","modified_gmt":"2024-12-27T01:03:35","slug":"python-%e5%a6%82%e4%bd%95%e7%94%bb%e5%87%bd%e6%95%b0%e6%9b%b2%e7%ba%bf","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/995281.html","title":{"rendered":"python \u5982\u4f55\u753b\u51fd\u6570\u66f2\u7ebf"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25071941\/afad6c29-5a53-4084-8a4c-7960c1f1221c.webp\" alt=\"python \u5982\u4f55\u753b\u51fd\u6570\u66f2\u7ebf\" \/><\/p>\n<p><p> <strong>\u4f7f\u7528Python\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\u53ef\u4ee5\u901a\u8fc7\u591a\u79cd\u65b9\u6cd5\u5b9e\u73b0\uff0c\u5e38\u7528\u7684\u5de5\u5177\u5305\u62ecMatplotlib\u3001Seaborn\u548cPlotly\u3002Matplotlib\u662f\u6700\u57fa\u7840\u4e14\u5e7f\u6cdb\u4f7f\u7528\u7684\u5e93\uff0cSeaborn\u5219\u5728Matplotlib\u4e4b\u4e0a\u8fdb\u884c\u4e86\u66f4\u9ad8\u7ea7\u7684\u5c01\u88c5\uff0c\u800cPlotly\u63d0\u4f9b\u4e86\u4ea4\u4e92\u6027\u66f4\u5f3a\u7684\u7ed8\u56fe\u529f\u80fd\u3002\u672c\u6587\u4e3b\u8981\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528Matplotlib\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\u3001\u8bbe\u7f6e\u56fe\u5f62\u6837\u5f0f\u548c\u5b9e\u73b0\u4ea4\u4e92\u529f\u80fd\u3002<\/strong><\/p>\n<\/p>\n<p><p>\u4e00\u3001MATPLOTLIB\u57fa\u7840\u7ed8\u56fe<\/p>\n<\/p>\n<p><p>Matplotlib\u662fPython\u4e2d\u6700\u6d41\u884c\u7684\u7ed8\u56fe\u5e93\u4e4b\u4e00\u3002\u5b83\u63d0\u4f9b\u4e86\u4e00\u4e2a\u7c7b\u4f3c\u4e8eMATLAB\u7684\u7ed8\u56fe\u63a5\u53e3\uff0c\u9002\u5408\u4e8e\u5feb\u901f\u751f\u6210\u7b80\u5355\u7684\u56fe\u8868\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Matplotlib<\/li>\n<\/ol>\n<p><p>\u5728\u5f00\u59cb\u4f7f\u7528Matplotlib\u4e4b\u524d\uff0c\u9700\u8981\u5148\u8fdb\u884c\u5b89\u88c5\u3002\u53ef\u4ee5\u4f7f\u7528pip\u547d\u4ee4\u6765\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\u5728Python\u811a\u672c\u4e2d\u5bfc\u5165\u6240\u9700\u7684\u6a21\u5757\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\u51fd\u6570\u66f2\u7ebf<\/li>\n<\/ol>\n<p><p>\u5047\u8bbe\u6211\u4eec\u60f3\u7ed8\u5236\u4e00\u4e2a\u7b80\u5355\u7684\u4e8c\u6b21\u51fd\u6570y = x^2\u7684\u66f2\u7ebf\u3002\u53ef\u4ee5\u6309\u7167\u4ee5\u4e0b\u6b65\u9aa4\u8fdb\u884c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5b9a\u4e49\u6570\u636e\u8303\u56f4<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<p>y = x2<\/p>\n<h2><strong>\u7ed8\u5236\u66f2\u7ebf<\/strong><\/h2>\n<p>plt.plot(x, y, label=&#39;y = x^2&#39;)<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>plt.title(&#39;Quadratic Function&#39;)<\/p>\n<p>plt.xlabel(&#39;x&#39;)<\/p>\n<p>plt.ylabel(&#39;y&#39;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u4f8b<\/strong><\/h2>\n<p>plt.legend()<\/p>\n<h2><strong>\u663e\u793a\u56fe\u5f62<\/strong><\/h2>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"3\">\n<li>\u81ea\u5b9a\u4e49\u56fe\u5f62\u6837\u5f0f<\/li>\n<\/ol>\n<p><p>Matplotlib\u5141\u8bb8\u7528\u6237\u81ea\u5b9a\u4e49\u56fe\u5f62\u7684\u5404\u4e2a\u65b9\u9762\uff0c\u4f8b\u5982\u989c\u8272\u3001\u7ebf\u578b\u3001\u6807\u8bb0\u7b49\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">plt.plot(x, y, color=&#39;red&#39;, linestyle=&#39;--&#39;, marker=&#39;o&#39;, label=&#39;y = x^2&#39;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff0c\u6211\u4eec\u5c06\u7ebf\u7684\u989c\u8272\u8bbe\u7f6e\u4e3a\u7ea2\u8272\uff0c\u7ebf\u578b\u8bbe\u7f6e\u4e3a\u865a\u7ebf\uff0c\u5e76\u5728\u6bcf\u4e2a\u6570\u636e\u70b9\u4e0a\u6dfb\u52a0\u5706\u5f62\u6807\u8bb0\u3002<\/p>\n<\/p>\n<p><p>\u4e8c\u3001SEABORN\u589e\u5f3a\u7ed8\u56fe<\/p>\n<\/p>\n<p><p>Seaborn\u662f\u57fa\u4e8eMatplotlib\u7684\u9ad8\u7ea7\u7ed8\u56fe\u5e93\uff0c\u9002\u5408\u4e8e\u7edf\u8ba1\u56fe\u5f62\u7684\u7ed8\u5236\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Seaborn<\/li>\n<\/ol>\n<p><pre><code class=\"language-bash\">pip install seaborn<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u7136\u540e\u5728\u811a\u672c\u4e2d\u5bfc\u5165\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import seaborn as sns<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u4f7f\u7528Seaborn\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf<\/li>\n<\/ol>\n<p><p>Seaborn\u9002\u5408\u4e8e\u6570\u636e\u5206\u6790\u548c\u7edf\u8ba1\u56fe\u5f62\u7684\u7ed8\u5236\u3002\u867d\u7136Seaborn\u4e3b\u8981\u7528\u4e8e\u7ed8\u5236\u6570\u636e\u96c6\u7684\u7edf\u8ba1\u4fe1\u606f\uff0c\u4f46\u5b83\u4e5f\u53ef\u4ee5\u7528\u6765\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u4ecd\u7136\u4f7f\u7528Matplotlib\u751f\u6210\u6570\u636e<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<p>y = x2<\/p>\n<h2><strong>\u4f7f\u7528Seaborn\u7684\u98ce\u683c<\/strong><\/h2>\n<p>sns.set(style=&quot;whitegrid&quot;)<\/p>\n<h2><strong>\u7ed8\u5236\u66f2\u7ebf<\/strong><\/h2>\n<p>plt.plot(x, y, label=&#39;y = x^2&#39;)<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>plt.title(&#39;Quadratic Function with Seaborn&#39;)<\/p>\n<p>plt.xlabel(&#39;x&#39;)<\/p>\n<p>plt.ylabel(&#39;y&#39;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u4f8b<\/strong><\/h2>\n<p>plt.legend()<\/p>\n<h2><strong>\u663e\u793a\u56fe\u5f62<\/strong><\/h2>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4e09\u3001PLOTLY\u5b9e\u73b0\u4ea4\u4e92\u5f0f\u7ed8\u56fe<\/p>\n<\/p>\n<p><p>Plotly\u662f\u4e00\u4e2a\u529f\u80fd\u5f3a\u5927\u7684\u4ea4\u4e92\u5f0f\u7ed8\u56fe\u5e93\u3002\u5b83\u53ef\u4ee5\u751f\u6210\u4ea4\u4e92\u6027\u5f88\u5f3a\u7684\u56fe\u8868\uff0c\u9002\u5408\u4e8eWeb\u5e94\u7528\u7a0b\u5e8f\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5\u548c\u5bfc\u5165Plotly<\/li>\n<\/ol>\n<p><pre><code class=\"language-bash\">pip install plotly<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u7136\u540e\u5728\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><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u4f7f\u7528Plotly\u7ed8\u5236\u4ea4\u4e92\u5f0f\u51fd\u6570\u66f2\u7ebf<\/li>\n<\/ol>\n<p><p>Plotly\u63d0\u4f9b\u4e86\u4e00\u79cd\u7b80\u5355\u7684\u65b9\u6cd5\u6765\u521b\u5efa\u4ea4\u4e92\u5f0f\u56fe\u5f62\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5b9a\u4e49\u6570\u636e<\/p>\n<p>x = np.linspace(-10, 10, 100)<\/p>\n<p>y = x2<\/p>\n<h2><strong>\u521b\u5efa\u7ed8\u56fe\u5bf9\u8c61<\/strong><\/h2>\n<p>fig = go.Figure()<\/p>\n<h2><strong>\u6dfb\u52a0\u66f2\u7ebf<\/strong><\/h2>\n<p>fig.add_trace(go.Scatter(x=x, y=y, mode=&#39;lines+markers&#39;, name=&#39;y = x^2&#39;))<\/p>\n<h2><strong>\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e<\/strong><\/h2>\n<p>fig.update_layout(title=&#39;Quadratic Function with Plotly&#39;,<\/p>\n<p>                  xaxis_title=&#39;x&#39;,<\/p>\n<p>                  yaxis_title=&#39;y&#39;)<\/p>\n<h2><strong>\u663e\u793a\u56fe\u5f62<\/strong><\/h2>\n<p>fig.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u56db\u3001\u7efc\u5408\u5e94\u7528\u4e0e\u6280\u5de7<\/p>\n<\/p>\n<ol>\n<li>\u591a\u51fd\u6570\u7ed8\u5236<\/li>\n<\/ol>\n<p><p>\u6709\u65f6\u9700\u8981\u5728\u540c\u4e00\u5f20\u56fe\u4e0a\u7ed8\u5236\u591a\u4e2a\u51fd\u6570\u3002\u53ef\u4ee5\u901a\u8fc7\u591a\u6b21\u8c03\u7528<code>plt.plot()<\/code>\u6765\u5b9e\u73b0\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">y2 = x3<\/p>\n<p>plt.plot(x, y, label=&#39;y = x^2&#39;)<\/p>\n<p>plt.plot(x, y2, label=&#39;y = x^3&#39;)<\/p>\n<p>plt.legend()<\/p>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u5b50\u56fe\u7ed8\u5236<\/li>\n<\/ol>\n<p><p>Matplotlib\u5141\u8bb8\u5728\u540c\u4e00\u7a97\u53e3\u4e2d\u7ed8\u5236\u591a\u4e2a\u5b50\u56fe\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">fig, axs = plt.subplots(2)<\/p>\n<p>axs[0].plot(x, y, label=&#39;y = x^2&#39;)<\/p>\n<p>axs[0].set_title(&#39;Quadratic Function&#39;)<\/p>\n<p>axs[1].plot(x, y2, label=&#39;y = x^3&#39;)<\/p>\n<p>axs[1].set_title(&#39;Cubic Function&#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>\u52a8\u6001\u66f4\u65b0\u56fe\u5f62<\/li>\n<\/ol>\n<p><p>\u5728\u6570\u636e\u5206\u6790\u8fc7\u7a0b\u4e2d\uff0c\u53ef\u80fd\u9700\u8981\u52a8\u6001\u66f4\u65b0\u56fe\u5f62\u3002\u53ef\u4ee5\u5229\u7528Matplotlib\u7684<code>FuncAnimation<\/code>\u6a21\u5757\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from matplotlib.animation import FuncAnimation<\/p>\n<p>fig, ax = plt.subplots()<\/p>\n<p>line, = ax.plot(x, y)<\/p>\n<p>def update(frame):<\/p>\n<p>    line.set_ydata(np.sin(x + frame))<\/p>\n<p>    return line,<\/p>\n<p>ani = FuncAnimation(fig, update, frames=np.linspace(0, 2*np.pi, 128), blit=True)<\/p>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4e94\u3001\u603b\u7ed3\u4e0e\u5efa\u8bae<\/p>\n<\/p>\n<p><p>\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\u662f\u6570\u636e\u5206\u6790\u548c\u79d1\u5b66\u8ba1\u7b97\u4e2d\u975e\u5e38\u57fa\u7840\u7684\u64cd\u4f5c\u3002<strong>\u9009\u62e9\u5408\u9002\u7684\u5de5\u5177\u548c\u65b9\u6cd5\u53ef\u4ee5\u5927\u5927\u63d0\u9ad8\u5de5\u4f5c\u6548\u7387\u3002<\/strong>\u5bf9\u4e8e\u7b80\u5355\u7684\u9759\u6001\u56fe\u8868\uff0cMatplotlib\u8db3\u4ee5\u80dc\u4efb\uff1b\u5982\u679c\u9700\u8981\u66f4\u9ad8\u7ea7\u7684\u7edf\u8ba1\u56fe\u5f62\uff0c\u53ef\u4ee5\u8003\u8651\u4f7f\u7528Seaborn\uff1b\u800c\u5bf9\u4e8e\u4ea4\u4e92\u5f0f\u56fe\u5f62\uff0cPlotly\u662f\u4e00\u4e2a\u5f3a\u6709\u529b\u7684\u9009\u62e9\u3002\u65e0\u8bba\u4f7f\u7528\u54ea\u79cd\u5de5\u5177\uff0c\u90fd\u5e94\u8be5\u5145\u5206\u5229\u7528\u5176\u6587\u6863\u548c\u793e\u533a\u8d44\u6e90\uff0c\u4ee5\u89e3\u51b3\u5728\u4f7f\u7528\u8fc7\u7a0b\u4e2d\u9047\u5230\u7684\u95ee\u9898\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u4f7f\u7528Python\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\uff1f<\/strong><br \/>Python\u63d0\u4f9b\u4e86\u591a\u79cd\u5e93\u6765\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\uff0c\u5176\u4e2d\u6700\u5e38\u7528\u7684\u662fMatplotlib\u3002\u901a\u8fc7\u5b89\u88c5Matplotlib\u5e93\uff0c\u7528\u6237\u53ef\u4ee5\u8f7b\u677e\u5730\u751f\u62102D\u56fe\u5f62\u3002\u4f7f\u7528numpy\u5e93\u53ef\u4ee5\u65b9\u4fbf\u5730\u5904\u7406\u6570\u636e\uff0c\u751f\u6210\u81ea\u53d8\u91cf\u7684\u503c\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">import numpy as np\nimport matplotlib.pyplot as plt\n\n# \u5b9a\u4e49\u81ea\u53d8\u91cf\nx = np.linspace(-10, 10, 400)\n# \u5b9a\u4e49\u51fd\u6570\ny = np.sin(x)\n\n# \u7ed8\u5236\u66f2\u7ebf\nplt.plot(x, y)\nplt.title(&#39;Sine Function&#39;)\nplt.xlabel(&#39;x values&#39;)\nplt.ylabel(&#39;y values&#39;)\nplt.grid()\nplt.show()\n<\/code><\/pre>\n<p><strong>\u6211\u53ef\u4ee5\u7ed8\u5236\u591a\u6761\u51fd\u6570\u66f2\u7ebf\u5417\uff1f<\/strong><br \/>\u5f53\u7136\u53ef\u4ee5\u3002\u5728Matplotlib\u4e2d\uff0c\u53ef\u4ee5\u901a\u8fc7\u591a\u6b21\u8c03\u7528<code>plt.plot()<\/code>\u51fd\u6570\u6765\u7ed8\u5236\u591a\u6761\u66f2\u7ebf\u3002\u4f8b\u5982\uff0c\u53ef\u4ee5\u540c\u65f6\u7ed8\u5236\u6b63\u5f26\u548c\u4f59\u5f26\u51fd\u6570\u7684\u66f2\u7ebf\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a  <\/p>\n<pre><code class=\"language-python\">y2 = np.cos(x)\nplt.plot(x, y, label=&#39;Sine&#39;)\nplt.plot(x, y2, label=&#39;Cosine&#39;)\nplt.title(&#39;Sine and Cosine Functions&#39;)\nplt.xlabel(&#39;x values&#39;)\nplt.ylabel(&#39;y values&#39;)\nplt.legend()\nplt.grid()\nplt.show()\n<\/code><\/pre>\n<p>\u8fd9\u6837\uff0c\u56fe\u4f8b\u53ef\u4ee5\u5e2e\u52a9\u533a\u5206\u4e0d\u540c\u7684\u66f2\u7ebf\u3002<\/p>\n<p><strong>\u5982\u4f55\u5728\u66f2\u7ebf\u56fe\u4e2d\u6dfb\u52a0\u6807\u9898\u548c\u6807\u7b7e\uff1f<\/strong><br \/>\u5728Matplotlib\u4e2d\uff0c\u6dfb\u52a0\u6807\u9898\u548c\u5750\u6807\u8f74\u6807\u7b7e\u975e\u5e38\u7b80\u5355\u3002\u4f7f\u7528<code>plt.title()<\/code>\u3001<code>plt.xlabel()<\/code>\u548c<code>plt.ylabel()<\/code>\u51fd\u6570\u53ef\u4ee5\u5b9e\u73b0\u3002\u4ee5\u4e0a\u793a\u4f8b\u4ee3\u7801\u5df2\u7ecf\u5c55\u793a\u4e86\u5982\u4f55\u6dfb\u52a0\u8fd9\u4e9b\u5143\u7d20\u3002\u786e\u4fdd\u4f7f\u7528\u9002\u5f53\u7684\u6587\u5b57\uff0c\u4ee5\u4fbf\u89c2\u4f17\u80fd\u591f\u5feb\u901f\u7406\u89e3\u56fe\u8868\u7684\u5185\u5bb9\u548c\u76ee\u7684\u3002\u901a\u8fc7\u8fd9\u79cd\u65b9\u5f0f\uff0c\u4e0d\u4ec5\u80fd\u7f8e\u5316\u56fe\u8868\uff0c\u8fd8\u80fd\u63d0\u9ad8\u56fe\u8868\u7684\u53ef\u8bfb\u6027\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u4f7f\u7528Python\u7ed8\u5236\u51fd\u6570\u66f2\u7ebf\u53ef\u4ee5\u901a\u8fc7\u591a\u79cd\u65b9\u6cd5\u5b9e\u73b0\uff0c\u5e38\u7528\u7684\u5de5\u5177\u5305\u62ecMatplotlib\u3001Seaborn\u548cPlot [&hellip;]","protected":false},"author":3,"featured_media":995285,"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\/995281"}],"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=995281"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/995281\/revisions"}],"predecessor-version":[{"id":995287,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/995281\/revisions\/995287"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/995285"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=995281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=995281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=995281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}