{"id":2085,"date":"2023-07-23T18:40:34","date_gmt":"2023-07-23T18:40:34","guid":{"rendered":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/"},"modified":"2023-07-23T18:40:34","modified_gmt":"2023-07-23T18:40:34","slug":"python-%e4%b8%ad%e7%9a%84-cronbachs-alpha","status":"publish","type":"post","link":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/","title":{"rendered":"\u5982\u4f55\u7528 python \u8ba1\u7b97 cronbach&#39;s alpha"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>Chronbach&#8217;s Alpha<\/strong>\u662f\u4e00\u79cd\u8861\u91cf\u95ee\u5377\u6216\u8c03\u67e5<a href=\"https:\/\/statorials.org\/cn\/\u5185\u90e8\u8fde\u8d2f\u6027\/\" target=\"_blank\" rel=\"noopener\">\u5185\u90e8\u4e00\u81f4\u6027<\/a>\u7684\u65b9\u6cd5\u3002<\/span><\/p>\n<p> <span style=\"color: #000000;\">Cronbach&#8217;s alpha \u7684\u8303\u56f4\u4e3a 0 \u5230 1\uff0c\u503c\u8d8a\u9ad8\u8868\u660e\u8c03\u67e5\u6216\u95ee\u5377\u8d8a\u53ef\u9760\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u4ee5\u4e0b\u793a\u4f8b\u5c55\u793a\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#8217;s Alpha\u3002<\/span><\/p>\n<h3><span style=\"color: #000000;\"><strong>\u793a\u4f8b\uff1a\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#8217;s alpha<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">\u5047\u8bbe\u4e00\u5bb6\u9910\u5385\u7ecf\u7406\u60f3\u8981\u8861\u91cf\u603b\u4f53\u5ba2\u6237\u6ee1\u610f\u5ea6\uff0c\u56e0\u6b64\u5979\u5411 10 \u540d\u5ba2\u6237\u53d1\u9001\u4e86\u4e00\u4efd\u8c03\u67e5\u95ee\u5377\uff0c\u8fd9\u4e9b\u5ba2\u6237\u53ef\u4ee5\u9488\u5bf9\u4e0d\u540c\u7c7b\u522b\u6309\u7167 1 \u5230 3 \u7684\u7b49\u7ea7\u5bf9\u9910\u5385\u8fdb\u884c\u8bc4\u5206\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u4ee5\u4e0b pandas DataFrame \u663e\u793a\u4e86\u8c03\u67e5\u7ed3\u679c\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#enter survey responses as a DataFrame\n<\/span><\/span><\/span><span style=\"color: #000000;\">df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">Q1<\/span> ': [1, 2, 2, 3, 2, 2, 3, 3, 2, 3],\n                   ' <span style=\"color: #ff0000;\">Q2<\/span> ': [1, 1, 1, 2, 3, 3, 2, 3, 3, 3],\n                   ' <span style=\"color: #ff0000;\">Q3<\/span> ': [1, 1, 2, 1, 2, 3, 3, 3, 2, 3]})\n\n<\/span><span style=\"color: #008080;\">#view DataFrame\n<\/span><span style=\"color: #000000;\">df\n\n<\/span><span style=\"color: #000000;\">Q1 Q2 Q3\n0 1 1 1\n1 2 1 1\n2 2 1 2\n3 3 2 1\n4 2 3 2\n5 2 3 3\n6 3 2 3\n7 3 3 3\n8 2 3 2\n9 3 3 3<\/span><\/strong><\/span><\/pre>\n<p><span style=\"color: #000000;\">\u8981\u8ba1\u7b97\u8c03\u67e5\u54cd\u5e94\u7684 Cronbach&#8217;s Alpha\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528<strong>penguin<\/strong>\u5e93\u4e2d\u7684<strong>cronbach_alpha()<\/strong>\u51fd\u6570\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u9996\u5148\uff0c\u6211\u4eec\u5c06\u5b89\u88c5\u4f01\u9e45\u5e93\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #008000;\"><span style=\"color: #000000;\">pip<\/span> install <span style=\"color: #000000;\">penguin<\/span><\/span><\/span>\n<\/strong><\/span><\/pre>\n<p><span style=\"color: #000000;\">\u63a5\u4e0b\u6765\uff0c\u6211\u4eec\u5c06\u4f7f\u7528<strong>cronbach_alpha()<\/strong>\u51fd\u6570\u6765\u8ba1\u7b97 Cronbach \u7684 Alpha\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> penguin <span style=\"color: #008000;\">as<\/span> pg\n\npg. <span style=\"color: #3366ff;\">cronbach_alpha<\/span> (data=df)\n\n(0.7734375, array([0.336, 0.939]))<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Cronbach \u7684 Alpha \u503c\u4e3a<strong>0.773<\/strong> \u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u8fd8\u7ed9\u51fa\u4e86 Cronbach&#8217;s Alpha \u7684 95% \u7f6e\u4fe1\u533a\u95f4\uff1a <strong>[.336, .939]<\/strong> \u3002<\/span><\/p>\n<p><em><span style=\"color: #000000;\"><strong>\u6ce8\u610f\uff1a<\/strong>\u7531\u4e8e\u6211\u4eec\u7684\u6837\u672c\u91cf\u8f83\u5c0f\uff0c\u6b64\u7f6e\u4fe1\u533a\u95f4\u975e\u5e38\u5bbd\u3002\u5728\u5b9e\u8df5\u4e2d\uff0c\u5efa\u8bae\u4f7f\u7528\u81f3\u5c11 20 \u4e2a\u6837\u672c\u3002\u4e3a\u7b80\u5355\u8d77\u89c1\uff0c\u6211\u4eec\u5728\u6b64\u4f7f\u7528 10 \u4e2a\u6837\u672c\u3002<\/span><\/em><\/p>\n<p><span style=\"color: #000000;\">\u9ed8\u8ba4\u7f6e\u4fe1\u533a\u95f4\u4e3a 95%\uff0c\u4f46\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528<strong>\u4ee5\u4e0b<\/strong>\u53c2\u6570\u6307\u5b9a\u4e0d\u540c\u7684\u7f6e\u4fe1\u6c34\u5e73\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> penguin <span style=\"color: #008000;\">as<\/span> pg\n\n<span style=\"color: #008080;\">#calculate Cronbach's Alpha and corresponding 99% confidence interval\n<\/span>pg. <span style=\"color: #3366ff;\">cronbach_alpha<\/span> (data=df, ci= <span style=\"color: #008000;\">.99<\/span> )\n\n(0.7734375, array([0.062, 0.962]))<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Cronbach&#8217;s Alpha \u7684\u503c\u4fdd\u6301\u4e0d\u53d8\uff0c\u4f46\u7f6e\u4fe1\u533a\u95f4\u66f4\u5bbd\uff0c\u56e0\u4e3a\u6211\u4eec\u4f7f\u7528\u4e86\u66f4\u9ad8\u7684\u7f6e\u4fe1\u6c34\u5e73\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u4e0b\u8868\u63cf\u8ff0\u4e86\u4e00\u822c\u5982\u4f55\u89e3\u91ca Cronbach&#8217;s Alpha \u7684\u4e0d\u540c\u503c\uff1a<\/span><\/p>\n<table>\n<tbody>\n<tr>\n<th><strong><span style=\"color: #000000;\">\u514b\u6717\u5df4\u8d6b\u963f\u5c14\u6cd5<\/span><\/strong><\/th>\n<th><strong><span style=\"color: #000000;\">\u5185\u90e8\u4e00\u81f4\u6027<\/span><\/strong><\/th>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">0.9\u2264\u03b1<\/span><\/td>\n<td><span style=\"color: #000000;\">\u51fa\u8272\u7684<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">0.8\u2264\u03b1&lt;0.9<\/span><\/td>\n<td><span style=\"color: #000000;\">\u597d\u7684<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">0.7\u2264\u03b1&lt;0.8<\/span><\/td>\n<td><span style=\"color: #000000;\">\u53ef\u4ee5\u63a5\u53d7<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">0.6\u2264\u03b1&lt;0.7<\/span><\/td>\n<td><span style=\"color: #000000;\">\u53ef\u7591\u7684<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">0.5\u2264\u03b1&lt;0.6<\/span><\/td>\n<td><span style=\"color: #000000;\">\u8d2b\u7a77\u7684<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"color: #000000;\">\u03b1&lt;0.5<\/span><\/td>\n<td><span style=\"color: #000000;\">\u4e0d\u53ef\u63a5\u53d7<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"color: #000000;\">\u7531\u4e8e\u6211\u4eec\u8ba1\u7b97\u51fa\u7684 Cronbach&#8217;s alpha \u503c\u4e3a<strong>0.773<\/strong> \uff0c\u56e0\u6b64\u6211\u4eec\u53ef\u4ee5\u8bf4\u672c\u6b21\u8c03\u67e5\u7684\u5185\u90e8\u4e00\u81f4\u6027\u4e3a\u201c\u53ef\u63a5\u53d7\u201d\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\"><strong>\u5956\u52b1\uff1a<\/strong>\u968f\u610f\u4f7f\u7528\u8fd9\u4e2a Cronbach Alpha \u8ba1\u7b97\u5668\u6765\u67e5\u627e\u7ed9\u5b9a\u6570\u636e\u96c6\u7684 Cronbach Alpha\u3002<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Chronbach&#8217;s Alpha\u662f\u4e00\u79cd\u8861\u91cf\u95ee\u5377\u6216\u8c03\u67e5\u5185\u90e8\u4e00\u81f4\u6027\u7684\u65b9\u6cd5\u3002 Cronbach&#038;#82 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-2085","post","type-post","status-publish","format-standard","hentry","category-11"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#039;s Alpha - Statorials<\/title>\n<meta name=\"description\" content=\"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#039;s alpha\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/cn\/python-\u4e2d\u7684-cronbachs-alpha\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#039;s Alpha - Statorials\" \/>\n<meta property=\"og:description\" content=\"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#039;s alpha\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/cn\/python-\u4e2d\u7684-cronbachs-alpha\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T18:40:34+00:00\" \/>\n<meta name=\"author\" content=\"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/\",\"url\":\"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/\",\"name\":\"\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#39;s Alpha - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/cn\/#website\"},\"datePublished\":\"2023-07-23T18:40:34+00:00\",\"dateModified\":\"2023-07-23T18:40:34+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261\"},\"description\":\"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#39;s alpha\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u5bb6\",\"item\":\"https:\/\/statorials.org\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5982\u4f55\u7528 python \u8ba1\u7b97 cronbach&#39;s alpha\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/cn\/#website\",\"url\":\"https:\/\/statorials.org\/cn\/\",\"name\":\"Statorials\",\"description\":\"\u60a8\u7684\u7edf\u8ba1\u7d20\u517b\u6307\u5357\uff01\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/cn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261\",\"name\":\"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/statorials.org\/cn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/cn\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/cn\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a\"},\"description\":\"\u5927\u5bb6\u597d\uff0c\u6211\u662f\u672c\u6770\u660e\uff0c\u4e00\u4f4d\u9000\u4f11\u7684\u7edf\u8ba1\u5b66\u6559\u6388\uff0c\u540e\u6765\u6210\u4e3a Statorials \u7684\u70ed\u5fc3\u6559\u5e08\u3002 \u51ed\u501f\u5728\u7edf\u8ba1\u9886\u57df\u7684\u4e30\u5bcc\u7ecf\u9a8c\u548c\u4e13\u4e1a\u77e5\u8bc6\uff0c\u6211\u6e34\u671b\u5206\u4eab\u6211\u7684\u77e5\u8bc6\uff0c\u901a\u8fc7 Statorials \u589e\u5f3a\u5b66\u751f\u7684\u80fd\u529b\u3002\u4e86\u89e3\u66f4\u591a\",\"sameAs\":[\"https:\/\/statorials.org\/cn\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#39;s Alpha - Statorials","description":"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#39;s alpha\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/cn\/python-\u4e2d\u7684-cronbachs-alpha\/","og_locale":"zh_CN","og_type":"article","og_title":"\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#39;s Alpha - Statorials","og_description":"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#39;s alpha\u3002","og_url":"https:\/\/statorials.org\/cn\/python-\u4e2d\u7684-cronbachs-alpha\/","og_site_name":"Statorials","article_published_time":"2023-07-23T18:40:34+00:00","author":"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/","url":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/","name":"\u5982\u4f55\u7528 Python \u8ba1\u7b97 Cronbach&#39;s Alpha - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/cn\/#website"},"datePublished":"2023-07-23T18:40:34+00:00","dateModified":"2023-07-23T18:40:34+00:00","author":{"@id":"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261"},"description":"\u672c\u6559\u7a0b\u901a\u8fc7\u4e00\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 Python \u4e2d\u8ba1\u7b97 Cronbach&#39;s alpha\u3002","breadcrumb":{"@id":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/cn\/python-%e4%b8%ad%e7%9a%84-cronbachs-alpha\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u5bb6","item":"https:\/\/statorials.org\/cn\/"},{"@type":"ListItem","position":2,"name":"\u5982\u4f55\u7528 python \u8ba1\u7b97 cronbach&#39;s alpha"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/cn\/#website","url":"https:\/\/statorials.org\/cn\/","name":"Statorials","description":"\u60a8\u7684\u7edf\u8ba1\u7d20\u517b\u6307\u5357\uff01","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/cn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261","name":"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/statorials.org\/cn\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/cn\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/cn\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"\u672c\u6770\u660e\u00b7\u5b89\u5fb7\u68ee\u535a"},"description":"\u5927\u5bb6\u597d\uff0c\u6211\u662f\u672c\u6770\u660e\uff0c\u4e00\u4f4d\u9000\u4f11\u7684\u7edf\u8ba1\u5b66\u6559\u6388\uff0c\u540e\u6765\u6210\u4e3a Statorials \u7684\u70ed\u5fc3\u6559\u5e08\u3002 \u51ed\u501f\u5728\u7edf\u8ba1\u9886\u57df\u7684\u4e30\u5bcc\u7ecf\u9a8c\u548c\u4e13\u4e1a\u77e5\u8bc6\uff0c\u6211\u6e34\u671b\u5206\u4eab\u6211\u7684\u77e5\u8bc6\uff0c\u901a\u8fc7 Statorials \u589e\u5f3a\u5b66\u751f\u7684\u80fd\u529b\u3002\u4e86\u89e3\u66f4\u591a","sameAs":["https:\/\/statorials.org\/cn"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/posts\/2085","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/comments?post=2085"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/posts\/2085\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/media?parent=2085"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/categories?post=2085"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/tags?post=2085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}