{"id":1139,"date":"2023-07-27T13:06:38","date_gmt":"2023-07-27T13:06:38","guid":{"rendered":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/"},"modified":"2023-07-27T13:06:38","modified_gmt":"2023-07-27T13:06:38","slug":"r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac","status":"publish","type":"post","link":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/","title":{"rendered":"\u5982\u4f55\u5728 r \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff1a\u793a\u4f8b"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u8981\u5728R\u4e2d\u9009\u62e9<a href=\"https:\/\/statorials.org\/cn\/\u62bd\u6837\u65b9\u6cd5\/\" target=\"_blank\" rel=\"noopener noreferrer\">\u968f\u673a\u6837\u672c<\/a>\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528<strong>sample()<\/strong>\u51fd\u6570\uff0c\u5b83\u4f7f\u7528\u4ee5\u4e0b\u8bed\u6cd5\uff1a<\/span><\/p>\n<p><strong><span style=\"color: #000000;\">\u6837\u672c\uff08x\uff0c\u5927\u5c0f\uff0c\u66ff\u6362=FALSE\uff0c\u6982\u7387=NULL\uff09<\/span><\/strong><\/p>\n<p><span style=\"color: #000000;\">\u91d1\u5b50\uff1a<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x\uff1a<\/strong>\u53ef\u4f9b\u9009\u62e9\u7684\u5143\u7d20\u5411\u91cf\u3002<\/span><\/li>\n<li><span style=\"color: #000000;\"><strong>\u5927\u5c0f\uff1a<\/strong>\u6837\u672c\u5927\u5c0f\u3002<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Replace\uff1a<\/strong>\u662f\u5426\u8fdb\u884c\u66ff\u6362\u91c7\u6837\u3002\u9ed8\u8ba4\u503c\u4e3a false\u3002<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>prob\uff1a<\/strong>\u4ece\u5411\u91cf\u4e2d\u83b7\u53d6\u5143\u7d20\u7684\u6982\u7387\u6743\u91cd\u5411\u91cf\u3002\u9ed8\u8ba4\u503c\u4e3a NULL\u3002<\/span><\/li>\n<\/ul>\n<p><span style=\"color: #000000;\">\u672c\u6559\u7a0b\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528\u6b64\u51fd\u6570\u5728 R \u4e2d\u4ece\u5411\u91cf\u548c\u6570\u636e\u6846\u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\u3002<\/span><\/p>\n<h3><span style=\"color: #000000;\"><strong>\u793a\u4f8b 1\uff1a\u5411\u91cf\u4e2d\u7684\u968f\u673a\u6837\u672c<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">\u4ee5\u4e0b\u4ee3\u7801\u6f14\u793a\u4e86\u5982\u4f55\u4ece\u5411\u91cf\u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c<strong>\u800c\u4e0d\u8fdb\u884c\u653e\u56de<\/strong>\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create vector of data<\/span>\ndata &lt;- c(1, 3, 5, 6, 7, 8, 10, 11, 12, 14)\n\n<span style=\"color: #008080;\">#select random sample of 5 elements without replacement\n<\/span>sample(x=data, size=5)\n\n[1] 10 12 5 14 7\n<\/strong><\/pre>\n<p><span style=\"color: #000000;\">\u4ee5\u4e0b\u4ee3\u7801\u663e\u793a\u4e86\u5982\u4f55\u4ece<strong>\u5e26\u6709\u66ff\u6362\u7684<\/strong>\u5411\u91cf\u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create vector of data<\/span>\ndata &lt;- c(1, 3, 5, 6, 7, 8, 10, 11, 12, 14)\n\n<span style=\"color: #008080;\">#select random sample of 5 elements with replacement\n<\/span>sample(x=data, size=5, replace= <span style=\"color: #008000;\">TRUE<\/span> )\n\n[1] 12 1 1 6 14<\/strong><\/pre>\n<h3><span style=\"color: #000000;\"><strong>\u793a\u4f8b 2\uff1a\u4ece\u6570\u636e\u5757\u4e2d\u968f\u673a\u91c7\u6837<\/strong><\/span><\/h3>\n<p><span style=\"color: #000000;\">\u4ee5\u4e0b\u4ee3\u7801\u5c55\u793a\u4e86\u5982\u4f55\u4ece\u6570\u636e\u6846\u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame<\/span>\ndf &lt;- data.frame(x=c(3, 5, 6, 6, 8, 12, 14),\n                 y=c(12, 6, 4, 23, 25, 8, 9),\n                 z=c(2, 7, 8, 8, 15, 17, 29))\n\n<span style=\"color: #008080;\">#view data frame \n<\/span>df\n\n   X Y Z\n1 3 12 2\n2 5 6 7\n3 6 4 8\n4 6 23 8\n5 8 25 15\n6 12 8 17\n7 14 9 29\n\n<span style=\"color: #008080;\">#select random sample of three rows from data frame<\/span>\nrand_df &lt;- df[ <span style=\"color: #3366ff;\">sample<\/span> ( <span style=\"color: #3366ff;\">nrow<\/span> (df), size= <span style=\"color: #993300;\">3<\/span> ), ]\n\n<span style=\"color: #008080;\">#display randomly selected rows\n<span style=\"color: #000000;\">rand_df\n\n   X Y Z\n4 6 23 8\n7 14 9 29\n1 3 12 2\n<\/span><\/span><\/strong><\/pre>\n<p><span style=\"color: #000000;\">\u8fd9\u662f\u8fd9\u6bb5\u4ee3\u7801\u4e2d\u53d1\u751f\u7684\u4e8b\u60c5\uff1a<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong>\u8981\u5728 R \u4e2d\u9009\u62e9\u6570\u636e\u6846\u7684\u5b50\u96c6\uff0c\u6211\u4eec\u4f7f\u7528\u4ee5\u4e0b\u8bed\u6cd5\uff1adf[rows, columns]<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u4ece\u6570\u636e\u6846\u4e2d\u968f\u673a\u9009\u62e93\u884c\u548c<em>\u6240\u6709<\/em>\u5217\u7684\u6837\u672c\u3002<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>3.<\/strong>\u6700\u7ec8\u7ed3\u679c\u662f\u6570\u636e\u6846\u7684\u5b50\u96c6\uff0c\u5176\u4e2d\u5305\u542b 3 \u4e2a\u968f\u673a\u9009\u62e9\u7684\u884c\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u9700\u8981\u6ce8\u610f\u7684\u662f\uff0c\u6bcf\u6b21\u6211\u4eec\u4f7f\u7528<strong>sample()<\/strong>\u51fd\u6570\u65f6\uff0cR\u90fd\u4f1a\u9009\u62e9\u4e0d\u540c\u7684\u6837\u672c\uff0c\u56e0\u4e3a\u8be5\u51fd\u6570\u968f\u673a\u9009\u62e9\u503c\u3002<\/span><\/p>\n<p><span style=\"color: #000000;\">\u4e3a\u4e86\u91cd\u73b0\u67d0\u4e9b\u5206\u6790\u7684\u7ed3\u679c\uff0c\u8bf7\u52a1\u5fc5\u4f7f\u7528<strong>set.seed(some number)<\/strong> \uff0c\u4ee5\u4fbf sample() \u51fd\u6570\u6bcf\u6b21\u9009\u62e9\u76f8\u540c\u7684\u968f\u673a\u6837\u672c\u3002\u4f8b\u5982\uff1a<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#make this example reproducible\n<span style=\"color: #000000;\">set.seed(23)<\/span>\n\n#create data frame<\/span>\ndf &lt;- data.frame(x=c(3, 5, 6, 6, 8, 12, 14),\n                 y=c(12, 6, 4, 23, 25, 8, 9),\n                 z=c(2, 7, 8, 8, 15, 17, 29))\n\n<span style=\"color: #008080;\">#select random sample of three rows from data frame<\/span>\nrand_df &lt;- df[ <span style=\"color: #3366ff;\">sample<\/span> ( <span style=\"color: #3366ff;\">nrow<\/span> (df), size= <span style=\"color: #993300;\">3<\/span> ), ]\n\n<span style=\"color: #008080;\">#display randomly selected rows\n<span style=\"color: #000000;\">rand_df\n\n   X Y Z\n5 8 25 15\n2 5 6 7\n6 12 8 17<\/span><\/span><\/strong><\/pre>\n<p><span style=\"color: #000000;\">\u6bcf\u6b21\u8fd0\u884c\u4e0a\u9762\u7684\u4ee3\u7801\u65f6\uff0c\u6bcf\u6b21\u90fd\u4f1a\u9009\u62e9\u6570\u636e\u6846\u4e2d\u76f8\u540c\u7684 3 \u884c\u3002<\/span><\/p>\n<h3><span style=\"color: #000000;\"><strong>\u5176\u4ed6\u8d44\u6e90<\/strong><\/span><\/h3>\n<p><a href=\"https:\/\/statorials.org\/cn\/\u5206\u5c42\u62bd\u6837-1\/\" target=\"_blank\" rel=\"noopener noreferrer\">R \u4e2d\u7684\u5206\u5c42\u62bd\u6837\uff08\u9644\u793a\u4f8b\uff09<\/a><br \/> <a href=\"https:\/\/statorials.org\/cn\/\u7cfb\u7edf\u62bd\u6837-1\/\" target=\"_blank\" rel=\"noopener noreferrer\">R \u4e2d\u7684\u7cfb\u7edf\u91c7\u6837\uff08\u9644\u793a\u4f8b\uff09<\/a><br \/> <a href=\"https:\/\/statorials.org\/cn\/\u6574\u7fa4\u62bd\u6837-1\/\" target=\"_blank\" rel=\"noopener noreferrer\">R \u4e2d\u7684\u805a\u7c7b\u91c7\u6837\uff1a\u793a\u4f8b<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u8981\u5728R\u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528sample()\u51fd\u6570\uff0c\u5b83\u4f7f\u7528\u4ee5\u4e0b\u8bed\u6cd5\uff1a \u6837\u672c\uff08x\uff0c\u5927\u5c0f\uff0c\u66ff\u6362=FALSE\uff0c\u6982 [&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-1139","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\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials<\/title>\n<meta name=\"description\" content=\"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\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\/r\u4e2d\u7684\u968f\u673a\u6837\u672c\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials\" \/>\n<meta property=\"og:description\" content=\"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/cn\/r\u4e2d\u7684\u968f\u673a\u6837\u672c\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T13:06:38+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\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/\",\"url\":\"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/\",\"name\":\"\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/cn\/#website\"},\"datePublished\":\"2023-07-27T13:06:38+00:00\",\"dateModified\":\"2023-07-27T13:06:38+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261\"},\"description\":\"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u5bb6\",\"item\":\"https:\/\/statorials.org\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5982\u4f55\u5728 r \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff1a\u793a\u4f8b\"}]},{\"@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\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials","description":"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\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\/r\u4e2d\u7684\u968f\u673a\u6837\u672c\/","og_locale":"zh_CN","og_type":"article","og_title":"\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials","og_description":"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\u3002","og_url":"https:\/\/statorials.org\/cn\/r\u4e2d\u7684\u968f\u673a\u6837\u672c\/","og_site_name":"Statorials","article_published_time":"2023-07-27T13:06:38+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","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/","url":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/","name":"\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff08\u9644\u793a\u4f8b\uff09-Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/cn\/#website"},"datePublished":"2023-07-27T13:06:38+00:00","dateModified":"2023-07-27T13:06:38+00:00","author":{"@id":"https:\/\/statorials.org\/cn\/#\/schema\/person\/124e4e5b7c9f8dc0f1f95cc8c1db3261"},"description":"\u672c\u6559\u7a0b\u901a\u8fc7\u51e0\u4e2a\u793a\u4f8b\u89e3\u91ca\u4e86\u5982\u4f55\u5728 R \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\u3002","breadcrumb":{"@id":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/cn\/r%e4%b8%ad%e7%9a%84%e9%9a%8f%e6%9c%ba%e6%a0%b7%e6%9c%ac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u5bb6","item":"https:\/\/statorials.org\/cn\/"},{"@type":"ListItem","position":2,"name":"\u5982\u4f55\u5728 r \u4e2d\u9009\u62e9\u968f\u673a\u6837\u672c\uff1a\u793a\u4f8b"}]},{"@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\/1139","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=1139"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/posts\/1139\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/media?parent=1139"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/categories?post=1139"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/cn\/wp-json\/wp\/v2\/tags?post=1139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}